From a9bc7d2265be7ad1e249382e5859818328190e84 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 17 Nov 2022 13:57:06 +0200 Subject: [PATCH 001/331] first prototype for communities datatable --- Dockerfile | 1 + app/main.py | 80 ++++++++- app/models.py | 74 -------- app/models/community_info_model.py | 26 +++ app/models/community_model.py | 24 +++ app/models/member_model.py | 26 +++ app/models/models_old.py | 98 ++++++++++ docker-compose.yml | 1 + javascript/app/public/index.html | 23 +++ javascript/package.json | 9 + javascript/public/index.html | 24 +++ javascript/src/Pages/Login/index.js | 6 +- .../src/Pages/Metrics/communitiesChart.js | 68 +++++++ .../src/Pages/Metrics/communitiesDataTable.js | 47 +++++ javascript/src/app.css | 4 +- javascript/src/components/datatable.js | 168 ++++++++++++++++++ javascript/src/index.js | 28 +-- javascript/src/utils/queries/index.js | 11 ++ javascript/src/utils/queryKeys/index.js | 1 + requirements.txt | 2 +- 20 files changed, 626 insertions(+), 95 deletions(-) delete mode 100644 app/models.py create mode 100644 app/models/community_info_model.py create mode 100644 app/models/community_model.py create mode 100644 app/models/member_model.py create mode 100644 app/models/models_old.py create mode 100644 javascript/app/public/index.html create mode 100644 javascript/public/index.html create mode 100644 javascript/src/Pages/Metrics/communitiesChart.js create mode 100644 javascript/src/Pages/Metrics/communitiesDataTable.js create mode 100644 javascript/src/components/datatable.js diff --git a/Dockerfile b/Dockerfile index 4831740..4e53163 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,7 @@ ENV ENVIRONMENT dev ENV TESTING 0 #COPY requirements* $APP_HOME +RUN echo "fs.inotify.max_user_watches=524288" >> /etc/sysctl.conf USER app:app diff --git a/app/main.py b/app/main.py index a0ee93d..e2ec87a 100644 --- a/app/main.py +++ b/app/main.py @@ -1,13 +1,20 @@ -from typing import List, Optional +from typing import List, Optional, Union from fastapi import Depends, FastAPI, HTTPException, Query from fastapi.middleware.cors import CORSMiddleware from sqlmodel import Field, Session, SQLModel, create_engine, select +from sqlalchemy import func +from sqlalchemy.orm import selectinload from app.database import get_session -from app.models import * +from app.models.community_info_model import * +from app.models.community_model import * +from app.models.member_model import * -app = FastAPI() +app = FastAPI(debug=True) + +MembersReadWithCommunityInfo.update_forward_refs(Community_InfoRead=Community_InfoRead) +CommunityReadwithInfo.update_forward_refs(Community_InfoRead=Community_InfoRead) origins = ["*"] app.add_middleware( @@ -22,3 +29,70 @@ @app.get("/ping") def pong(): return {"ping": "pong!"} + +@app.get("/communities/", response_model=List[CommunityReadwithInfo]) +def read_communities( + *, + session: Session = Depends(get_session), + offset: int = 0 + ): + + communities = session.exec(select(Community).offset(offset)).all() + return communities + +@app.get("/communities_groupby/{group_by}") +def read_communities( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + interval: Union[str, None] = None, + count_interval: int = None + ): + interval_subquery="" + if group_by: + if interval and count_interval: + interval_subquery = """WHERE created > + date_trunc('month', CURRENT_DATE) - INTERVAL '{0} {1}'""".format(count_interval, interval) + + communities = session.exec(""" + select count(*) as count, date_trunc( '{0}', created ) as range_date, + min(created) as min_date , string_agg(name,'|| ') as names, + string_agg(to_char(created, 'YYYY-MM-DD'),', ') as created_date, + string_agg(description,'|| ') as description + from community + join community_info on community.community_id=community_info.id + {1} + group by range_date + ORDER BY range_date ASC + """.format(group_by, interval_subquery)).all() + return communities + +@app.get("/communities/{community_id}", response_model=CommunityReadwithInfo) +def read_community(*, session: Session = Depends(get_session), community_id: int): + community = session.get(Community, community_id) + #statement = select(Community).options(selectinload(Community.community_info)) + #result = session.exec(statement) + #community = result.one() + if not community: + raise HTTPException(status_code=404, detail="Community not found") + return community + +@app.get("/communities_info/", response_model=List[Community_InfoRead]) +def read_communities_info( + *, + session: Session = Depends(get_session), + offset: int = 0 + ): + communities = session.exec(select(Community_Info).offset(offset)).all() + return communities + +@app.get("/members/", response_model=List[MembersReadWithCommunityInfo]) +def read_members( + *, + session: Session = Depends(get_session), + offset: int = 0 + ): + members = session.exec(select(Members).offset(offset)).all() + return members + diff --git a/app/models.py b/app/models.py deleted file mode 100644 index 14d9973..0000000 --- a/app/models.py +++ /dev/null @@ -1,74 +0,0 @@ -from typing import List, Optional -from sqlmodel import Field, Relationship, Session, SQLModel -from sqlalchemy import UniqueConstraint -from datetime import datetime - - -# User -class UserBase(SQLModel): - first_name: str - last_name: str - email: str = Field(index=True) - password: str - - -class User(UserBase, table=True): - __table_args__ = (UniqueConstraint("email"),) - id: Optional[int] = Field(default=None, primary_key=True) - - -class UserCreate(UserBase): - pass - - -class UserRead(UserBase): - id: int - - -class UserUpdate(SQLModel): - first_name: Optional[str] = None - last_name: Optional[str] = None - email: Optional[str] = None - password: Optional[str] = None - - -class UserLogin(SQLModel): - email: str - password: str - - -class UserLoginResponse(SQLModel): - id: int - email: str - first_name: str - last_name: str - - -# Communities -class CommunityBase(SQLModel): - name: str - description: str - created_at: datetime = Field(default_factory=datetime.utcnow, nullable=False) - modified_at: Optional[datetime] = None - - -class Community(CommunityBase, table=True): - id: Optional[int] = Field(default=None, primary_key=True) - - -class CommunityRead(CommunityBase): - id: int - - -class UserCommunitysRead(CommunityBase): - id: int - - -class CommunityCreate(CommunityBase): - pass - - -class CommunitiesUpdate(SQLModel): - name: Optional[str] = None - description: Optional[str] = None - modified_at: datetime = Field(default_factory=datetime.utcnow, nullable=False) \ No newline at end of file diff --git a/app/models/community_info_model.py b/app/models/community_info_model.py new file mode 100644 index 0000000..76f977a --- /dev/null +++ b/app/models/community_info_model.py @@ -0,0 +1,26 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .community_model import Community + from .member_model import Members + +# Communities +class CommunityInfoBase(SQLModel): + name: str + description: str + source: str + #created_at: datetime = Field(default_factory=datetime.utcnow, nullable=False) + #modified_at: Optional[datetime] = None + +class Community_Info(CommunityInfoBase, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + + communities: List["Community"] = Relationship(back_populates="community_info") + members: List["Members"] = Relationship(back_populates="community_info") + +class Community_InfoRead(CommunityInfoBase): + id: int + diff --git a/app/models/community_model.py b/app/models/community_model.py new file mode 100644 index 0000000..5f38bc6 --- /dev/null +++ b/app/models/community_model.py @@ -0,0 +1,24 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .community_info_model import Community_Info, Community_InfoRead + + +class CommunityBase(SQLModel): + created: date = Field(nullable=False) + community_id: int = Field(primary_key=True, foreign_key="community_info.id") + + +class Community(CommunityBase, table=True): + #community_id: Optional[int] = Field(default=None, primary_key=True) + #id: Optional[int] = Field(default=None, primary_key=True) + community_info: "Community_Info" = Relationship(sa_relationship_kwargs={'uselist': False},back_populates="communities") + +class CommunityRead(CommunityBase): + pass + +class CommunityReadwithInfo(CommunityRead): + community_info: Optional["Community_InfoRead"] diff --git a/app/models/member_model.py b/app/models/member_model.py new file mode 100644 index 0000000..820b47d --- /dev/null +++ b/app/models/member_model.py @@ -0,0 +1,26 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .community_model import Community_Info,Community_InfoRead + +class MemberBase(SQLModel): + community_id: int = Field(primary_key=True, foreign_key="community_info.id") + hasheduserid: str = Field(primary_key=True) + status: str + +class Members(MemberBase, table=True): + community_info: "Community_Info" = Relationship(sa_relationship_kwargs={'uselist': False},back_populates="members") + +class MembersRead(MemberBase): + pass + +class MembersReadWithCommunityInfo(MembersRead): + community_info: "Community_InfoRead" + + + + + \ No newline at end of file diff --git a/app/models/models_old.py b/app/models/models_old.py new file mode 100644 index 0000000..59a3f64 --- /dev/null +++ b/app/models/models_old.py @@ -0,0 +1,98 @@ +from typing import List, Optional +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + + +# User +class UserBase(SQLModel): + first_name: str + last_name: str + email: str = Field(index=True) + password: str + + +class User(UserBase, table=True): + __table_args__ = (UniqueConstraint("email"),) + id: Optional[int] = Field(default=None, primary_key=True) + + +class UserCreate(UserBase): + pass + + +class UserRead(UserBase): + id: int + + +class UserUpdate(SQLModel): + first_name: Optional[str] = None + last_name: Optional[str] = None + email: Optional[str] = None + password: Optional[str] = None + + +class UserLogin(SQLModel): + email: str + password: str + + +class UserLoginResponse(SQLModel): + id: int + email: str + first_name: str + last_name: str + + +# Communities +class CommunityInfoBase(SQLModel): + name: str + description: str + source: str + #created_at: datetime = Field(default_factory=datetime.utcnow, nullable=False) + #modified_at: Optional[datetime] = None + +class Community_Info(CommunityInfoBase, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + + communities: List["Community"] = Relationship(back_populates="community_info") + +class Community_InfoRead(CommunityInfoBase): + id: int + +class CommunityBase(SQLModel): + created: date = Field(nullable=False) + community_id: int = Field(primary_key=True, foreign_key="community_info.id") + + +class Community(CommunityBase, table=True): + #community_id: Optional[int] = Field(default=None, primary_key=True) + #id: Optional[int] = Field(default=None, primary_key=True) + community_info: Community_Info = Relationship(sa_relationship_kwargs={'uselist': False},back_populates="communities") + +class CommunityRead(CommunityBase): + pass + +class CommunityReadwithInfo(CommunityRead): + community_info: Community_InfoRead + +# class Community_InfoReadwithCommunity(Community_InfoRead): +# pass +# #communities: Optional[Community] = None + +# Songs +class SongBase(SQLModel): + title: str + artist: str + release_date: str + + user_id: Optional[int] = Field(default=None, foreign_key="user.id") + +# class CommunityCreate(CommunityBase): +# pass + + +# class CommunitiesUpdate(SQLModel): +# name: Optional[str] = None +# description: Optional[str] = None +# modified_at: datetime = Field(default_factory=datetime.utcnow, nullable=False) \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 15a2c64..141ed96 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -47,6 +47,7 @@ services: - "3300:3000" volumes: - ./javascript:/app + - ./javascript/node_modules tty: true volumes: diff --git a/javascript/app/public/index.html b/javascript/app/public/index.html new file mode 100644 index 0000000..10b7a22 --- /dev/null +++ b/javascript/app/public/index.html @@ -0,0 +1,23 @@ + + + + + + + + + + + Rciam Metrics + + + +
+ + diff --git a/javascript/package.json b/javascript/package.json index c9958ed..0a86a22 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -18,15 +18,24 @@ "@testing-library/react": "^13.2.0", "@testing-library/user-event": "^13.5.0", "axios": "^0.27.2", + "bootstrap": "^5.2.2", + "datatable": "^2.0.2", + "datatables.net": "^1.13.1", + "datatables.net-buttons": "^2.3.2", + "datatables.net-dt": "^1.13.1", + "dateformat": "^5.0.3", + "jquery": "^3.6.1", "moment": "^2.29.3", "react": "^18.1.0", "react-date-picker": "^8.4.0", "react-datepicker": "^4.8.0", "react-dom": "^18.1.0", + "react-google-charts": "^4.0.0", "react-hook-form": "^7.31.1", "react-query": "^3.39.0", "react-router-dom": "^6.3.0", "react-scripts": "5.0.1", + "react-select": "^5.6.1", "react-toastify": "^9.0.1", "web-vitals": "^2.1.4", "yup": "^0.32.11" diff --git a/javascript/public/index.html b/javascript/public/index.html new file mode 100644 index 0000000..b018c6d --- /dev/null +++ b/javascript/public/index.html @@ -0,0 +1,24 @@ + + + + + + + + + + + Rciam Metrics 1222: + + + asdasda + +
+ + diff --git a/javascript/src/Pages/Login/index.js b/javascript/src/Pages/Login/index.js index 2c5e230..27315bf 100644 --- a/javascript/src/Pages/Login/index.js +++ b/javascript/src/Pages/Login/index.js @@ -18,9 +18,9 @@ const Login = () => { if (stored_user != undefined && Object.keys(stored_user).length !== 0) { setCurrentUser(stored_user) } - // Check if my user exists + if (Object.keys(currentUser).length !== 0) { - navigate("/"); + navigate("/communities"); } }, []) @@ -66,7 +66,7 @@ const Login = () => { return (
-

Login

+

Login 33

{/* Email */}
diff --git a/javascript/src/Pages/Metrics/communitiesChart.js b/javascript/src/Pages/Metrics/communitiesChart.js new file mode 100644 index 0000000..c9d5c17 --- /dev/null +++ b/javascript/src/Pages/Metrics/communitiesChart.js @@ -0,0 +1,68 @@ +import {useState, useContext, useEffect} from "react"; +import { Chart } from "react-google-charts";import "../../app.css"; +import {client} from '../../utils/api'; +import {communitiesGroupBy} from "../../utils/queryKeys"; +import {getCommunitiesGroupBy} from "../../utils/queries"; +import dateFormat from 'dateformat'; +import {useQuery} from "react-query"; +import Select from 'react-select'; + +export const options = { + title: "Number of Communities created per Period", + hAxis: { + format: 'yyyy', + + } +}; + +const options_group_by = [ + { value: 'year', label: 'yearly' }, + { value: 'month', label: 'monthly' }, + { value: 'week', label: 'weekly' }, + ]; + +const CommunitiesChart =() => { + const [selected, setSelected] = useState(options_group_by[0].value); + + const [communities, setCommunities] = useState(); + var communitiesArray = [["Date", "Communities"]]; + useEffect(() => { + console.log(selected) + // Get data for the last 4 years + // TODO: change it to last 1 year + client.get("communities_groupby/"+selected, { params: {'interval': 'year', 'count_interval':'4'}}). + then(response => { + console.log(response); + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + + var range_date = new Date(element.range_date); + + var community = [ range_date, element.count] + communitiesArray.push(community) + + }); + console.log(communitiesArray) + setCommunities(communitiesArray) + }) + // + + }, [selected]) + + + const handleChange = event => { + console.log(event.value); + setSelected(event.value); + }; + + return
+

Communities

+ + + Select Period: + +
+} + +export default CommunitiesChart \ No newline at end of file diff --git a/javascript/src/Pages/Metrics/communitiesDataTable.js b/javascript/src/Pages/Metrics/communitiesDataTable.js new file mode 100644 index 0000000..5246103 --- /dev/null +++ b/javascript/src/Pages/Metrics/communitiesDataTable.js @@ -0,0 +1,47 @@ +import {useState, useContext, useEffect} from "react"; +import "../../app.css"; +import {client} from '../../utils/api'; +import {communitiesGroupBy} from "../../utils/queryKeys"; +import "jquery/dist/jquery.min.js"; +import "datatables.net-dt/js/dataTables.dataTables"; +import "datatables.net-dt/css/jquery.dataTables.min.css"; +import "datatables.net-buttons/js/dataTables.buttons.js"; +import "datatables.net-buttons/js/buttons.colVis.js"; +import "datatables.net-buttons/js/buttons.flash.js"; +import "datatables.net-buttons/js/buttons.html5.js"; +import "datatables.net-buttons/js/buttons.print.js"; +import $ from "jquery"; +import Datatable from "../../components/datatable"; +import dateFormat from 'dateformat'; + +const CommunitiesDataTable =() => { + const [communities, setCommunities] = useState(); + var communitiesArray = []; + useEffect(() => { + client.get("communities_groupby/month", {'groupBy': 'month'}). + then(response => { + console.log(response); + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + + var range_date = new Date(element.range_date); + + var community = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Communities": element.count, "Names": element.names} + communitiesArray.push(community) + + }); + setCommunities(communitiesArray) + }) + // + + }, []) + + + return
+

Communities

+ +
+ +} + +export default CommunitiesDataTable \ No newline at end of file diff --git a/javascript/src/app.css b/javascript/src/app.css index d1e0043..4542cbe 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -1,8 +1,8 @@ .app { - display: flex; + /* display: flex; */ align-items: center; justify-content: center; - height: 100vh; + /* height: 100vh; */ background: linear-gradient( rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3) diff --git a/javascript/src/components/datatable.js b/javascript/src/components/datatable.js new file mode 100644 index 0000000..116aa47 --- /dev/null +++ b/javascript/src/components/datatable.js @@ -0,0 +1,168 @@ +import { useState, useContext, useEffect, Component } from "react"; +import "jquery/dist/jquery.min.js"; +import "datatables.net-dt/js/dataTables.dataTables"; +import "datatables.net-dt/css/jquery.dataTables.min.css"; +import "datatables.net-buttons/js/dataTables.buttons.js"; +import "datatables.net-buttons/js/buttons.colVis.js"; +import "datatables.net-buttons/js/buttons.flash.js"; +import "datatables.net-buttons/js/buttons.html5.js"; +import "datatables.net-buttons/js/buttons.print.js"; +import $ from "jquery"; + + +class Datatable extends Component { + + componentDidMount() { + if (!$.fn.DataTable.isDataTable("#myTable")) { + $(document).ready(function () { + setTimeout(function () { + $("#table").DataTable({ + pagingType: "full_numbers", + pageLength: 20, + processing: true, + dom: "Bfrtip", + select: { + style: "single", + }, + + buttons: [ + { + extend: "pageLength", + className: "btn btn-secondary bg-secondary", + }, + { + extend: "copy", + className: "btn btn-secondary bg-secondary", + }, + { + extend: "csv", + className: "btn btn-secondary bg-secondary", + }, + { + extend: "print", + customize: function (win) { + $(win.document.body).css("font-size", "10pt"); + $(win.document.body) + .find("table") + .addClass("compact") + .css("font-size", "inherit"); + }, + className: "btn btn-secondary bg-secondary", + }, + ], + + fnRowCallback: function ( + nRow, + aData, + iDisplayIndex, + iDisplayIndexFull + ) { + var index = iDisplayIndexFull + 1; + $("td:first", nRow).html(index); + return nRow; + }, + + lengthMenu: [ + [10, 20, 30, 50, -1], + [10, 20, 30, 50, "All"], + ], + columnDefs: [ + { + targets: 0, + render: function (data, type, row, meta) { + return type === "export" ? meta.row + 1 : data; + }, + }, + ], + }); + }, 1000); + }); + } + } + + listNames = (names, key) => { + if (key == "Names" && typeof names === 'string') { + return ( +
    + { + names.split("||").map((name, keyIndex) => ( +
  • {name}
  • + )) + } + +
+ ) + } + else return ( + names + ) + + } + + showTable = (items) => { + if(!items) return + // try { + return items.map((item, index) => { + + return ( + + {index + 1} + { + Object.keys(item).map((key, keyIndex) => + + ( + + + {this.listNames(item[key], key)} + + ) + ) + } + + + ); + }); + // } catch (e) { + // //alert(e.message); + // } + }; + + showColumns = (items) => { + try { + return ( + + S/N + { + + Object.keys(items[0]).map((key, keyIndex) => ( + {key} + )) + } + + ) + } + catch (e) { + //alert(e.message); + } + } + render() { + //console.log(items) + return ( +
+
+ + + {this.showColumns(this.props.items)} + + + + {this.showTable(this.props.items)} + +
+
+
+ ) + } +} + +export default Datatable; \ No newline at end of file diff --git a/javascript/src/index.js b/javascript/src/index.js index fc5079a..2bd8401 100644 --- a/javascript/src/index.js +++ b/javascript/src/index.js @@ -4,21 +4,25 @@ import App from './App'; import 'react-toastify/dist/ReactToastify.css'; import {ToastContainer} from 'react-toastify'; import {UserProvider} from "./Context/UserProvider"; +import CommunitiesDataTable from './Pages/Metrics/communitiesDataTable'; +import CommunitiesChart from './Pages/Metrics/communitiesChart'; const container = document.getElementById('root') const root = ReactDOM.createRoot(container) root.render( - - - - - - +// +// +// +// +// +// + + ) \ No newline at end of file diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 345774f..6693e7e 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -29,6 +29,17 @@ export const getCommunities = async ({queryKey}) => { const response = await apiClient.get('/communities') return response.data } + +// GET Communities +export const getCommunitiesGroupBy = async ({queryKey}) => { + const [_, params] = queryKey + console.log("sktat") + console.log(params.interval) + const response = await apiClient.get('/communities_groupby/' + params.groupBy, + { params: { interval : params.interval, count_interval: params.count_interval }}) + console.log(response) + return response.data +} // GET Community export const getCommunity = async({queryKey}) => { const [_, params] = queryKey diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index 82b3d6f..b639c57 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -4,4 +4,5 @@ export const loginUser = "users/login" export const oneUser = "users/:id" // Communities export const allCommunities = "communities" +export const communitiesGroupBy = "communities_groupby/:groupby" export const oneCommunity = "communities/:id" \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 0c908d8..9d7e4d4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,7 @@ pydantic==1.9.0 PyGreSQL==5.2.3 SQLAlchemy==1.4.36 sqlalchemy2-stubs==0.0.2a22 -sqlmodel==0.0.4 +sqlmodel==0.0.7 starlette==0.14.2 typer==0.4.1 typing_extensions==4.2.0 From f8ccd789d2b06b8b9c672944ba3cb8fb052bf0f7 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 12 Dec 2022 09:22:17 +0200 Subject: [PATCH 002/331] Add map to Community page, date range from-to, and other fixes --- app/main.py | 240 +++++++++++++++++- app/models/country_hashed_user_model.py | 33 +++ app/models/country_model.py | 22 ++ app/models/idp_model.py | 20 ++ app/models/service_model.py | 20 ++ app/models/user_model.py | 23 ++ docker-compose.yml | 2 +- javascript/package.json | 8 +- javascript/src/App.jsx | 20 +- javascript/src/Pages/Communities/index.js | 17 ++ .../src/Pages/Metrics/communitiesChart.js | 68 ----- .../src/Pages/Metrics/communitiesDataTable.js | 47 ---- javascript/src/app.css | 96 +++++++ javascript/src/components/Common/utils.js | 68 +++++ .../Communities/communitiesChart.js | 183 +++++++++++++ .../Communities/communitiesDataTable.js | 114 +++++++++ .../components/Communities/communitiesMap.js | 197 ++++++++++++++ .../components/Metrics/communitiesChart.js | 224 ++++++++++++++++ .../components/Users/registeredUsersChart.js | 123 +++++++++ .../Users/registeredUsersDataTable.js | 111 ++++++++ javascript/src/components/datatable.js | 175 ++++++++----- javascript/src/components/listCommunities.js | 22 ++ javascript/src/index.js | 15 +- javascript/src/public/index.html | 2 +- 24 files changed, 1653 insertions(+), 197 deletions(-) create mode 100644 app/models/country_hashed_user_model.py create mode 100644 app/models/country_model.py create mode 100644 app/models/idp_model.py create mode 100644 app/models/service_model.py create mode 100644 app/models/user_model.py create mode 100644 javascript/src/Pages/Communities/index.js delete mode 100644 javascript/src/Pages/Metrics/communitiesChart.js delete mode 100644 javascript/src/Pages/Metrics/communitiesDataTable.js create mode 100644 javascript/src/components/Common/utils.js create mode 100644 javascript/src/components/Communities/communitiesChart.js create mode 100644 javascript/src/components/Communities/communitiesDataTable.js create mode 100644 javascript/src/components/Communities/communitiesMap.js create mode 100644 javascript/src/components/Metrics/communitiesChart.js create mode 100644 javascript/src/components/Users/registeredUsersChart.js create mode 100644 javascript/src/components/Users/registeredUsersDataTable.js create mode 100644 javascript/src/components/listCommunities.js diff --git a/app/main.py b/app/main.py index e2ec87a..7e3d66d 100644 --- a/app/main.py +++ b/app/main.py @@ -1,4 +1,5 @@ from typing import List, Optional, Union +from app.models.user_model import Users, UsersRead from fastapi import Depends, FastAPI, HTTPException, Query from fastapi.middleware.cors import CORSMiddleware @@ -10,11 +11,16 @@ from app.models.community_info_model import * from app.models.community_model import * from app.models.member_model import * +from app.models.service_model import * +from app.models.country_model import * +from app.models.idp_model import * +from app.models.country_hashed_user_model import * app = FastAPI(debug=True) MembersReadWithCommunityInfo.update_forward_refs(Community_InfoRead=Community_InfoRead) CommunityReadwithInfo.update_forward_refs(Community_InfoRead=Community_InfoRead) +Statistics_Country_HashedwithInfo.update_forward_refs(IdentityprovidersmapRead=IdentityprovidersmapRead, ServiceprovidersmapRead=ServiceprovidersmapRead, Country_CodesRead=Country_CodesRead) origins = ["*"] app.add_middleware( @@ -25,11 +31,6 @@ allow_headers=["*"], ) - -@app.get("/ping") -def pong(): - return {"ping": "pong!"} - @app.get("/communities/", response_model=List[CommunityReadwithInfo]) def read_communities( *, @@ -47,14 +48,19 @@ def read_communities( offset: int = 0, group_by: str, interval: Union[str, None] = None, - count_interval: int = None + count_interval: int = None, + startDate: str = None, + endDate: str = None, ): interval_subquery="" if group_by: if interval and count_interval: interval_subquery = """WHERE created > - date_trunc('month', CURRENT_DATE) - INTERVAL '{0} {1}'""".format(count_interval, interval) - + date_trunc('{0}', CURRENT_DATE) - INTERVAL '{1} {2}'""".format(group_by,count_interval, interval) + if startDate and endDate: + interval_subquery=""" + WHERE created BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) communities = session.exec(""" select count(*) as count, date_trunc( '{0}', created ) as range_date, min(created) as min_date , string_agg(name,'|| ') as names, @@ -91,8 +97,224 @@ def read_communities_info( def read_members( *, session: Session = Depends(get_session), - offset: int = 0 + offset: int = 0, + # community_id: Union[None, int] = None ): + # if not community_id: + # members = session.exec(select(Members).offset(offset)).all() + # else: members = session.exec(select(Members).offset(offset)).all() return members + +@app.get("/members_bystatus/") +def read_members_bystatus( + *, + session: Session = Depends(get_session), + offset: int = 0, + community_id: Union[None, int] = None + ): + if not community_id: + members = session.exec(select(Members).offset(offset)).all() + else: + # members = session.exec(select(Members).offset(offset)).all() + members = session.exec(""" + SELECT count(*) as count, community_id, status FROM members + WHERE community_id={0} + GROUP BY community_id, status + """.format(community_id)).all() + # members = session.exec(""" SELECT community_id FROM members """) + return members + +@app.get("/services/", response_model=List[Serviceprovidersmap]) +def read_services( + *, + session: Session = Depends(get_session), + offset: int = 0 + ): + + services = session.exec(select(Serviceprovidersmap).offset(offset)).all() + return services + +@app.get("/idps/", response_model=List[Identityprovidersmap]) +def read_services( + *, + session: Session = Depends(get_session), + offset: int = 0 + ): + + idps = session.exec(select(Identityprovidersmap).offset(offset)).all() + return idps + +@app.get("/countries/", response_model=List[Country_CodesRead]) +def read_countries( + *, + session: Session = Depends(get_session), + offset: int = 0 + ): + + countries = session.exec(select(Country_Codes).offset(offset)).all() + return countries + +@app.get("/country_stats/", response_model=List[Statistics_Country_HashedwithInfo]) +def read_country_stats( + *, + session: Session = Depends(get_session), + offset: int = 0 + ): + + stats = session.exec(select(Statistics_Country_Hashed).offset(offset)).all() + return stats + +@app.get("/country_stats_by_vo/{community_id}") +def read_country_stats_by_vo( + *, + session: Session = Depends(get_session), + offset: int = 0, + community_id: Union[None, int] = None + ): + stats =[] + stats_country = session.exec(""" + WITH users_countries AS ( + SELECT statistics_country_hashed.hasheduserid as userid, status, country, countrycode, count(*) as sum_count + FROM statistics_country_hashed + JOIN members ON members.hasheduserid=statistics_country_hashed.hasheduserid + JOIN country_codes ON countryid=country_codes.id + WHERE community_id={0} AND country!='Unknown' + GROUP BY userid, status, country, countrycode + ), + max_count_users_countries AS ( + SELECT DISTINCT userid, status, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid, status) as row_number + FROM users_countries + GROUP BY userid, status + ) + SELECT country,countrycode,count(*) as sum + FROM users_countries + JOIN ( + SELECT userid, status, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, status, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + GROUP BY country,countrycode + ORDER BY country; + """.format(community_id)).all() + status_per_country = session.exec(""" + WITH users_countries AS ( + SELECT statistics_country_hashed.hasheduserid as userid, status, country, countrycode, count(*) as sum_count + FROM statistics_country_hashed + JOIN members ON members.hasheduserid=statistics_country_hashed.hasheduserid + JOIN country_codes ON countryid=country_codes.id + WHERE community_id={0} AND country!='Unknown' + GROUP BY userid, status, country, countrycode + ), + max_count_users_countries AS ( + SELECT DISTINCT userid, status, max(sum_count) as max_sum_count, row_number() OVER (ORDER BY userid, status) as row_number + FROM users_countries + GROUP BY userid, status + ) + SELECT country,countrycode, users_countries.status, count(*) as sum + FROM users_countries + JOIN ( + SELECT userid, status, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, status, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + GROUP BY country,countrycode, users_countries.status + ORDER BY country; + """.format(community_id)).all() + stats.append(stats_country) + stats.append(status_per_country) + return stats + + +# Users Endpoints +# +@app.get("/users/", response_model=List[UsersRead]) +def read_users( + *, + session: Session = Depends(get_session), + offset: int = 0 + ): + + users = session.exec(select(Users).offset(offset)).all() + return users + +@app.get("/registered_users_country_group_by/{group_by}") +def read_users_country_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + startDate: str = None, + endDate: str = None, + ): + if group_by: + interval_subquery="" + if startDate and endDate: + interval_subquery=""" + WHERE users.created BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + users = session.exec( + """WITH users_countries AS ( + SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count + FROM statistics_country_hashed + JOIN country_codes ON countryid=country_codes.id + GROUP BY userid, country, countrycode + ), + max_count_users_countries AS ( + SELECT DISTINCT userid, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid) as row_number + FROM users_countries + GROUP BY userid + ) + SELECT range_date, STRING_AGG(country, '|| ') as countries, sum(sum) as count + FROM + ( + SELECT date_trunc('{0}', users.created) as range_date, CONCAT(country,': ',count(*)) as country, count(*) as sum + FROM users_countries + JOIN ( + SELECT userid, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + JOIN users ON users.hasheduserid=users_countries.userid AND status='A' + {1} + GROUP BY range_date, country,countrycode + ORDER BY range_date, country + ) user_country_group_by + GROUP BY range_date""".format(group_by, interval_subquery)).all() + return users + +@app.get("/registered_users_groupby/{group_by}") +def read_users_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + interval: Union[str, None] = None, + count_interval: int = None, + startDate: str = None, + endDate: str = None, + ): + + interval_subquery="" + if group_by: + if interval and count_interval: + interval_subquery = """AND created > + date_trunc('month', CURRENT_DATE) - INTERVAL '{0} {1}'""".format(count_interval, interval) + if startDate and endDate: + interval_subquery=""" + AND created BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + users = session.exec(""" + select count(*) as count, date_trunc( '{0}', created ) as range_date, + min(created) as min_date + from users + WHERE status = 'A' + {1} + group by range_date + ORDER BY range_date ASC + """.format(group_by, interval_subquery)).all() + return users \ No newline at end of file diff --git a/app/models/country_hashed_user_model.py b/app/models/country_hashed_user_model.py new file mode 100644 index 0000000..3375d57 --- /dev/null +++ b/app/models/country_hashed_user_model.py @@ -0,0 +1,33 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .idp_model import * + from .service_model import * + from .country_model import * + + +class Statistics_Country_HashedBase(SQLModel): + date: date + hasheduserid: str + sourceidpid: int = Field(foreign_key="identityprovidersmap.id") + serviceid : int = Field(foreign_key="serviceprovidersmap.id") + countryid: int = Field(foreign_key="country_codes.id") + count: int + + +class Statistics_Country_Hashed(Statistics_Country_HashedBase, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + identityprovider_info: "Identityprovidersmap" = Relationship(sa_relationship_kwargs={'uselist': False},back_populates="idps") + serviceprovider_info: "Serviceprovidersmap" = Relationship(sa_relationship_kwargs={'uselist': False},back_populates="services") + country_info: "Country_Codes" = Relationship(sa_relationship_kwargs={'uselist': False},back_populates="countries") + +class Statistics_Country_HashedRead(Statistics_Country_HashedBase): + pass + +class Statistics_Country_HashedwithInfo(Statistics_Country_HashedRead): + identityprovider_info: Optional["IdentityprovidersmapRead"] + serviceprovider_info: Optional["ServiceprovidersmapRead"] + country_info: Optional["Country_CodesRead"] diff --git a/app/models/country_model.py b/app/models/country_model.py new file mode 100644 index 0000000..6ab7812 --- /dev/null +++ b/app/models/country_model.py @@ -0,0 +1,22 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .country_hashed_user_model import Statistics_Country_Hashed + from .member_model import Members + +# Communities +class Country_CodesBase(SQLModel): + countrycode: str + country: str + + +class Country_Codes(Country_CodesBase, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + countries: List["Statistics_Country_Hashed"] = Relationship(back_populates="country_info") + +class Country_CodesRead(Country_CodesBase): + id: int + diff --git a/app/models/idp_model.py b/app/models/idp_model.py new file mode 100644 index 0000000..53a85df --- /dev/null +++ b/app/models/idp_model.py @@ -0,0 +1,20 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .country_hashed_user_model import Statistics_Country_Hashed + +# IdPs +class IdentityprovidersmapBase(SQLModel): + entityid: str + name: str + +class Identityprovidersmap(IdentityprovidersmapBase, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + idps: List["Statistics_Country_Hashed"] = Relationship(back_populates="identityprovider_info") + +class IdentityprovidersmapRead(IdentityprovidersmapBase): + id: int + diff --git a/app/models/service_model.py b/app/models/service_model.py new file mode 100644 index 0000000..8daaf8b --- /dev/null +++ b/app/models/service_model.py @@ -0,0 +1,20 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .country_hashed_user_model import Statistics_Country_Hashed + +# Communities +class ServiceprovidersmapBase(SQLModel): + identifier: str + name: str + +class Serviceprovidersmap(ServiceprovidersmapBase, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + services: List["Statistics_Country_Hashed"] = Relationship(back_populates="serviceprovider_info") + +class ServiceprovidersmapRead(ServiceprovidersmapBase): + id: int + diff --git a/app/models/user_model.py b/app/models/user_model.py new file mode 100644 index 0000000..834277a --- /dev/null +++ b/app/models/user_model.py @@ -0,0 +1,23 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + + +class UserBase(SQLModel): + + hasheduserid: str = Field(primary_key=True) + created: date + status: str + +class Users(UserBase, table=True): + pass + +class UsersRead(UserBase): + pass + + + + + + \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 141ed96..f4dc5e6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -47,7 +47,7 @@ services: - "3300:3000" volumes: - ./javascript:/app - - ./javascript/node_modules + # - ./javascript/node_modules tty: true volumes: diff --git a/javascript/package.json b/javascript/package.json index 0a86a22..7df6243 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -22,21 +22,27 @@ "datatable": "^2.0.2", "datatables.net": "^1.13.1", "datatables.net-buttons": "^2.3.2", + "datatables.net-buttons-dt": "^2.3.3", "datatables.net-dt": "^1.13.1", "dateformat": "^5.0.3", "jquery": "^3.6.1", + "jquery-mapael": "^2.2.0", "moment": "^2.29.3", + "pdfmake": "^0.2.6", "react": "^18.1.0", + "react-bootstrap": "^2.6.0", "react-date-picker": "^8.4.0", "react-datepicker": "^4.8.0", "react-dom": "^18.1.0", + "react-dropdown": "^1.11.0", "react-google-charts": "^4.0.0", "react-hook-form": "^7.31.1", "react-query": "^3.39.0", "react-router-dom": "^6.3.0", "react-scripts": "5.0.1", "react-select": "^5.6.1", - "react-toastify": "^9.0.1", + "react-toastify": "^9.1.1", + "react-tooltip": "^4.5.0", "web-vitals": "^2.1.4", "yup": "^0.32.11" }, diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index f71f02d..db23afb 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -4,20 +4,26 @@ import Login from "./Pages/Login"; import Register from "./Pages/Register"; import ErrorPage from "./Pages/Error"; import {QueryClient, QueryClientProvider} from 'react-query' +import Communities from "./Pages/Communities"; +import Users from "./Pages/Users"; +import RegisteredUsers from "./Pages/RegisteredUsers"; function App() { - const queryClient = new QueryClient() + // const queryClient = new QueryClient() return ( - + {/* */} - }/> - }/> - }/> - }/> + {/* }/> */} + {/* }/> */} + {/* }/> */} + {/* }/> */} + }/> + }/> + }/> - + {/* */} ); } diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js new file mode 100644 index 0000000..c57059f --- /dev/null +++ b/javascript/src/Pages/Communities/index.js @@ -0,0 +1,17 @@ +import Container from "react-bootstrap/Container"; +import CommunitiesChart from "../../components/Communities/communitiesChart"; +import CommunitiesDataTable from "../../components/Communities/communitiesDataTable"; +import CommunitiesMap from "../../components/Communities/communitiesMap"; + +const Communities = () => { + + return ( + +

Communities

+ + + +
) + +} +export default Communities; diff --git a/javascript/src/Pages/Metrics/communitiesChart.js b/javascript/src/Pages/Metrics/communitiesChart.js deleted file mode 100644 index c9d5c17..0000000 --- a/javascript/src/Pages/Metrics/communitiesChart.js +++ /dev/null @@ -1,68 +0,0 @@ -import {useState, useContext, useEffect} from "react"; -import { Chart } from "react-google-charts";import "../../app.css"; -import {client} from '../../utils/api'; -import {communitiesGroupBy} from "../../utils/queryKeys"; -import {getCommunitiesGroupBy} from "../../utils/queries"; -import dateFormat from 'dateformat'; -import {useQuery} from "react-query"; -import Select from 'react-select'; - -export const options = { - title: "Number of Communities created per Period", - hAxis: { - format: 'yyyy', - - } -}; - -const options_group_by = [ - { value: 'year', label: 'yearly' }, - { value: 'month', label: 'monthly' }, - { value: 'week', label: 'weekly' }, - ]; - -const CommunitiesChart =() => { - const [selected, setSelected] = useState(options_group_by[0].value); - - const [communities, setCommunities] = useState(); - var communitiesArray = [["Date", "Communities"]]; - useEffect(() => { - console.log(selected) - // Get data for the last 4 years - // TODO: change it to last 1 year - client.get("communities_groupby/"+selected, { params: {'interval': 'year', 'count_interval':'4'}}). - then(response => { - console.log(response); - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - - var range_date = new Date(element.range_date); - - var community = [ range_date, element.count] - communitiesArray.push(community) - - }); - console.log(communitiesArray) - setCommunities(communitiesArray) - }) - // - - }, [selected]) - - - const handleChange = event => { - console.log(event.value); - setSelected(event.value); - }; - - return
-

Communities

- - - Select Period: - -
-} - -export default CommunitiesChart \ No newline at end of file diff --git a/javascript/src/Pages/Metrics/communitiesDataTable.js b/javascript/src/Pages/Metrics/communitiesDataTable.js deleted file mode 100644 index 5246103..0000000 --- a/javascript/src/Pages/Metrics/communitiesDataTable.js +++ /dev/null @@ -1,47 +0,0 @@ -import {useState, useContext, useEffect} from "react"; -import "../../app.css"; -import {client} from '../../utils/api'; -import {communitiesGroupBy} from "../../utils/queryKeys"; -import "jquery/dist/jquery.min.js"; -import "datatables.net-dt/js/dataTables.dataTables"; -import "datatables.net-dt/css/jquery.dataTables.min.css"; -import "datatables.net-buttons/js/dataTables.buttons.js"; -import "datatables.net-buttons/js/buttons.colVis.js"; -import "datatables.net-buttons/js/buttons.flash.js"; -import "datatables.net-buttons/js/buttons.html5.js"; -import "datatables.net-buttons/js/buttons.print.js"; -import $ from "jquery"; -import Datatable from "../../components/datatable"; -import dateFormat from 'dateformat'; - -const CommunitiesDataTable =() => { - const [communities, setCommunities] = useState(); - var communitiesArray = []; - useEffect(() => { - client.get("communities_groupby/month", {'groupBy': 'month'}). - then(response => { - console.log(response); - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - - var range_date = new Date(element.range_date); - - var community = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Communities": element.count, "Names": element.names} - communitiesArray.push(community) - - }); - setCommunities(communitiesArray) - }) - // - - }, []) - - - return
-

Communities

- -
- -} - -export default CommunitiesDataTable \ No newline at end of file diff --git a/javascript/src/app.css b/javascript/src/app.css index 4542cbe..d8e9d76 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -62,6 +62,102 @@ button.reg-form { border-color: #3f4454 transparent #3f4454 transparent; animation: lds-dual-ring 1.2s linear infinite; } +.columnList { + margin: 21px 0px 0px 0px; + padding-left: 20px; + height: 214px; + overflow: auto; + text-align: left; + padding-right: 10px; +} +.tooltip { + max-width: 200px; +} +.dt-buttons { + position: relative; +} +.range_inputs { + display: flex; + align-items: center; +} +.range_inputs input { + padding: 0.5em; +} +.react-datepicker-wrapper { + width: auto!important; +} +.react-datepicker__tab-loop { + position: absolute!important; +} +/* Map Style*/ +.communityMembersByCountry { + min-height: 20em; + align-content: baseline; +} +.container_map { + position: relative; +} +.mapael .zoomButton { + background-color: #fff; + border: 1px solid #ccc; + color: #000; + width: 15px; + height: 15px; + line-height: 15px; + text-align: center; + border-radius: 3px; + cursor: pointer; + position: absolute; + top: 0; + font-weight: bold; + left: 10px; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -o-user-select: none; + user-select: none; +} + +.mapael .zoomReset { + top: 10px; +} + +.mapael .zoomIn { + top: 30px; +} + +.mapael .zoomOut { + top: 50px; +} + +.mapael .mapTooltip { + position: absolute; + background-color: #474c4b; + moz-opacity: 0.70; + opacity: 0.70; + filter: alpha(opacity=70); + border-radius: 10px; + padding: 10px; + z-index: 1000; + max-width: 200px; + display: none; + color: #fff; +} +.areaLegend { + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + position: absolute; + top: 20px; + right: 40px; + padding: 10px; + display: none; + +} +.areaLegend tspan { + font: inherit; + padding-bottom: 24px; + border-bottom: 1px solid #ccc; +} @keyframes lds-dual-ring { 0% { transform: rotate(0deg); diff --git a/javascript/src/components/Common/utils.js b/javascript/src/components/Common/utils.js new file mode 100644 index 0000000..8e9f478 --- /dev/null +++ b/javascript/src/components/Common/utils.js @@ -0,0 +1,68 @@ +export function convertDateByGroup(jsDate, groupBy) { + var month = (jsDate.getMonth() + 1).toString() + if (month.length < 2) { + month = '0' + month; + } + var day = jsDate.getDate().toString() + if (day.length < 2) { + day = '0' + day; + } + if (groupBy == 'day') { + var showDate = jsDate.getFullYear() + '-' + month + '-' + day; + } + else if (groupBy == 'week') { + var showDate = jsDate.getFullYear() + '-' + month + '-' + day; + var nextWeek = new Date(jsDate.setDate(jsDate.getDate() + 6)); + month = (nextWeek.getMonth() + 1).toString() + if (month.length < 2) { + month = '0' + month; + } + day = nextWeek.getDate().toString() + if (day.length < 2) { + day = '0' + day; + } + showDate += " to " + nextWeek.getFullYear() + '-' + month + '-' + day; + } + else if (groupBy == 'month') { + var showDate = jsDate.getFullYear() + '-' + month; + } + else if (groupBy == 'year') { + var showDate = jsDate.getFullYear(); + } + return showDate; +} + +export function getWeekNumber(d) { + + d = new Date(Date.UTC(d.getFullYear(), d.getMonth(), d.getDate())); + // Set to nearest Thursday: current date + 4 - current day number + // Make Sunday's day number 7 + d.setUTCDate(d.getUTCDate() + 4 - (d.getUTCDay() || 7)); + // Get first day of year + var yearStart = new Date(Date.UTC(d.getUTCFullYear(), 0, 1)); + // Calculate full weeks to nearest Thursday + var weekNo = Math.ceil((((d - yearStart) / 86400000) + 1) / 7); + // Return array of year and week number + return weekNo + ' (' + d.getUTCFullYear() + ')'; +} + +// Sort data and convert them to html list +export function convertToList(data, seperator) { + var lis = '' + data.split(seperator).sort(function (a, b) { + var nameA = a.toUpperCase(); // ignore upper and lowercase + var nameB = b.toUpperCase(); // ignore upper and lowercase + if (nameA < nameB) { + return -1; + } + if (nameA > nameB) { + return 1; + } + // names must be equal + return 0; + + }).forEach(function (value) { + lis += '
  • ' + value.trim() + '
  • ' + }) + return lis +} \ No newline at end of file diff --git a/javascript/src/components/Communities/communitiesChart.js b/javascript/src/components/Communities/communitiesChart.js new file mode 100644 index 0000000..73bf7e3 --- /dev/null +++ b/javascript/src/components/Communities/communitiesChart.js @@ -0,0 +1,183 @@ +import { useState, useContext, useEffect } from "react"; +import { Chart } from "react-google-charts"; +import "../../app.css"; +import { client } from '../../utils/api'; +import { communitiesGroupBy } from "../../utils/queryKeys"; +import { getCommunitiesGroupBy } from "../../utils/queries"; +import dateFormat from 'dateformat'; +import { useQuery } from "react-query"; +import Select from 'react-select'; +import Container from 'react-bootstrap/Container'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import 'bootstrap/dist/css/bootstrap.min.css'; +import ListCommunities from "../listCommunities"; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; + +export const options = { + year: { + title: "Number of Communities created per year", + hAxis: { + format: 'Y', + }, + count_interval: 12 + }, + month: { + title: "Number of Communities created per month", + hAxis: { + format: 'YYYY-MM', + }, + count_interval: 24 + }, + week: { + title: "Number of Communities created per week", + hAxis: { + format: '', + }, + count_interval: 24 + } +}; + + + +const options_group_by = [ + { value: 'year', label: 'yearly' }, + { value: 'month', label: 'monthly' }, + { value: 'week', label: 'weekly' }, +]; + +const CommunitiesChart = () => { + + const [selected, setSelected] = useState(options_group_by[0].value); + const [communities, setCommunities] = useState(); + const [communitiesList, setcommunitiesList] = useState([]); + var communitiesArray = [["Date", "Communities"]]; + var communitiesListArray = []; + const [global_options, setGlobalOptions] = useState(); + + useEffect(() => { + + var hticksArray = []; + var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] + // Get data for the last 4 years + // TODO: change it to last 1 year + console.log(selected) + console.log(options[selected]) + client.get("communities_groupby/" + selected, { params: { 'interval': selected, 'count_interval': options[selected]["count_interval"] } }). + then(response => { + console.log(response); + + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + var range_date = new Date(element.range_date); + var community = [range_date, element.count] + communitiesArray.push(community) + + // Construct the list with COUs + var createdDate = element.created_date.split(", ") + var description = element.description.split("|| ") + element.names.split("|| ").forEach(function (name, index) { + communitiesListArray.push({ name: name, created: createdDate[index], description: description[index] + '
    ' + 'Created Date: ' + createdDate[index] }) + }) + + if (selected == "week") { + hticksArray.push({ v: range_date, f: getWeekNumber(range_date) }) + } + else { + hticksArray.push({ v: range_date, f: range_date }) + } + + // Construct element & tooltip + var temp = []; + temp.push(range_date); + temp.push(parseInt(element['count'])); + temp.push('
    ' + + convertDateByGroup(range_date, selected) + + "
    " + 'Communities' + + ": " + parseInt(element['count']) + '
    '); + fValues.push(temp); + }); + + // sort by value + communitiesListArray = communitiesListArray.sort(function (a, b) { + var nameA = a.name.toUpperCase(); // ignore upper and lowercase + var nameB = b.name.toUpperCase(); // ignore upper and lowercase + if (nameA < nameB) { + return -1; + } + if (nameA > nameB) { + return 1; + } + // names must be equal + return 0; + }); + //communitiesList.push({name:element.names, created: element.created_date, description: element.description}) + setcommunitiesList(communitiesListArray) + //console.log(communitiesArray) + setCommunities(fValues) + + + setGlobalOptions({ + title: options[selected]["title"], + backgroundColor: { fill: 'transparent' }, + vAxis: { + //title: vAxisTitle[tab], + format: '0' + }, + hAxis: { + format: options[selected]["hAxis"]["format"], + maxTextLines: 2, + //title: registeredUsersBy[type], // globar variable found at index.ctp + textStyle: { fontSize: 15 }, + ticks: hticksArray, + //showTextEvery: 5 + }, + tooltip: { isHtml: true }, + width: '100%', + height: '350', + bar: { groupWidth: "92%" }, + legend: { position: "none" }, + }) + + }) + + }, [selected]) + + + + const handleChange = event => { + console.log(event.value); + setSelected(event.value); + }; + + return + + + + + + + + + Select Period: + + + + + + + + + + + + + + + + + +} + +export default CommunitiesChart \ No newline at end of file diff --git a/javascript/src/components/Communities/communitiesDataTable.js b/javascript/src/components/Communities/communitiesDataTable.js new file mode 100644 index 0000000..adde9c3 --- /dev/null +++ b/javascript/src/components/Communities/communitiesDataTable.js @@ -0,0 +1,114 @@ +import {useState, useContext, useEffect} from "react"; +import "../../app.css"; +import {client} from '../../utils/api'; +import {communitiesGroupBy} from "../../utils/queryKeys"; +import "jquery/dist/jquery.min.js"; +import $ from "jquery"; +import Datatable from "../../components/datatable"; +import dateFormat from 'dateformat'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import DatePicker from "react-datepicker"; +import Dropdown from 'react-dropdown'; +import { ToastContainer, toast } from 'react-toastify'; +import { convertDateByGroup} from "../Common/utils"; +import 'react-toastify/dist/ReactToastify.css'; +import 'react-dropdown/style.css'; +import "react-datepicker/dist/react-datepicker.css"; + +const dropdownOptions = [ + + { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, + { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, + { value: 'month', label: 'Monthly Basis' }, + { value: 'year', label: 'Yearly Basis' }, +] + +const CommunitiesDataTable =() => { + const [communities, setCommunities] = useState(); + var communitiesArray = []; + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + useEffect(() => { + client.get("communities_groupby/month"). + then(response => { + console.log(response); + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + + var range_date = new Date(element.range_date); + + var community = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Communities": element.count, "Names": element.names} + communitiesArray.push(community) + + }); + setCommunities(communitiesArray) + }) + // + + }, []) + + const handleChange = event => { + console.log(event.value); + communitiesArray = [] + if(!startDate || !endDate) { + toast.error('You have to fill both startDate and endDate.', { + position: "top-center", + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: true, + draggable: true, + progress: undefined, + theme: "dark", + }); + return + } + client.get("communities_groupby/"+event.value, {params: {'startDate':startDate, 'endDate':endDate}}). + then(response => { + //console.log(response); + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + var range_date = new Date(element.range_date); + console.log(event.value) + var community = { "Date": convertDateByGroup(range_date, event.value), "Number of Communities": element.count, "Names": element.names} + communitiesArray.push(community) + + }); + if (communitiesArray.length==0) { + communitiesArray.push({"Data": "No data available."}) + + } + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#table").DataTable().destroy() + setCommunities(communitiesArray) + }) + //setSelected(event.value); + }; + + return + {/* + + From: setStartDate(date)}> + To: setEndDate(date)}> + + + */} + + + + + + +} + +export default CommunitiesDataTable \ No newline at end of file diff --git a/javascript/src/components/Communities/communitiesMap.js b/javascript/src/components/Communities/communitiesMap.js new file mode 100644 index 0000000..1759182 --- /dev/null +++ b/javascript/src/components/Communities/communitiesMap.js @@ -0,0 +1,197 @@ +import { useState, useContext, useEffect } from "react"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Select from 'react-select'; +import { client } from '../../utils/api'; +import $, { map } from "jquery"; +import 'jquery-mapael'; +import 'jquery-mapael/js/maps/world_countries_mercator.js'; + + +const CommunitiesMap = () => { + const StatusEnumeration = { + 'A' : 'Active', + 'GP': 'Grace Period', + 'O': 'Other' + } + + const [communities, setCommunities] = useState(); + const [selectedCommunity, setSelectedCommunity] = useState({}); + const [membersStatus, setMembersStatus] = useState([]); + var communitiesArray = []; + useEffect(() => { + client.get("communities").then(response => { + + response["data"].forEach(element => { + var community = { label: element.community_info.name, value: element.community_id } + communitiesArray.push(community) + }) + + setCommunities(communitiesArray) + + }) + }, []) + + const createMap = (id, mapData, tooltipLabel = "Users", legendLabel = 'Users per country') => { + var areas = {}; + var i = 1; + var maxSum = 0; + mapData[0].forEach(function (mapRow) { + + var contentTooltip = "" + mapRow.country + "
    " + tooltipLabel + " : " + mapRow.sum + "
    " + var other_status = 0; + // Get statuses per country + mapData[1].forEach(function(status_per_country) { + if(status_per_country.country == mapRow.country) { + if(status_per_country.status != 'A' && status_per_country.status != 'GP'){ + other_status += status_per_country.sum + } + else { + contentTooltip += StatusEnumeration[status_per_country.status] + ": " + status_per_country.sum + "
    " + } + } + + }) + if(other_status > 0 ){ + contentTooltip += StatusEnumeration['O'] + ": " + other_status + } + //contentTooltip += mapRow.additional_text !== undefined ? '
    ' + mapRow.additional_text : ''; + areas[mapRow.countrycode] = { + value: mapRow.sum, + tooltip: { content: contentTooltip } + } + if (mapRow.sum > maxSum) { + maxSum = mapRow.sum; + } + i++; + }) + // Set Number of Legends + var numLegends = maxSum < 5 ? maxSum : 5; + var spaces = Math.round(maxSum / numLegends); + var legends = []; + var fill = ["#09EBEE", "#19CEEB", "#28ACEA", "#388EE9", "#3D76E0"]; + for(i = 0; i < numLegends; i++) { + var maxValue = ((i + 1) != numLegends ? ((i + 1) * spaces) : maxSum); + var legend = { + min: i * spaces, + max: maxValue, + attrs: { + fill: fill[i] + }, + label: i * spaces + "-" + maxValue + } + legends.push(legend) + } + $(".areaLegend").show() + $("#" + id).mapael({ + map: { + name: "world_countries_mercator", + zoom: { + enabled: true, + maxLevel: 15, + init: { + latitude: 40.717079, + longitude: -74.00116, + level: 5 + } + }, + defaultArea: { + attrs: { + fill: "#ccc", // my function for color i want to define + stroke: "#5d5d5d", + "stroke-width": 0.2, + "stroke-linejoin": "round", + + }, + attrsHover: { + fill: "#E98300", + animDuration: 300 + }, + + }, + }, + legend: { + area: { + title: legendLabel, + titleAttrs: { "font": "unset", "font-size": "12px", "font-weight": "bold" }, + slices: legends + } + }, + areas: areas + }) + + + } + + const handleChange = event => { + + var community_id = event.value; + console.log(community_id) + client.get("members_bystatus", { params: { 'community_id': community_id } }).then(response => { + var statuses = { 'A': 0, 'GP': 0, 'O': 0 } + //console.log(response["data"][0]) + response["data"].forEach(function (memberStatus, index) { + console.log(memberStatus) + if (memberStatus['status'] == 'A' || memberStatus['status'] == 'GP') { + statuses[memberStatus['status']] = memberStatus['count'] + } + else { + statuses['O']+= memberStatus['count'] + } + }) + setMembersStatus(statuses) + }) + client.get("communities/" + community_id).then(result => { + //console.log(result) + var community = result["data"] + setSelectedCommunity({ "name": community["community_info"]["name"], "description": community["community_info"]["description"] }) + + + } + ) + client.get("country_stats_by_vo/" + community_id).then(result => { + console.log(result) + var stats = result["data"] + createMap("communitiesMap", stats) + }) + } + return ( + +

    Statistics Per Community

    + + + {selectedCommunity["name"] && {selectedCommunity["name"]} + {selectedCommunity["description"]} + + + } + + +
    +
    +
    +
    + + + {membersStatus["A"] !== undefined && + + ACTIVE USERS + {membersStatus["A"]} + + + GRACE PERIOD USERS + {membersStatus["GP"]} + + + OTHER STATUS USERS + {membersStatus["O"]} + + + } + + +
    + ) +} + +export default CommunitiesMap; \ No newline at end of file diff --git a/javascript/src/components/Metrics/communitiesChart.js b/javascript/src/components/Metrics/communitiesChart.js new file mode 100644 index 0000000..8954b15 --- /dev/null +++ b/javascript/src/components/Metrics/communitiesChart.js @@ -0,0 +1,224 @@ +import { useState, useContext, useEffect } from "react"; +import { Chart } from "react-google-charts"; +import "../../app.css"; +import { client } from '../../utils/api'; +import { communitiesGroupBy } from "../../utils/queryKeys"; +import { getCommunitiesGroupBy } from "../../utils/queries"; +import dateFormat from 'dateformat'; +import { useQuery } from "react-query"; +import Select from 'react-select'; +import Container from 'react-bootstrap/Container'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import 'bootstrap/dist/css/bootstrap.min.css'; +import ListCommunities from "../listCommunities"; + +export const options = { + year: { + title: "Number of Communities created per year", + hAxis: { + format: 'Y', + } + }, + month: { + title: "Number of Communities created per month", + hAxis: { + format: 'YYYY-MM', + } + }, + week: { + title: "Number of Communities created per week", + hAxis: { + format: '', + } + } +}; + + + +const options_group_by = [ + { value: 'year', label: 'yearly' }, + { value: 'month', label: 'monthly' }, + { value: 'week', label: 'weekly' }, +]; + +const CommunitiesChart = () => { + + const [selected, setSelected] = useState(options_group_by[0].value); + const [communities, setCommunities] = useState(); + const [communitiesList, setcommunitiesList] = useState([]); + var communitiesArray = [["Date", "Communities"]]; + var communitiesListArray = []; + const [global_options, setGlobalOptions] = useState(); + + useEffect(() => { + + console.log(options[selected]["hAxis"]["format"]) + var hticksArray = []; + var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] + // Get data for the last 4 years + // TODO: change it to last 1 year + client.get("communities_groupby/" + selected, { params: { 'interval': 'year', 'count_interval': '4' } }). + then(response => { + console.log(response); + + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + var range_date = new Date(element.range_date); + var community = [range_date, element.count] + communitiesArray.push(community) + + // Construct the list with COUs + var createdDate = element.created_date.split(", ") + var description = element.description.split("|| ") + element.names.split("|| ").forEach(function (name, index) { + communitiesListArray.push({ name: name, created: createdDate[index], description: description[index] + '
    ' + 'Created Date: ' + createdDate[index] }) + }) + + if (selected == "week") { + hticksArray.push({ v: range_date, f: getWeekNumber(range_date) }) + } + else { + hticksArray.push({ v: range_date, f: range_date }) + } + + // Construct element & tooltip + var temp = []; + temp.push(range_date); + temp.push(parseInt(element['count'])); + temp.push('
    ' + + convertDateByGroup(range_date, selected) + + "
    " + 'Communities' + + ": " + parseInt(element['count']) + '
    '); + fValues.push(temp); + }); + + // sort by value + communitiesListArray = communitiesListArray.sort(function (a, b) { + var nameA = a.name.toUpperCase(); // ignore upper and lowercase + var nameB = b.name.toUpperCase(); // ignore upper and lowercase + if (nameA < nameB) { + return -1; + } + if (nameA > nameB) { + return 1; + } + // names must be equal + return 0; + }); + //communitiesList.push({name:element.names, created: element.created_date, description: element.description}) + setcommunitiesList(communitiesListArray) + //console.log(communitiesArray) + setCommunities(fValues) + + + setGlobalOptions({ + title: options[selected]["title"], + backgroundColor: { fill: 'transparent' }, + vAxis: { + //title: vAxisTitle[tab], + format: '0' + }, + hAxis: { + format: options[selected]["hAxis"]["format"], + maxTextLines: 2, + //title: registeredUsersBy[type], // globar variable found at index.ctp + textStyle: { fontSize: 15 }, + ticks: hticksArray, + //showTextEvery: 5 + }, + tooltip: { isHtml: true }, + width: '100%', + height: '350', + bar: { groupWidth: "92%" }, + legend: { position: "none" }, + }) + + }) + + }, [selected]) + + function convertDateByGroup(jsDate, groupBy) { + var month = (jsDate.getMonth() + 1).toString() + if (month.length < 2) { + month = '0' + month; + } + var day = jsDate.getDate().toString() + if (day.length < 2) { + day = '0' + day; + } + if (groupBy == 'daily') { + var showDate = jsDate.getFullYear() + '-' + month + '-' + day; + } + else if (groupBy == 'week') { + var showDate = jsDate.getFullYear() + '-' + month + '-' + day; + var nextWeek = new Date(jsDate.setDate(jsDate.getDate() + 6)); + month = (nextWeek.getMonth() + 1).toString() + if (month.length < 2) { + month = '0' + month; + } + day = nextWeek.getDate().toString() + if (day.length < 2) { + day = '0' + day; + } + showDate += " to " + nextWeek.getFullYear() + '-' + month + '-' + day; + } + else if (groupBy == 'month') { + var showDate = jsDate.getFullYear() + '-' + month; + } + else if (groupBy == 'year') { + var showDate = jsDate.getFullYear(); + } + return showDate; + } + + function getWeekNumber(d) { + + d = new Date(Date.UTC(d.getFullYear(), d.getMonth(), d.getDate())); + // Set to nearest Thursday: current date + 4 - current day number + // Make Sunday's day number 7 + d.setUTCDate(d.getUTCDate() + 4 - (d.getUTCDay() || 7)); + // Get first day of year + var yearStart = new Date(Date.UTC(d.getUTCFullYear(), 0, 1)); + // Calculate full weeks to nearest Thursday + var weekNo = Math.ceil((((d - yearStart) / 86400000) + 1) / 7); + // Return array of year and week number + return weekNo + ' (' + d.getUTCFullYear() + ')'; + } + + const handleChange = event => { + console.log(event.value); + setSelected(event.value); + }; + + return + + + + + + + + + Select Period: + + + + + + + + + + + + + + + + + +} + +export default CommunitiesChart \ No newline at end of file diff --git a/javascript/src/components/Users/registeredUsersChart.js b/javascript/src/components/Users/registeredUsersChart.js new file mode 100644 index 0000000..7fef641 --- /dev/null +++ b/javascript/src/components/Users/registeredUsersChart.js @@ -0,0 +1,123 @@ +import { useState, useContext, useEffect } from "react"; +import { Chart } from "react-google-charts"; +import "../../app.css"; +import { client } from '../../utils/api'; +import Container from 'react-bootstrap/Container'; +import Select from 'react-select'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import 'bootstrap/dist/css/bootstrap.min.css'; + +const options = { + year: { + title: "Number of Registered Users per year", + hAxis: { + format: 'Y', + } + }, + month: { + title: "Number of Registered Users per month", + hAxis: { + format: 'YYYY-MM', + } + }, + week: { + title: "Number of Registered Users per week", + hAxis: { + format: '', + } + } +}; + +const options_group_by = [ + { value: 'year', label: 'yearly' }, + { value: 'month', label: 'monthly' }, + { value: 'week', label: 'weekly' }, +]; + +const RegisteredUsersChart = () => { + const [selected, setSelected] = useState(options_group_by[0].value); + const [registeredUsers, setRegisteredUsers] = useState(); + var registeredUsersArray = [["Date", "Registered Users"]]; + const [global_options, setGlobalOptions] = useState(); + + useEffect(() => { + + var hticksArray = []; + var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] + // Get data for the last 4 years + // TODO: change it to last 1 year + client.get("registered_users_groupby/" + selected, { params: { 'interval': 'year', 'count_interval': '8' } }). + then(response => { + + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + var range_date = new Date(element.range_date); + var usersByRange = [range_date, element.count] + registeredUsersArray.push(usersByRange) + + if (selected == "week") { + hticksArray.push({ v: range_date, f: getWeekNumber(range_date) }) + } + else { + hticksArray.push({ v: range_date, f: range_date }) + } + + // Construct element & tooltip + var temp = []; + temp.push(range_date); + temp.push(parseInt(element['count'])); + temp.push('
    ' + + convertDateByGroup(range_date, selected) + + "
    " + 'Registered Users' + + ": " + parseInt(element['count']) + '
    '); + fValues.push(temp); + }); + + console.log(fValues) + setRegisteredUsers(fValues) + + setGlobalOptions({ + title: options[selected]["title"], + backgroundColor: { fill: 'transparent' }, + vAxis: { + //title: vAxisTitle[tab], + format: '0' + }, + hAxis: { + format: options[selected]["hAxis"]["format"], + maxTextLines: 2, + //title: registeredUsersBy[type], // globar variable found at index.ctp + textStyle: { fontSize: 15 }, + ticks: hticksArray, + //showTextEvery: 5 + }, + tooltip: { isHtml: true }, + width: '100%', + height: '350', + bar: { groupWidth: "92%" }, + legend: { position: "none" }, + }) + + }) + + }, [selected]) + + const handleChange = event => { + console.log(event.value); + setSelected(event.value); + }; + + return + Select Period: + + + + + + +} + +export default RegisteredUsersChart \ No newline at end of file diff --git a/javascript/src/components/Users/registeredUsersDataTable.js b/javascript/src/components/Users/registeredUsersDataTable.js new file mode 100644 index 0000000..8a6b689 --- /dev/null +++ b/javascript/src/components/Users/registeredUsersDataTable.js @@ -0,0 +1,111 @@ +import {useState, useContext, useEffect} from "react"; +import "../../app.css"; +import {client} from '../../utils/api'; +import "jquery/dist/jquery.min.js"; +import $ from "jquery"; +import Datatable from "../datatable"; +import dateFormat from 'dateformat'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import DatePicker from "react-datepicker"; +import Dropdown from 'react-dropdown'; +import { ToastContainer, toast } from 'react-toastify'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import 'react-toastify/dist/ReactToastify.css'; +import 'react-dropdown/style.css'; +import "react-datepicker/dist/react-datepicker.css"; + +const dropdownOptions = [ + + { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, + { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, + { value: 'month', label: 'Monthly Basis' }, + { value: 'year', label: 'Yearly Basis' }, +] + +const RegisteredUsersDataTable =() => { + const [usersPerCountryPerPeriod, setusersPerCountryPerPeriod] = useState(); + var usersPerCountryPerPeriodArray = []; + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + useEffect(() => { + client.get("registered_users_country_group_by/month"). + then(response => { + console.log(response); + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + + var range_date = new Date(element.range_date); + + var perPeriod = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Registered Users": element.count, "Registered Users per country": element.countries} + usersPerCountryPerPeriodArray.push(perPeriod) + + }); + setusersPerCountryPerPeriod(usersPerCountryPerPeriodArray) + }) + // + + }, []) + + const handleChange = event => { + console.log(event.value); + usersPerCountryPerPeriodArray = [] + if(!startDate || !endDate) { + toast.error('You have to fill both startDate and endDate.', { + position: "top-center", + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: true, + draggable: true, + progress: undefined, + theme: "dark", + }); + return + } + client.get("registered_users_country_group_by/"+event.value, {params: {'startDate':startDate, 'endDate':endDate}}). + then(response => { + //console.log(response); + response["data"].forEach(element => { + + var range_date = new Date(element.range_date); + + var perPeriod = { "Date": convertDateByGroup(range_date, event.value), "Number of Registered Users": element.count, "Registered Users per country": element.countries} + usersPerCountryPerPeriodArray.push(perPeriod) + + }); + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#table").DataTable().destroy() + setusersPerCountryPerPeriod(usersPerCountryPerPeriodArray) + + + }) + //setSelected(event.value); + }; + + return + + + From: setStartDate(date)}> + To: setEndDate(date)}> + + + + + + + + + +} + +export default RegisteredUsersDataTable \ No newline at end of file diff --git a/javascript/src/components/datatable.js b/javascript/src/components/datatable.js index 116aa47..359475f 100644 --- a/javascript/src/components/datatable.js +++ b/javascript/src/components/datatable.js @@ -2,86 +2,146 @@ import { useState, useContext, useEffect, Component } from "react"; import "jquery/dist/jquery.min.js"; import "datatables.net-dt/js/dataTables.dataTables"; import "datatables.net-dt/css/jquery.dataTables.min.css"; +import "datatables.net-buttons-dt/css/buttons.dataTables.min.css" import "datatables.net-buttons/js/dataTables.buttons.js"; import "datatables.net-buttons/js/buttons.colVis.js"; import "datatables.net-buttons/js/buttons.flash.js"; import "datatables.net-buttons/js/buttons.html5.js"; import "datatables.net-buttons/js/buttons.print.js"; -import $ from "jquery"; +import pdfMake from "pdfmake/build/pdfmake"; +import pdfFonts from "pdfmake/build/vfs_fonts"; +pdfMake.vfs = pdfFonts.pdfMake.vfs; +import $ from "jquery"; +var table; +const title=''; class Datatable extends Component { - - componentDidMount() { + + componentDidUpdate(prevProps, prevState) { + console.log(this.props.items) + if (prevProps.items !== this.props.items) { + this.setState({ + items: this.props.items + }) if (!$.fn.DataTable.isDataTable("#myTable")) { - $(document).ready(function () { - setTimeout(function () { - $("#table").DataTable({ - pagingType: "full_numbers", - pageLength: 20, - processing: true, - dom: "Bfrtip", - select: { - style: "single", - }, - + setTimeout(function () { + + table = $("#table").DataTable({ + pagingType: "full_numbers", + pageLength: 10, + //processing: true, + dom: "Bfrtip", + // select: { + // style: "single", + // }, + + buttons: [ + { + extend: 'collection', + text: 'Export', buttons: [ { - extend: "pageLength", - className: "btn btn-secondary bg-secondary", + extend:'copy', + exportOptions: { + stripHtml: false, + format: { + body: function (data, row, column, node) { + if (column === 3) + return data.replace(/
  • /g, "").replace(/<\/li>/g, ",").replace(/
      /g, "").replace(/<\/ul>/g, "") + else + return data.replace(/(<([^>]+)>)/ig, ""); + } + } + } }, { - extend: "copy", - className: "btn btn-secondary bg-secondary", + extend: 'excel', + title: title, + exportOptions: { + stripHtml: false, + format: { + body: function (data, row, column, node) { + if (column === 3) + return data.replace("
    • ","").replace(/
    • /g, ", ").replace(/<\/li>/g, "").replace(/
        /g, "").replace(/<\/ul>/g, "") + else + return data.replace(/(<([^>]+)>)/ig, ""); + } + } + } }, { - extend: "csv", - className: "btn btn-secondary bg-secondary", + extend: 'csv', + title: title, + exportOptions: { + stripHtml: false, + format: { + body: function (data, row, column, node) { + if (column === 3) + return data.replace("
      • ","").replace(/
      • /g, ", ").replace(/<\/li>/g, "").replace(/
          /g, "").replace(/<\/ul>/g, "") + else + return data.replace(/(<([^>]+)>)/ig, ""); + } + } + } }, { - extend: "print", - customize: function (win) { - $(win.document.body).css("font-size", "10pt"); - $(win.document.body) - .find("table") - .addClass("compact") - .css("font-size", "inherit"); - }, - className: "btn btn-secondary bg-secondary", + extend: 'pdfHtml5', + title: title, + exportOptions: { + stripHtml: false, + format: { + body: function (data, row, column, node) { + if (column === 3) + return data.replace(/
        • /g, "• ").replace(/<\/li>/g, "\n").replace(/
            /g, "").replace(/<\/ul>/g, "") + else + return data.replace(/(<([^>]+)>)/ig, ""); + } + } + } }, - ], - - fnRowCallback: function ( - nRow, - aData, - iDisplayIndex, - iDisplayIndexFull - ) { - var index = iDisplayIndexFull + 1; - $("td:first", nRow).html(index); - return nRow; - }, - - lengthMenu: [ - [10, 20, 30, 50, -1], - [10, 20, 30, 50, "All"], - ], - columnDefs: [ { - targets: 0, - render: function (data, type, row, meta) { - return type === "export" ? meta.row + 1 : data; - }, - }, - ], - }); - }, 1000); + extend: 'print', + title: title + } + ] + } + ], + "autoWidth": false, + // fnRowCallback: function ( + // nRow, + // aData, + // iDisplayIndex, + // iDisplayIndexFull + // ) { + // var index = iDisplayIndexFull + 1; + // $("td:first", nRow).html(index); + // return nRow; + // }, + + // lengthMenu: [ + // [10, 20, 30, 50, -1], + // [10, 20, 30, 50, "All"], + // ], + // columnDefs: [ + // { + // targets: 0, + // render: function (data, type, row, meta) { + // return type === "export" ? meta.row + 1 : data; + // }, + // }, + // ], }); + }, 1000) + } } } + componentDidMount() { + + } listNames = (names, key) => { - if (key == "Names" && typeof names === 'string') { + if (this.props.columnSep && key == this.props.columnSep && typeof names === 'string') { return (
              { @@ -125,6 +185,7 @@ class Datatable extends Component { // } catch (e) { // //alert(e.message); // } + }; showColumns = (items) => { @@ -146,7 +207,7 @@ class Datatable extends Component { } } render() { - //console.log(items) + return (
              diff --git a/javascript/src/components/listCommunities.js b/javascript/src/components/listCommunities.js new file mode 100644 index 0000000..747d6c7 --- /dev/null +++ b/javascript/src/components/listCommunities.js @@ -0,0 +1,22 @@ +import { useState, useContext, useEffect, Component } from "react"; +import ReactTooltip from "react-tooltip"; + +const ListCommunities = ({communitiesList}) => { + useEffect(() => { + ReactTooltip.rebuild(); + },[communitiesList]) + return
                + + { + + communitiesList.map((cou, index) => ( +
              • {cou["name"]}
              • + + )) + } + +
              + +} + +export default ListCommunities diff --git a/javascript/src/index.js b/javascript/src/index.js index 2bd8401..06d46f5 100644 --- a/javascript/src/index.js +++ b/javascript/src/index.js @@ -4,13 +4,19 @@ import App from './App'; import 'react-toastify/dist/ReactToastify.css'; import {ToastContainer} from 'react-toastify'; import {UserProvider} from "./Context/UserProvider"; -import CommunitiesDataTable from './Pages/Metrics/communitiesDataTable'; -import CommunitiesChart from './Pages/Metrics/communitiesChart'; + +import {BrowserRouter as Router, Route, Link, Routes} from "react-router-dom"; +import Communities from './Pages/Communities'; const container = document.getElementById('root') const root = ReactDOM.createRoot(container) root.render( +
              + +
              +) + // // // @@ -22,7 +28,4 @@ root.render( // pauseOnHover // /> // -// - - -) \ No newline at end of file +// \ No newline at end of file diff --git a/javascript/src/public/index.html b/javascript/src/public/index.html index 10b7a22..05f3a03 100644 --- a/javascript/src/public/index.html +++ b/javascript/src/public/index.html @@ -14,7 +14,7 @@ font-family: 'Roboto', sans-serif; } - Rciam Metrics + Rciam Metrics 1 From 84a5f601946ef50409160e9f14bb7ca2d41eeefc Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 12 Jan 2023 09:32:53 +0200 Subject: [PATCH 003/331] Add migrations script, make configuration file for database credentials, add new Pages --- app/database.py | 6 +- app/main.py | 372 +- app/utils/__init__.py | 0 app/utils/configParser.py | 29 + config.py | 5 + data_migrations/CHANGELOG.md | 19 + .../Controller/countryStatisticsController.py | 23 + ...ountryStatisticsHashedUserIdsController.py | 23 + .../identityProvidersMapController.py | 13 + .../serviceProvidersMapController.py | 13 + .../statisticsCountryHashedController.py | 73 + data_migrations/Controller/usersController.py | 27 + .../Controller/voMembershipsController.py | 80 + data_migrations/Controller/vosController.py | 23 + data_migrations/LICENSE | 201 + data_migrations/Logger/log.py | 29 + data_migrations/Model/countries.py | 27 + data_migrations/Model/countryStatistics.py | 34 + .../Model/countryStatisticsHashedUserId.py | 37 + data_migrations/Model/identityProvidersMap.py | 24 + .../Model/identityProvidersMapFromProxy.py | 20 + data_migrations/Model/ipStatistics.py | 40 + data_migrations/Model/pgConnector.py | 117 + data_migrations/Model/serviceProvidersMap.py | 24 + .../Model/serviceProvidersMapFromProxy.py | 20 + .../Model/statisticsCountryHashed.py | 36 + .../statisticsCountryHashedFromComanage.py | 30 + .../Model/userCountryStatistics.py | 33 + data_migrations/Model/users.py | 40 + data_migrations/Model/usersFromComanage.py | 35 + data_migrations/Model/voMemberships.py | 48 + .../Model/voMembershipsFromComanage.py | 57 + data_migrations/Model/vos.py | 43 + data_migrations/Model/vosFromComanage.py | 39 + data_migrations/Model/vosInfo.py | 28 + data_migrations/README.md | 29 + data_migrations/Service/ipDatabase.py | 18 + data_migrations/Utils/configParser.py | 32 + data_migrations/Utils/install.py | 40 + .../config-templates/pgsql_tables.sql | 142 + data_migrations/config.py | 59 + data_migrations/config.py.example | 35 + data_migrations/databases/empty | 0 data_migrations/ipToCountry.py | 59 + data_migrations/log/empty | 0 .../log/metricsMigrate.log.2022-11-04 | 2330 ++ .../log/metricsMigrate.log.2022-11-07 | 2064 ++ .../log/metricsMigrate.log.2022-11-08 | 191 + .../log/metricsMigrate.log.2022-11-09 | 324 + .../log/metricsMigrate.log.2022-11-28 | 1497 + .../log/metricsMigrate.log.2022-11-29 | 29840 ++++++++++++++++ .../log/metricsMigrate.log.2022-11-30 | 4714 +++ .../log/metricsMigrate.log.2022-12-01 | 127 + data_migrations/migrateData.py | 88 + javascript/src/Pages/Users/index.js | 23 + .../components/Communities/listCommunities.js | 22 + .../components/Users/registeredUsersMap.js | 64 + .../components/Users/registeredUsersTiles.js | 95 + 58 files changed, 43390 insertions(+), 71 deletions(-) create mode 100644 app/utils/__init__.py create mode 100644 app/utils/configParser.py create mode 100644 config.py create mode 100644 data_migrations/CHANGELOG.md create mode 100644 data_migrations/Controller/countryStatisticsController.py create mode 100644 data_migrations/Controller/countryStatisticsHashedUserIdsController.py create mode 100644 data_migrations/Controller/identityProvidersMapController.py create mode 100644 data_migrations/Controller/serviceProvidersMapController.py create mode 100644 data_migrations/Controller/statisticsCountryHashedController.py create mode 100644 data_migrations/Controller/usersController.py create mode 100644 data_migrations/Controller/voMembershipsController.py create mode 100644 data_migrations/Controller/vosController.py create mode 100644 data_migrations/LICENSE create mode 100644 data_migrations/Logger/log.py create mode 100644 data_migrations/Model/countries.py create mode 100644 data_migrations/Model/countryStatistics.py create mode 100644 data_migrations/Model/countryStatisticsHashedUserId.py create mode 100644 data_migrations/Model/identityProvidersMap.py create mode 100644 data_migrations/Model/identityProvidersMapFromProxy.py create mode 100644 data_migrations/Model/ipStatistics.py create mode 100644 data_migrations/Model/pgConnector.py create mode 100644 data_migrations/Model/serviceProvidersMap.py create mode 100644 data_migrations/Model/serviceProvidersMapFromProxy.py create mode 100644 data_migrations/Model/statisticsCountryHashed.py create mode 100644 data_migrations/Model/statisticsCountryHashedFromComanage.py create mode 100644 data_migrations/Model/userCountryStatistics.py create mode 100644 data_migrations/Model/users.py create mode 100644 data_migrations/Model/usersFromComanage.py create mode 100644 data_migrations/Model/voMemberships.py create mode 100644 data_migrations/Model/voMembershipsFromComanage.py create mode 100644 data_migrations/Model/vos.py create mode 100644 data_migrations/Model/vosFromComanage.py create mode 100644 data_migrations/Model/vosInfo.py create mode 100644 data_migrations/README.md create mode 100644 data_migrations/Service/ipDatabase.py create mode 100644 data_migrations/Utils/configParser.py create mode 100644 data_migrations/Utils/install.py create mode 100644 data_migrations/config-templates/pgsql_tables.sql create mode 100644 data_migrations/config.py create mode 100644 data_migrations/config.py.example create mode 100644 data_migrations/databases/empty create mode 100644 data_migrations/ipToCountry.py create mode 100644 data_migrations/log/empty create mode 100644 data_migrations/log/metricsMigrate.log.2022-11-04 create mode 100644 data_migrations/log/metricsMigrate.log.2022-11-07 create mode 100644 data_migrations/log/metricsMigrate.log.2022-11-08 create mode 100644 data_migrations/log/metricsMigrate.log.2022-11-09 create mode 100644 data_migrations/log/metricsMigrate.log.2022-11-28 create mode 100644 data_migrations/log/metricsMigrate.log.2022-11-29 create mode 100644 data_migrations/log/metricsMigrate.log.2022-11-30 create mode 100644 data_migrations/log/metricsMigrate.log.2022-12-01 create mode 100644 data_migrations/migrateData.py create mode 100644 javascript/src/Pages/Users/index.js create mode 100644 javascript/src/components/Communities/listCommunities.js create mode 100644 javascript/src/components/Users/registeredUsersMap.js create mode 100644 javascript/src/components/Users/registeredUsersTiles.js diff --git a/app/database.py b/app/database.py index d9b5955..a0dbf5c 100644 --- a/app/database.py +++ b/app/database.py @@ -1,9 +1,11 @@ import os - +import sys +from app.utils import configParser from sqlmodel import create_engine, SQLModel, Session # Initialize -url = os.getenv('DATABASE_URL') +# VOSINFOTABLE = configParser.getConfig('database_parameters')['database_url'] +url = configParser.getConfig('database_parameters')['database_url'] engine = create_engine(url) def get_session(): diff --git a/app/main.py b/app/main.py index 7e3d66d..ece5492 100644 --- a/app/main.py +++ b/app/main.py @@ -18,9 +18,12 @@ app = FastAPI(debug=True) -MembersReadWithCommunityInfo.update_forward_refs(Community_InfoRead=Community_InfoRead) -CommunityReadwithInfo.update_forward_refs(Community_InfoRead=Community_InfoRead) -Statistics_Country_HashedwithInfo.update_forward_refs(IdentityprovidersmapRead=IdentityprovidersmapRead, ServiceprovidersmapRead=ServiceprovidersmapRead, Country_CodesRead=Country_CodesRead) +MembersReadWithCommunityInfo.update_forward_refs( + Community_InfoRead=Community_InfoRead) +CommunityReadwithInfo.update_forward_refs( + Community_InfoRead=Community_InfoRead) +Statistics_Country_HashedwithInfo.update_forward_refs( + IdentityprovidersmapRead=IdentityprovidersmapRead, ServiceprovidersmapRead=ServiceprovidersmapRead, Country_CodesRead=Country_CodesRead) origins = ["*"] app.add_middleware( @@ -31,34 +34,36 @@ allow_headers=["*"], ) + @app.get("/communities/", response_model=List[CommunityReadwithInfo]) def read_communities( - *, - session: Session = Depends(get_session), - offset: int = 0 - ): - + *, + session: Session = Depends(get_session), + offset: int = 0 +): + communities = session.exec(select(Community).offset(offset)).all() return communities + @app.get("/communities_groupby/{group_by}") def read_communities( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - interval: Union[str, None] = None, - count_interval: int = None, - startDate: str = None, - endDate: str = None, - ): - interval_subquery="" + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + interval: Union[str, None] = None, + count_interval: int = None, + startDate: str = None, + endDate: str = None, +): + interval_subquery = "" if group_by: if interval and count_interval: interval_subquery = """WHERE created > - date_trunc('{0}', CURRENT_DATE) - INTERVAL '{1} {2}'""".format(group_by,count_interval, interval) + date_trunc('{0}', CURRENT_DATE) - INTERVAL '{1} {2}'""".format(group_by, count_interval, interval) if startDate and endDate: - interval_subquery=""" + interval_subquery = """ WHERE created BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) communities = session.exec(""" @@ -74,32 +79,35 @@ def read_communities( """.format(group_by, interval_subquery)).all() return communities + @app.get("/communities/{community_id}", response_model=CommunityReadwithInfo) def read_community(*, session: Session = Depends(get_session), community_id: int): community = session.get(Community, community_id) - #statement = select(Community).options(selectinload(Community.community_info)) - #result = session.exec(statement) - #community = result.one() + # statement = select(Community).options(selectinload(Community.community_info)) + # result = session.exec(statement) + # community = result.one() if not community: raise HTTPException(status_code=404, detail="Community not found") return community + @app.get("/communities_info/", response_model=List[Community_InfoRead]) def read_communities_info( - *, - session: Session = Depends(get_session), - offset: int = 0 - ): + *, + session: Session = Depends(get_session), + offset: int = 0 +): communities = session.exec(select(Community_Info).offset(offset)).all() return communities + @app.get("/members/", response_model=List[MembersReadWithCommunityInfo]) def read_members( - *, - session: Session = Depends(get_session), - offset: int = 0, - # community_id: Union[None, int] = None - ): + *, + session: Session = Depends(get_session), + offset: int = 0, + # community_id: Union[None, int] = None +): # if not community_id: # members = session.exec(select(Members).offset(offset)).all() # else: @@ -109,14 +117,14 @@ def read_members( @app.get("/members_bystatus/") def read_members_bystatus( - *, - session: Session = Depends(get_session), - offset: int = 0, - community_id: Union[None, int] = None - ): + *, + session: Session = Depends(get_session), + offset: int = 0, + community_id: Union[None, int] = None +): if not community_id: members = session.exec(select(Members).offset(offset)).all() - else: + else: # members = session.exec(select(Members).offset(offset)).all() members = session.exec(""" SELECT count(*) as count, community_id, status FROM members @@ -126,54 +134,60 @@ def read_members_bystatus( # members = session.exec(""" SELECT community_id FROM members """) return members + @app.get("/services/", response_model=List[Serviceprovidersmap]) def read_services( - *, + *, session: Session = Depends(get_session), offset: int = 0 - ): +): services = session.exec(select(Serviceprovidersmap).offset(offset)).all() return services + @app.get("/idps/", response_model=List[Identityprovidersmap]) def read_services( - *, + *, session: Session = Depends(get_session), offset: int = 0 - ): +): idps = session.exec(select(Identityprovidersmap).offset(offset)).all() return idps + @app.get("/countries/", response_model=List[Country_CodesRead]) def read_countries( - *, + *, session: Session = Depends(get_session), offset: int = 0 - ): +): countries = session.exec(select(Country_Codes).offset(offset)).all() return countries + @app.get("/country_stats/", response_model=List[Statistics_Country_HashedwithInfo]) def read_country_stats( - *, + *, session: Session = Depends(get_session), offset: int = 0 - ): +): - stats = session.exec(select(Statistics_Country_Hashed).offset(offset)).all() + stats = session.exec( + select(Statistics_Country_Hashed).offset(offset)).all() return stats + @app.get("/country_stats_by_vo/{community_id}") def read_country_stats_by_vo( - *, - session: Session = Depends(get_session), - offset: int = 0, - community_id: Union[None, int] = None - ): - stats =[] + *, + session: Session = Depends(get_session), + offset: int = 0, + community_id: Union[None, int] = None +): + stats = [] stats_country = session.exec(""" WITH users_countries AS ( SELECT statistics_country_hashed.hasheduserid as userid, status, country, countrycode, count(*) as sum_count @@ -230,34 +244,76 @@ def read_country_stats_by_vo( # Users Endpoints -# +# @app.get("/users/", response_model=List[UsersRead]) def read_users( - *, + *, session: Session = Depends(get_session), offset: int = 0 - ): +): users = session.exec(select(Users).offset(offset)).all() return users + +@app.get("/registered_users_country") +def read_users_country( + *, + session: Session = Depends(get_session), + offset: int = 0, + startDate: str = None, + endDate: str = None, +): + interval_subquery = "" + if startDate and endDate: + interval_subquery = """ + WHERE users.created BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + users_countries = session.exec( + """WITH users_countries AS ( + SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count + FROM statistics_country_hashed + JOIN country_codes ON countryid=country_codes.id + GROUP BY userid, country, countrycode + ), + max_count_users_countries AS ( + SELECT DISTINCT userid, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid) as row_number + FROM users_countries + GROUP BY userid + ) + SELECT country,countrycode, count(*) as sum + FROM users_countries + JOIN ( + SELECT userid, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + JOIN users ON users.hasheduserid=users_countries.userid AND status='A' + {0} + GROUP BY country,countrycode + ORDER BY country,countrycode + """.format(interval_subquery)).all() + return users_countries + + @app.get("/registered_users_country_group_by/{group_by}") def read_users_country_groupby( - *, + *, session: Session = Depends(get_session), offset: int = 0, group_by: str, startDate: str = None, endDate: str = None, - ): +): if group_by: - interval_subquery="" + interval_subquery = "" if startDate and endDate: - interval_subquery=""" + interval_subquery = """ WHERE users.created BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) users = session.exec( - """WITH users_countries AS ( + """WITH users_countries AS ( SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count FROM statistics_country_hashed JOIN country_codes ON countryid=country_codes.id @@ -268,10 +324,10 @@ def read_users_country_groupby( FROM users_countries GROUP BY userid ) - SELECT range_date, STRING_AGG(country, '|| ') as countries, sum(sum) as count + SELECT range_date, min(created_min_date) as min_date, STRING_AGG(country, '|| ') as countries, sum(sum) as count FROM ( - SELECT date_trunc('{0}', users.created) as range_date, CONCAT(country,': ',count(*)) as country, count(*) as sum + SELECT date_trunc('{0}', users.created) as range_date, CONCAT(country,': ',count(*)) as country, min(users.created) as created_min_date, count(*) as sum FROM users_countries JOIN ( SELECT userid, max_sum_count, max(row_number) @@ -287,9 +343,10 @@ def read_users_country_groupby( GROUP BY range_date""".format(group_by, interval_subquery)).all() return users + @app.get("/registered_users_groupby/{group_by}") def read_users_groupby( - *, + *, session: Session = Depends(get_session), offset: int = 0, group_by: str, @@ -297,15 +354,15 @@ def read_users_groupby( count_interval: int = None, startDate: str = None, endDate: str = None, - ): +): - interval_subquery="" + interval_subquery = "" if group_by: if interval and count_interval: interval_subquery = """AND created > - date_trunc('month', CURRENT_DATE) - INTERVAL '{0} {1}'""".format(count_interval, interval) + date_trunc('{0}', CURRENT_DATE) - INTERVAL '{1} {2}'""".format(group_by, count_interval, interval) if startDate and endDate: - interval_subquery=""" + interval_subquery = """ AND created BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) users = session.exec(""" @@ -317,4 +374,181 @@ def read_users_groupby( group by range_date ORDER BY range_date ASC """.format(group_by, interval_subquery)).all() - return users \ No newline at end of file + return users + + +@app.get("/registered_users_countby") +def read_users_countby( + *, + session: Session = Depends(get_session), + offset: int = 0, + interval: Union[str, None] = None, + count_interval: int = None, +): + + interval_subquery = "" + if interval and count_interval: + interval_subquery = """AND created > + CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) + + users = session.exec(""" + select count(*) as count + from users + WHERE status = 'A' + {0}""".format(interval_subquery)).all() + return users + +# Dashboard Page + + +@app.get("/logins_countby") +def read_logins_countby( + *, + session: Session = Depends(get_session), + offset: int = 0, + interval: Union[str, None] = None, + count_interval: int = None, +): + interval_subquery = "" + if interval and count_interval: + interval_subquery = """WHERE date > + CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) + + logins = session.exec(""" + select sum(count) as count + from statistics_country_hashed + {0}""".format(interval_subquery)).all() + return logins + + +@app.get("/logins_groupby/{group_by}") +def read_logins_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + idp: str = None, + sp: str = None +): + interval_subquery = "" + if idp != None: + interval_subquery = """ + JOIN identityprovidersmap ON sourceidpid=identityprovidersmap.id + WHERE entityid = '{0}' + """.format(idp) + elif sp != None: + interval_subquery = """ + JOIN serviceprovidersmap ON serviceid=serviceprovidersmap.id + WHERE identifier = '{0}' + """.format(sp) + + logins = session.exec(""" + select sum(count) as count, date_trunc('{0}', date) as date + from statistics_country_hashed + {1} + GROUP BY date_trunc('{0}', date) + ORDER BY date_trunc('{0}', date) ASC + """.format(group_by, interval_subquery)).all() + return logins + + +@app.get("/logins_per_idp/") +def read_logins_per_idp( + *, + session: Session = Depends(get_session), + offset: int = 0, + idp: str = None, + startDate: str = None, + endDate: str = None, +): + interval_subquery = "" + if idp == None: + if startDate and endDate: + interval_subquery = """ + WHERE date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + logins = session.exec(""" + select name, entityid, sourceidpid, sum(count) as count + from statistics_country_hashed + join identityprovidersmap ON identityprovidersmap.id=sourceidpid + {0} + GROUP BY sourceidpid, name, entityid + ORDER BY count DESC + """.format(interval_subquery)).all() + return logins + + +@app.get("/logins_per_sp/") +def read_logins_per_sp( + *, + session: Session = Depends(get_session), + offset: int = 0, + idp: str = None, + startDate: str = None, + endDate: str = None, +): + interval_subquery = "" + idp_subquery_join = "" + if idp: + idp_subquery_join = """ + JOIN identityprovidersmap ON identityprovidersmap.id=sourceidpid + AND entityid = '{0}' + """.format(idp) + + if startDate and endDate: + interval_subquery = """ + WHERE date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + logins = session.exec(""" + select serviceprovidersmap.name, identifier, serviceid, sum(count) as count + from statistics_country_hashed + join serviceprovidersmap ON serviceprovidersmap.id=serviceid + {0} + {1} + GROUP BY serviceid, serviceprovidersmap.name, identifier + ORDER BY count DESC + """.format(idp_subquery_join, interval_subquery)).all() + return logins + + +@app.get("/logins_per_country/") +def read_logins_per_country( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: Union[str, None] = None, + startDate: str = None, + endDate: str = None, +): + interval_subquery = "" + if group_by: + if startDate and endDate: + interval_subquery = """ + WHERE date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + + logins = session.exec(""" + SELECT range_date, sum(count_country) as count, min(min_login_date) as min_date, STRING_AGG(country, '|| ') as countries + FROM ( + SELECT date_trunc('{0}', date) as range_date, min(date) as min_login_date, sum(count) as count_country, CONCAT(country,': ',sum(count)) as country + from statistics_country_hashed + JOIN country_codes ON countryid=country_codes.id + {1} + GROUP BY range_date, country + ORDER BY range_date,country ASC + ) country_logins + GROUP BY range_date + """.format(group_by, interval_subquery)).all() + else: + if startDate and endDate: + interval_subquery = """ + WHERE date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + logins = session.exec(""" + SELECT country, countrycode,sum(count) as sum + from statistics_country_hashed + JOIN country_codes ON countryid=country_codes.id + {0} + GROUP BY country,countrycode + """.format(interval_subquery)).all() + return logins diff --git a/app/utils/__init__.py b/app/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/utils/configParser.py b/app/utils/configParser.py new file mode 100644 index 0000000..2df7d19 --- /dev/null +++ b/app/utils/configParser.py @@ -0,0 +1,29 @@ +import os, sys +import pwd +from configparser import RawConfigParser + +CONFIG_FILE = 'config.py' + +def getConfig(section='source_database'): + + # create a parser + parser = RawConfigParser() + print(sys.argv[0]) + print(os.path.dirname(os.path.abspath(sys.argv[0]))) + # read config file + parser.read(os.path.join('/app',CONFIG_FILE)) + + # get section, default to source_database + config = {} + + if parser.has_section(section): + + params = parser.items(section) + for param in params: + config[param[0]] = param[1] + + else: + raise Exception( + 'Section {0} not found in the {1} file'.format(section, CONFIG_FILE)) + + return config diff --git a/config.py b/config.py new file mode 100644 index 0000000..3735304 --- /dev/null +++ b/config.py @@ -0,0 +1,5 @@ +[database_parameters] +database_url=postgresql+psycopg2://rciam:secret@db/metrics_dev +db=metrics_dev +db_admin=rciam +db_password=secret \ No newline at end of file diff --git a/data_migrations/CHANGELOG.md b/data_migrations/CHANGELOG.md new file mode 100644 index 0000000..cadae94 --- /dev/null +++ b/data_migrations/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.0.1] - 2021-08-31 + +### Fixed + +- Bypass IP addresses that don't exist at database + +## [v1.0.0] - 2021-07-12 + +### Added + +- A Python-based tool for mapping ips to countries and store the respective login information to a DB. + diff --git a/data_migrations/Controller/countryStatisticsController.py b/data_migrations/Controller/countryStatisticsController.py new file mode 100644 index 0000000..2de895c --- /dev/null +++ b/data_migrations/Controller/countryStatisticsController.py @@ -0,0 +1,23 @@ +from datetime import date, timedelta +from Model.ipStatistics import ipStatistics +from Model.countryStatistics import countryStatistics +from datetime import datetime, timedelta +class countryStatisticsController: + @classmethod + def getDataNotMapped(self): + dateFrom = countryStatistics.getLastDate() + + # we dont have any country statistics saved + if dateFrom[0][0] == None: + result = ipStatistics.getAllIpStatistics() + else: + dayAfter = dateFrom[0][0] + timedelta(days=1) + dayFrom = dayAfter.strftime('%Y-%m-%d 00:00:00') + + yesterday = date.today() - timedelta(days=1) + dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') + + result = ipStatistics.getIpStatisticsByDate(dayFrom, dateTo) + return result + + diff --git a/data_migrations/Controller/countryStatisticsHashedUserIdsController.py b/data_migrations/Controller/countryStatisticsHashedUserIdsController.py new file mode 100644 index 0000000..1c46258 --- /dev/null +++ b/data_migrations/Controller/countryStatisticsHashedUserIdsController.py @@ -0,0 +1,23 @@ +from datetime import date, timedelta +from Model.ipStatistics import ipStatistics +from Model.countryStatisticsHashedUserId import countryStatisticsHashedUserId +from datetime import datetime, timedelta +class countryStatisticsHashedUserIdsController: + @classmethod + def getDataNotMapped(self): + dateFrom = countryStatisticsHashedUserId.getLastDate() + + # we dont have any country statistics saved + if dateFrom[0][0] == None: + result = ipStatistics.getAllIpStatistics() + else: + dayAfter = dateFrom[0][0] + timedelta(days=1) + dayFrom = dayAfter.strftime('%Y-%m-%d 00:00:00') + + yesterday = date.today() - timedelta(days=1) + dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') + + result = ipStatistics.getIpStatisticsByDate(dayFrom, dateTo) + return result + + diff --git a/data_migrations/Controller/identityProvidersMapController.py b/data_migrations/Controller/identityProvidersMapController.py new file mode 100644 index 0000000..3e5fc09 --- /dev/null +++ b/data_migrations/Controller/identityProvidersMapController.py @@ -0,0 +1,13 @@ +from datetime import date, timedelta +from Model.identityProvidersMapFromProxy import identityProvidersMapFromProxy +from Model.identityProvidersMap import identityProvidersMap +from datetime import datetime, timedelta +class identityProvidersMapController: + + @classmethod + def getAllData(self): + + result = identityProvidersMapFromProxy.getAllIdps() + return result + + diff --git a/data_migrations/Controller/serviceProvidersMapController.py b/data_migrations/Controller/serviceProvidersMapController.py new file mode 100644 index 0000000..7bc72c4 --- /dev/null +++ b/data_migrations/Controller/serviceProvidersMapController.py @@ -0,0 +1,13 @@ +from datetime import date, timedelta +from Model.serviceProvidersMapFromProxy import serviceProvidersMapFromProxy +from Model.serviceProvidersMap import serviceProvidersMap +from datetime import datetime, timedelta +class serviceProvidersMapController: + + @classmethod + def getAllData(self): + + result = serviceProvidersMapFromProxy.getAllSps() + return result + + diff --git a/data_migrations/Controller/statisticsCountryHashedController.py b/data_migrations/Controller/statisticsCountryHashedController.py new file mode 100644 index 0000000..ec43dd7 --- /dev/null +++ b/data_migrations/Controller/statisticsCountryHashedController.py @@ -0,0 +1,73 @@ +from datetime import date, timedelta +from multiprocessing.spawn import prepare +from Model.countries import countries +from Model.identityProvidersMap import identityProvidersMap +from Model.serviceProvidersMap import serviceProvidersMap +from Model.statisticsCountryHashed import statisticsCountryHashed +from Model.statisticsCountryHashedFromComanage import statisticsCountryHashedFromComanage +from datetime import datetime, timedelta +from Logger import log + +class statisticsCountryHashedController: + logger = log.get_logger("statisticsCountryHashedController") + + @classmethod + def saveAllData(self): + + dateFrom = statisticsCountryHashed.getLastDate() + today = date.today() + dateTo = today.strftime('%Y-%m-%d 23:59:59') + # we dont have any country statistics saved + if dateFrom[0][0] == None: + result = statisticsCountryHashedFromComanage.getStatsByDate(None, dateTo) + else: + dayAfter = dateFrom[0][0] + timedelta(days=1) + dayFrom = dayAfter.strftime('%Y-%m-%d 00:00:00') + + yesterday = date.today() - timedelta(days=1) + dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') + + result = statisticsCountryHashedFromComanage.getStatsByDate(dayFrom, dateTo) + statisticsCountryHashedController.prepareData(result) + return result + + @classmethod + def prepareData(self, data): + mappedItems = 0 + for item in data: + ## find identityprovider id + result = identityProvidersMap.getIdpIdByIdentifier(item.sourceidp) + if len(result) > 0: + #self.logger.info(result[0][0]) + idpId = result[0][0] + else: + self.logger.error("Identity provider identifier not found") + continue + + ## find serviceprovider id + result = serviceProvidersMap.getSpIdByIdentifier(item.service) + if len(result) > 0: + #self.logger.info(result[0][0]) + spId = result[0][0] + else: + self.logger.error("Service entityid {0} not found".format(item.service)) + continue + ## save country if not exists and get id + country = countries(item.countrycode, item.country) + countries.save(country) + result = countries.getIdByCountryCode(item.countrycode) + if len(result) > 0: + #self.logger.info(result[0][0]) + countryId = result[0][0] + else: + self.logger.error("Country not found") + continue + self.logger.info("{0} ".format(item.date)) + statsCountry = statisticsCountryHashed(item.date, item.hasheduserid, idpId, spId, countryId, item.count) + statisticsCountryHashed.save(statsCountry) + mappedItems += 1 + self.logger.info("{0} Country Stats created".format(mappedItems)) + + + + diff --git a/data_migrations/Controller/usersController.py b/data_migrations/Controller/usersController.py new file mode 100644 index 0000000..924771d --- /dev/null +++ b/data_migrations/Controller/usersController.py @@ -0,0 +1,27 @@ +from ast import Or +from datetime import date, timedelta +from Model.users import users +from Model.usersFromComanage import usersFromComanage +from Model.vos import vos +from datetime import datetime, timedelta +from Logger import log + +class usersController: + logger = log.get_logger("usersController") + + @classmethod + def saveUsers(self): + + usersList = [] + # get memberships with active status + usersComanage = usersFromComanage.getAllUsers() + # save memberships with active status + for item in usersComanage: + usersItem = users(item.hasheduserid, item.created, item.status) + usersList.append(usersItem) + # save data to tables if any + if usersList: + users.saveAll(usersList) + + + diff --git a/data_migrations/Controller/voMembershipsController.py b/data_migrations/Controller/voMembershipsController.py new file mode 100644 index 0000000..e41e4c9 --- /dev/null +++ b/data_migrations/Controller/voMembershipsController.py @@ -0,0 +1,80 @@ +from ast import Or +from datetime import date, timedelta +from Model.voMemberships import voMemberships +from Model.voMembershipsFromComanage import voMembershipsFromComanage +from Model.vos import vos +from datetime import datetime, timedelta +from Logger import log + +class voMembershipsController: + logger = log.get_logger("voMembershipsController") + @classmethod + def getVoId(self, voName, source): + result = vos.getVoIdFromVoName(voName, source) + return result + + @classmethod + def getDataNotMapped(self): + voMemberships.truncate() + + voMembershipsList = [] + # dateFrom = vos.getLastDate() + + # we dont have any vos saved + # if dateFrom[0][0] == None: + + # get memberships with active status + activeMemberships = voMembershipsFromComanage.getAllVoMembershipsByStatus('A') + # save memberships with active status + for item in activeMemberships: + result = voMembershipsController.getVoId(item.voName, "egi") + + if len(result) > 0: + voId = result[0][0] + self.logger.info("Vo name {0} with id {1}".format(item.voName, result[0][0])) + + voMembershipsItem = voMemberships(voId, item.hasheduserid, item.status) + voMembershipsList.append(voMembershipsItem) + # save data to tables if any + if voMembershipsList: + + voMemberships.saveAll(voMembershipsList) + + # get memberships with grace period + # save only if there isnt any existing membership or status membership is not Active/ Grace Period + gracePeriodVoMembershipsList = [] + graceperiodMemberships = voMembershipsFromComanage.getAllVoMembershipsByStatus('GP') + for item in graceperiodMemberships: + result = voMembershipsController.getVoId(item.voName, "egi") + if len(result) > 0: + voId = result[0][0] + self.logger.info("Vo name {0} with id {1}".format(item.voName, result[0][0])) + #check if already there is a membership with active status saved + statusMembership = voMemberships.getMembershipStatus(voId, item.hasheduserid) + if len(statusMembership) > 0 and (statusMembership[0][0]=='A' or statusMembership[0][0]=='GP'): + continue + voMembershipsItem = voMemberships(voId, item.hasheduserid, item.status) + gracePeriodVoMembershipsList.append(voMembershipsItem) + if len(gracePeriodVoMembershipsList)>0: + voMemberships.saveAll(gracePeriodVoMembershipsList) + + # get memberships with other statuses + # save only if there isnt any existing membership + otherStatusVoMembershipsList = [] + otherStatusMemberships = voMembershipsFromComanage.getAllVoMembershipsByStatus('Other') + for item in otherStatusMemberships: + result = voMembershipsController.getVoId(item.voName, "egi") + if len(result) > 0: + voId = result[0][0] + self.logger.info("Vo name {0} with id {1}".format(item.voName, result[0][0])) + #check if already there is a membership with active status saved + statusMembership = voMemberships.getMembershipStatus(voId, item.hasheduserid) + if len(statusMembership) > 0: + continue + voMembershipsItem = voMemberships(voId, item.hasheduserid, item.status) + otherStatusVoMembershipsList.append(voMembershipsItem) + if len(otherStatusVoMembershipsList)>0: + voMemberships.saveAll(otherStatusVoMembershipsList) + return result + + diff --git a/data_migrations/Controller/vosController.py b/data_migrations/Controller/vosController.py new file mode 100644 index 0000000..fab6aa0 --- /dev/null +++ b/data_migrations/Controller/vosController.py @@ -0,0 +1,23 @@ +from datetime import date, timedelta +from Model.vosFromComanage import vosFromComanage +from Model.vos import vos +from datetime import datetime, timedelta +class vosController: + @classmethod + def getDataNotMapped(self): + dateFrom = vos.getLastDate() + + # we dont have any vos saved + if dateFrom[0][0] == None: + result = vosFromComanage.getAllVos() + else: + dayAfter = dateFrom[0][0] + timedelta(days=1) + dayFrom = dayAfter.strftime('%Y-%m-%d 00:00:00') + + yesterday = date.today() - timedelta(days=1) + dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') + + result = vosFromComanage.getVosByDate(dayFrom, dateTo) + return result + + diff --git a/data_migrations/LICENSE b/data_migrations/LICENSE new file mode 100644 index 0000000..7b81d5a --- /dev/null +++ b/data_migrations/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2021 GRNET S.A. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/data_migrations/Logger/log.py b/data_migrations/Logger/log.py new file mode 100644 index 0000000..fdce677 --- /dev/null +++ b/data_migrations/Logger/log.py @@ -0,0 +1,29 @@ +import logging +import sys +from Utils import configParser +from logging.handlers import TimedRotatingFileHandler + +FORMATTER = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s") +LOG_FILE = "{0}/{1}".format(configParser.getConfig('logging')['folder'] ,configParser.getConfig('logging')['file']) +LEVEL = configParser.getConfig('logging')['level'] + +def get_console_handler(): + console_handler = logging.StreamHandler(sys.stdout) + console_handler.setFormatter(FORMATTER) + return console_handler + +def get_file_handler(): + file_handler = TimedRotatingFileHandler(LOG_FILE, when='midnight') + file_handler.setFormatter(FORMATTER) + return file_handler + +def get_logger(logger_name): + + logger = logging.getLogger(logger_name) + logger.setLevel(LEVEL) + logger.addHandler(get_console_handler()) + logger.addHandler(get_file_handler()) + # with this pattern, it's rarely necessary to propagate the error up to parent + logger.propagate = False + + return logger \ No newline at end of file diff --git a/data_migrations/Model/countries.py b/data_migrations/Model/countries.py new file mode 100644 index 0000000..ca9330e --- /dev/null +++ b/data_migrations/Model/countries.py @@ -0,0 +1,27 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +from Logger import log +class countries(object): + logger = log.get_logger("countries") + COUNTRIESTABLE = configParser.getConfig('destination_tables')['countries'] + + def __init__(self, countrycode, country): + self.countrycode = countrycode + self.country = country + + + @classmethod + def save(self, countries): + pgConn = destinationPgConnector() + pgConn.execute_and_commit( + "INSERT INTO {0}(countrycode, country) VALUES ('{1}', '{2}') ON CONFLICT DO NOTHING".format(countries.COUNTRIESTABLE, countries.countrycode, countries.country) + ) + + @classmethod + def getIdByCountryCode(self, countryCode): + pgConn = destinationPgConnector() + result = pgConn.execute_select( + "SELECT id FROM {0} WHERE countrycode='{1}'".format(countries.COUNTRIESTABLE, countryCode) + ) + return result + diff --git a/data_migrations/Model/countryStatistics.py b/data_migrations/Model/countryStatistics.py new file mode 100644 index 0000000..f66d6fd --- /dev/null +++ b/data_migrations/Model/countryStatistics.py @@ -0,0 +1,34 @@ +# from Model.pgConnector import destinationPgConnector +# from Utils import configParser +# class countryStatistics(object): +# STATISTICSTABLE = configParser.getConfig('destination_tables')['countries'] + +# def __init__(self, id, date, sourceIdp, service, countryCode, country, count): +# self.id = id +# self.date = date +# self.service = service +# self.sourceIdp = sourceIdp +# self.countrycode = countryCode +# self.country = country +# self.count = count + +# @classmethod +# def getLastDate(self): +# pgConn = destinationPgConnector() +# result = pgConn.execute_select("SELECT max(date::date) FROM {0}".format(countryStatistics.STATISTICSTABLE)) +# return result + +# @classmethod +# def save(self, countryStatistics): +# pgConn = destinationPgConnector() +# pgConn.execute_and_commit( +# "INSERT INTO {0}(date, sourceidp, service, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', '{5}', {6}) ON CONFLICT (date, sourceidp, service, countrycode) DO UPDATE SET count = {0}.count + 1".format(countryStatistics.STATISTICSTABLE, countryStatistics.date, countryStatistics.sourceIdp, countryStatistics.service, countryStatistics.countrycode, countryStatistics.country, 1) +# ) + +# @classmethod +# def saveAll(self, countryStatisticsList): +# pgConn = destinationPgConnector() +# values = '' +# for item in countryStatisticsList: +# values += "INSERT INTO {0}(date, sourceidp, service, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', '{5}', {6}) ON CONFLICT (date, sourceidp, service, countrycode) DO UPDATE SET count = {0}.count + 1;".format(countryStatistics.STATISTICSTABLE, item.date, item.sourceIdp, item.service, item.countrycode, item.country, 1) +# pgConn.execute_and_commit(values) diff --git a/data_migrations/Model/countryStatisticsHashedUserId.py b/data_migrations/Model/countryStatisticsHashedUserId.py new file mode 100644 index 0000000..1d047ab --- /dev/null +++ b/data_migrations/Model/countryStatisticsHashedUserId.py @@ -0,0 +1,37 @@ +# from Model.pgConnector import destinationPgConnector +# from Utils import configParser +# import hashlib + +# class countryStatisticsHashedUserId(object): +# STATISTICSHASHEDTABLE = configParser.getConfig('destination_tables')['country_hashed_table'] + +# def __init__(self, id, date, hashedUserId, sourceIdp, service, countryCode, country,count): +# self.id = id +# self.date = date +# self.hashedUserId = hashedUserId +# self.sourceIdp = sourceIdp +# self.service = service +# self.countrycode = countryCode +# self.country = country +# self.count = count + +# @classmethod +# def getLastDate(self): +# pgConn = destinationPgConnector() +# result = pgConn.execute_select("SELECT max(date::date) FROM {0}".format(countryStatisticsHashedUserId.STATISTICSHASHEDTABLE)) +# return result + +# @classmethod +# def save(self, countryStatisticsHashedUserId): +# pgConn = destinationPgConnector() +# pgConn.execute_and_commit( +# "INSERT INTO {0}(date, hasheduserid, sourceidp, service, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', '{5}', '{6}', {7}) ON CONFLICT (date, hasheduserid, sourceidp, service, countrycode) DO UPDATE SET count = {0}.count + 1".format(countryStatisticsHashedUserId.STATISTICSHASHEDTABLE, countryStatisticsHashedUserId.date, hashlib.md5(countryStatisticsHashedUserId.hashedUserId.encode()).hexdigest(), countryStatisticsHashedUserId.sourceIdp, countryStatisticsHashedUserId.service, countryStatisticsHashedUserId.countrycode, countryStatisticsHashedUserId.country, 1) +# ) + +# @classmethod +# def saveAll(self, countryStatisticsList): +# pgConn = destinationPgConnector() +# values = '' +# for item in countryStatisticsList: +# values += "INSERT INTO {0}(date, hasheduserid, sourceidp, service, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', '{5}', '{6}', {7}) ON CONFLICT (date, hasheduserid, sourceidp, service, countrycode) DO UPDATE SET count = {0}.count + 1;".format(countryStatisticsHashedUserId.STATISTICSHASHEDTABLE, item.date, hashlib.md5(item.hashedUserId.encode()).hexdigest(), item.sourceIdp, item.service, item.countrycode, item.country, 1) +# pgConn.execute_and_commit(values) diff --git a/data_migrations/Model/identityProvidersMap.py b/data_migrations/Model/identityProvidersMap.py new file mode 100644 index 0000000..9c41d2d --- /dev/null +++ b/data_migrations/Model/identityProvidersMap.py @@ -0,0 +1,24 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +from Logger import log +class identityProvidersMap(object): + logger = log.get_logger("identityProvidersMap") + IDENTITYPROVIDERSMAPTABLE = configParser.getConfig('destination_tables')['identity_providers_map'] + + def __init__(self, entityid, name): + self.entityid = entityid + self.name = name + + + @classmethod + def save(self, identityProviderMap): + pgConn = destinationPgConnector() + pgConn.execute_and_commit( + "INSERT INTO {0}(entityid, name) VALUES ('{1}', '{2}') ON CONFLICT DO NOTHING".format(identityProviderMap.IDENTITYPROVIDERSMAPTABLE, identityProviderMap.entityid, identityProviderMap.name) + ) + + @classmethod + def getIdpIdByIdentifier(self, entityid): + pgConn = destinationPgConnector() + result = pgConn.execute_select("SELECT id FROM {0} WHERE entityid='{1}'".format(identityProvidersMap.IDENTITYPROVIDERSMAPTABLE, entityid)) + return result diff --git a/data_migrations/Model/identityProvidersMapFromProxy.py b/data_migrations/Model/identityProvidersMapFromProxy.py new file mode 100644 index 0000000..e890b65 --- /dev/null +++ b/data_migrations/Model/identityProvidersMapFromProxy.py @@ -0,0 +1,20 @@ +from Model.pgConnector import sourcePgConnectorProxy +from Utils import configParser + +class identityProvidersMapFromProxy(object): + IDPPROXYTABLE = configParser.getConfig('source_tables')['identity_providers_map_proxy'] + def __init__(self, entityid, name): + self.entityid = entityid + self.name = name + + @classmethod + def getAllIdps(self): + pgConn = sourcePgConnectorProxy() + result = list(pgConn.execute_select("SELECT entityid, name FROM {0}".format(identityProvidersMapFromProxy.IDPPROXYTABLE))) + data = [] + for row in result: + idpsData = identityProvidersMapFromProxy(row[0], row[1]) + data.append(idpsData) + return data + + diff --git a/data_migrations/Model/ipStatistics.py b/data_migrations/Model/ipStatistics.py new file mode 100644 index 0000000..7a3b6d8 --- /dev/null +++ b/data_migrations/Model/ipStatistics.py @@ -0,0 +1,40 @@ +from Model.pgConnector import sourcePgConnector +from Utils import configParser +from datetime import date, timedelta + +class ipStatistics(object): + IPSTATISTICSTABLE = configParser.getConfig('source_tables')['ip_table'] + def __init__(self, accessed, sourceIdp, service, userid, ip, ipVersion): + self.accessed = accessed + self.sourceIdp = sourceIdp + self.service = service + self.userid = userid + self.ip = ip + self.ipVersion = ipVersion + + @classmethod + def getIpStatisticsByDate(self, dateFrom, dateTo): + pgConn = sourcePgConnector() + if(dateFrom != None): + result = list(pgConn.execute_select("SELECT accessed::date, sourceidp, service, userid, ip, ipversion FROM {0} WHERE accessed::date BETWEEN '{1}' AND '{2}'".format(ipStatistics.IPSTATISTICSTABLE, dateFrom, dateTo))) + else: + result = list(pgConn.execute_select("SELECT accessed::date, sourceidp, service, userid, ip, ipversion FROM {0} WHERE accessed::date <= '{1}'".format(ipStatistics.IPSTATISTICSTABLE, dateTo))) + data = [] + for row in result: + ipData = ipStatistics(row[0], row[1], row[2], row[3], row[4], row[5]) + data.append(ipData) + return data + + @classmethod + def getAllIpStatistics(self): + yesterday = date.today() - timedelta(days=1) + dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') + pgConn = sourcePgConnector() + result = list(pgConn.execute_select("SELECT accessed::date, sourceidp, service, userid, ip, ipversion FROM {0} WHERE accessed::date <= '{1}'".format(ipStatistics.IPSTATISTICSTABLE, dateTo))) + data = [] + for row in result: + ipData = ipStatistics(row[0], row[1], row[2], row[3], row[4], row[5]) + data.append(ipData) + return data + + diff --git a/data_migrations/Model/pgConnector.py b/data_migrations/Model/pgConnector.py new file mode 100644 index 0000000..39569d6 --- /dev/null +++ b/data_migrations/Model/pgConnector.py @@ -0,0 +1,117 @@ +from configparser import RawConfigParser +import sys +import psycopg2 +# import the error handling libraries for psycopg2 +from psycopg2 import OperationalError, errorcodes, errors +from Logger import log + +def singleton(theClass): + """ decorator for a class to make a singleton out of it """ + classInstances = {} + + def getInstance(*args, **kwargs): + """ creating or just return the one and only class instance. + The singleton depends on the parameters used in __init__ """ + key = (theClass, args, str(kwargs)) + if key not in classInstances: + classInstances[key] = theClass(*args, **kwargs) + return classInstances[key] + + return getInstance + +class pgConnector: + logger = log.get_logger("pgConnector") + conn = None + + def __init__(self, filename = "config.py", section = "source_database"): + + self.filename = filename + self.section = section + self.params = self.config(filename, section) + if self.conn == None: + try: + self.logger.debug('Connecting to the PostgreSQL database...') + self.conn = psycopg2.connect(**self.params) + except psycopg2.OperationalError as err: + self.logger.error(str(err).strip()) + sys.exit(1) + + def config(self, filename='config.py', section='source_database'): + + # create a parser + parser = RawConfigParser() + + # read config file + parser.read(filename) + + # get section, default to source_database + db = {} + + if parser.has_section(section): + params = parser.items(section) + for param in params: + db[param[0]] = param[1] + else: + self.logger.error('Section {0} not found in the {1} file'.format(section, filename)) + raise Exception('Section {0} not found in the {1} file'.format(section, filename)) + + return db + + def execute_select(self, query): + + # create a cursor + cur = self.conn.cursor() + + # execute a statement + cur.execute(query) + + return cur.fetchall() + + def execute_and_commit_with_fetch(self, query): + + try: + cur = self.conn.cursor() + cur.execute(query) + self.conn.commit() + id = cur.fetchone() + if(id is not None) : + self.logger.info("{0}".format(id[0])) + return id[0] + else : + return None + except Exception as err: + self.logger.error(str(err).strip()) + sys.exit(1) + + def execute_and_commit(self, query): + + try: + cur = self.conn.cursor() + cur.execute(query) + self.conn.commit() + except Exception as err: + self.logger.error(str(err).strip()) + sys.exit(1) + + def close(self): + + self.conn.close() + self.logger.debug('Database connection closed.') + +# Subclass of pgConnector +@singleton +class sourcePgConnector(pgConnector): + def __init__(self, filename = "config.py", section = "source_database"): + super().__init__(filename, section) + +# Subclass of pgConnector +@singleton +class sourcePgConnectorProxy(pgConnector): + def __init__(self, filename = "config.py", section = "source_database_proxy"): + super().__init__(filename, section) + +# Subclass of pgConnector +@singleton +class destinationPgConnector(pgConnector): + def __init__(self, filename = "config.py", section = "destination_database"): + super().__init__(filename, section) \ No newline at end of file diff --git a/data_migrations/Model/serviceProvidersMap.py b/data_migrations/Model/serviceProvidersMap.py new file mode 100644 index 0000000..3d2d9be --- /dev/null +++ b/data_migrations/Model/serviceProvidersMap.py @@ -0,0 +1,24 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +from Logger import log +class serviceProvidersMap(object): + logger = log.get_logger("serviceProvidersMap") + SERVICEPROVIDERSMAPTABLE = configParser.getConfig('destination_tables')['service_providers_map'] + + def __init__(self, identifier, name): + self.identifier = identifier + self.name = name + + + @classmethod + def save(self, serviceProviderMap): + pgConn = destinationPgConnector() + pgConn.execute_and_commit( + "INSERT INTO {0}(identifier, name) VALUES ('{1}', '{2}') ON CONFLICT DO NOTHING".format(serviceProviderMap.SERVICEPROVIDERSMAPTABLE, serviceProviderMap.identifier, serviceProviderMap.name) + ) + + @classmethod + def getSpIdByIdentifier(self, identifier): + pgConn = destinationPgConnector() + result = pgConn.execute_select("SELECT id FROM {0} WHERE identifier='{1}'".format(serviceProvidersMap.SERVICEPROVIDERSMAPTABLE, identifier)) + return result diff --git a/data_migrations/Model/serviceProvidersMapFromProxy.py b/data_migrations/Model/serviceProvidersMapFromProxy.py new file mode 100644 index 0000000..68450cc --- /dev/null +++ b/data_migrations/Model/serviceProvidersMapFromProxy.py @@ -0,0 +1,20 @@ +from Model.pgConnector import sourcePgConnectorProxy +from Utils import configParser + +class serviceProvidersMapFromProxy(object): + SPPROXYTABLE = configParser.getConfig('source_tables')['service_providers_map_proxy'] + def __init__(self, identifier, name): + self.identifier = identifier + self.name = name + + @classmethod + def getAllSps(self): + pgConn = sourcePgConnectorProxy() + result = list(pgConn.execute_select("SELECT identifier, name FROM {0}".format(serviceProvidersMapFromProxy.SPPROXYTABLE))) + data = [] + for row in result: + spsData = serviceProvidersMapFromProxy(row[0], row[1]) + data.append(spsData) + return data + + diff --git a/data_migrations/Model/statisticsCountryHashed.py b/data_migrations/Model/statisticsCountryHashed.py new file mode 100644 index 0000000..a1ac1a2 --- /dev/null +++ b/data_migrations/Model/statisticsCountryHashed.py @@ -0,0 +1,36 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +from Logger import log +class statisticsCountryHashed(object): + logger = log.get_logger("statisticsCountryHashed") + STATISTICSCOUNTRYHASHEDTABLE = configParser.getConfig('destination_tables')['statistics_country_hashed'] + + def __init__(self, date, hasheduserid, sourceidpid, serviceid, countryid, count): + self.date = date + self.hasheduserid = hasheduserid + self.sourceidpid = sourceidpid + self.serviceid = serviceid + self.countryid = countryid + self.count = count + + @classmethod + def getLastDate(self): + pgConn = destinationPgConnector() + result = pgConn.execute_select("SELECT max(date::date) FROM {0}".format(statisticsCountryHashed.STATISTICSCOUNTRYHASHEDTABLE)) + return result + + @classmethod + def save(self, statisticsCountryHashed): + pgConn = destinationPgConnector() + pgConn.execute_and_commit( + """INSERT INTO {0}(date, hasheduserid, sourceidpid, serviceid, countryid, count) + VALUES ('{1}', '{2}', {3}, {4}, {5}, {6}) + """.format(statisticsCountryHashed.STATISTICSCOUNTRYHASHEDTABLE, + statisticsCountryHashed.date, + statisticsCountryHashed.hasheduserid, + statisticsCountryHashed.sourceidpid, + statisticsCountryHashed.serviceid, + statisticsCountryHashed.countryid, + statisticsCountryHashed.count, + ) + ) diff --git a/data_migrations/Model/statisticsCountryHashedFromComanage.py b/data_migrations/Model/statisticsCountryHashedFromComanage.py new file mode 100644 index 0000000..0a50a9e --- /dev/null +++ b/data_migrations/Model/statisticsCountryHashedFromComanage.py @@ -0,0 +1,30 @@ +from Model.pgConnector import sourcePgConnector +from Utils import configParser +from datetime import date, timedelta + +class statisticsCountryHashedFromComanage(object): + STATISTICSCOUNTRYHASHEDCOMANAGETABLE = configParser.getConfig('source_tables')['statistics_country_hashed_comanage'] + def __init__(self, date, hasheduserid, sourceidp, service, countrycode, country, count): + self.hasheduserid = hasheduserid + self.date = date + self.sourceidp = sourceidp + self.service = service + self.countrycode = countrycode + self.country = country + self.count = count + + @classmethod + def getStatsByDate(self, dateFrom, dateTo ): + pgConn = sourcePgConnector() + if(dateFrom != None): + result = list(pgConn.execute_select("SELECT date::date, hasheduserid, sourceidp, service, countrycode, country, count FROM {0} WHERE date::date BETWEEN '{1}' AND '{2}'".format(statisticsCountryHashedFromComanage.STATISTICSCOUNTRYHASHEDCOMANAGETABLE, dateFrom, dateTo))) + + else: + result = list(pgConn.execute_select("SELECT date::date, hasheduserid, sourceidp, service, countrycode, country, count FROM {0} WHERE date::date <= '{1}'".format(statisticsCountryHashedFromComanage.STATISTICSCOUNTRYHASHEDCOMANAGETABLE, dateTo))) + data = [] + for row in result: + statsData = statisticsCountryHashedFromComanage(row[0], row[1], row[2], row[3], row[4], row[5], row[6]) + data.append(statsData) + return data + + diff --git a/data_migrations/Model/userCountryStatistics.py b/data_migrations/Model/userCountryStatistics.py new file mode 100644 index 0000000..41bab6f --- /dev/null +++ b/data_migrations/Model/userCountryStatistics.py @@ -0,0 +1,33 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +class userCountryStatistics(object): + USERCOUNTRYTABLE = configParser.getConfig('destination_tables')['user_country_table'] + + def __init__(self, id, date, userid, countrycode, country, count): + self.id = id + self.date = date + self.userid = userid + self.countrycode = countrycode + self.country = country + self.count = count + + @classmethod + def getLastDate(self): + pgConn = destinationPgConnector() + result = pgConn.execute_select("SELECT max(date::date) FROM {0}".format(userCountryStatistics.USERCOUNTRYTABLE)) + return result + + @classmethod + def save(self, userCountryStatistics): + pgConn = destinationPgConnector() + pgConn.execute_and_commit( + "INSERT INTO {0}(date, userid, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', {5}) ON CONFLICT (date, userid, countrycode) DO UPDATE SET count = {0}.count + 1".format(userCountryStatistics.USERCOUNTRYTABLE, userCountryStatistics.date, userCountryStatistics.userid, userCountryStatistics.countrycode, userCountryStatistics.country, 1) + ) + + @classmethod + def saveAll(self, userCountryStatisticsList): + pgConn = destinationPgConnector() + values = '' + for item in userCountryStatisticsList: + values += "INSERT INTO {0}(date, userid, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', {5}) ON CONFLICT (date, userid, countrycode) DO UPDATE SET count = {0}.count + 1;".format(userCountryStatistics.USERCOUNTRYTABLE, item.date, item.userid, item.countrycode, item.country, 1) + pgConn.execute_and_commit(values) \ No newline at end of file diff --git a/data_migrations/Model/users.py b/data_migrations/Model/users.py new file mode 100644 index 0000000..5beb7f4 --- /dev/null +++ b/data_migrations/Model/users.py @@ -0,0 +1,40 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +from Logger import log +import hashlib +class users(object): + logger = log.get_logger("users") + USERSTABLE = configParser.getConfig('destination_tables')['users'] + + def __init__(self, userid, created, status): + + self.hasheduserid = userid + self.created = created + self.status = status + +# @classmethod +# def getLastDate(self): +# pgConn = destinationPgConnector() +# result = pgConn.execute_select("SELECT max(created::date) FROM {0}".format(voMemberships.VOMEMBERSHIPSTABLE)) +# return result + + + + @classmethod + def saveAll(self, usersList): + pgConn = destinationPgConnector() + values = '' + for item in usersList: + values += """INSERT INTO {0}(hasheduserid, created, status) + VALUES ('{1}', '{2}','{3}') + ON CONFLICT(hasheduserid) DO UPDATE SET status='{3}'; + """.format(users.USERSTABLE, item.hasheduserid, item.created, item.status) + pgConn.execute_and_commit(values) + +# @classmethod +# def getMembershipStatus(self, voId, hasheduserid): +# pgConn = destinationPgConnector() +# result = pgConn.execute_select(""" +# SELECT status FROM {0} WHERE community_id={1} AND hasheduserid='{2}'""" +# .format(users.USERSTABLE, voId, hasheduserid)) +# return result \ No newline at end of file diff --git a/data_migrations/Model/usersFromComanage.py b/data_migrations/Model/usersFromComanage.py new file mode 100644 index 0000000..2fb3cc6 --- /dev/null +++ b/data_migrations/Model/usersFromComanage.py @@ -0,0 +1,35 @@ +from Model.pgConnector import sourcePgConnector +from Utils import configParser +from datetime import date, timedelta +import hashlib + +class usersFromComanage(object): + USERSCOMANAGETABLE = configParser.getConfig('source_tables')['users_comanage'] + def __init__(self, userid, created, status): + + self.hasheduserid = hashlib.md5(userid.encode()).hexdigest() + self.created = created + self.status = status + + + @classmethod + def getAllUsers(self): + pgConn = sourcePgConnector() + result = (list(pgConn.execute_select(""" + SELECT identifier, cm_co_people.created, cm_co_people.status + FROM cm_co_people + JOIN cm_identifiers + ON cm_co_people.id = cm_identifiers.co_person_id + AND NOT cm_co_people.deleted + AND cm_co_people.co_person_id IS NULL + AND type='epuid' + WHERE NOT cm_identifiers.deleted AND identifier_id IS NULL + AND co_id=2 AND login=true + """))) + data = [] + for row in result: + usersData = usersFromComanage(row[0], row[1], row[2]) + data.append(usersData) + return data + + diff --git a/data_migrations/Model/voMemberships.py b/data_migrations/Model/voMemberships.py new file mode 100644 index 0000000..e63444f --- /dev/null +++ b/data_migrations/Model/voMemberships.py @@ -0,0 +1,48 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +from Logger import log +import hashlib +class voMemberships(object): + logger = log.get_logger("voMemberships") + VOMEMBERSHIPSTABLE = configParser.getConfig('destination_tables')['vo_memberships'] + + def __init__(self, vo_id, userid, status): + self.community_id = vo_id + self.hasheduserid = userid + self.status = status + +# @classmethod +# def getLastDate(self): +# pgConn = destinationPgConnector() +# result = pgConn.execute_select("SELECT max(created::date) FROM {0}".format(voMemberships.VOMEMBERSHIPSTABLE)) +# return result + + + @classmethod + def truncate(self): + pgConn = destinationPgConnector() + # remove all data + pgConn.execute_and_commit( + """ + TRUNCATE TABLE {0} + """.format(voMemberships.VOMEMBERSHIPSTABLE) + ) + + @classmethod + def saveAll(self, voMembershipsList): + pgConn = destinationPgConnector() + values = '' + for item in voMembershipsList: + values += """INSERT INTO {0}(community_id, hasheduserid, status) + VALUES ('{1}', '{2}','{3}') + ON CONFLICT(community_id,hasheduserid) DO UPDATE SET status='{3}'; + """.format(voMemberships.VOMEMBERSHIPSTABLE, item.community_id, item.hasheduserid, item.status) + pgConn.execute_and_commit(values) + + @classmethod + def getMembershipStatus(self, voId, hasheduserid): + pgConn = destinationPgConnector() + result = pgConn.execute_select(""" + SELECT status FROM {0} WHERE community_id={1} AND hasheduserid='{2}'""" + .format(voMemberships.VOMEMBERSHIPSTABLE, voId, hasheduserid)) + return result \ No newline at end of file diff --git a/data_migrations/Model/voMembershipsFromComanage.py b/data_migrations/Model/voMembershipsFromComanage.py new file mode 100644 index 0000000..7e869e5 --- /dev/null +++ b/data_migrations/Model/voMembershipsFromComanage.py @@ -0,0 +1,57 @@ +from Model.pgConnector import sourcePgConnector +from Utils import configParser +from datetime import date, timedelta +import hashlib + +class voMembershipsFromComanage(object): + VOMEMBERSHIPSCOMANAGETABLE = configParser.getConfig('source_tables')['vo_memberships_comanage'] + def __init__(self, voName, userid, status): + self.status = status + self.hasheduserid = hashlib.md5(userid.encode()).hexdigest() + self.voName = voName + self.source = "egi" + +# @classmethod +# def getVosByDate(self, dateFrom, dateTo): +# pgConn = sourcePgConnector() +# if(dateFrom != None): +# result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date BETWEEN '{1}' AND '{2}'".format(vosFromComanage.VOSCOMANAGETABLE, dateFrom, dateTo))) + +# else: +# result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date <= '{1}'".format(vosFromComanage.VOSCOMANAGETABLE, dateTo))) +# data = [] +# for row in result: +# vosData = vosFromComanage(row[0], row[1], row[2]) +# data.append(vosData) +# return data + + @classmethod + # getAllVoMemberships + def getAllVoMembershipsByStatus(self, status): + yesterday = date.today() - timedelta(days=1) + dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') + pgConn = sourcePgConnector() + if status == 'Other': + subquery = 'AND cm_co_person_roles.status!=\'A\' AND cm_co_person_roles.status!=\'GP\'' + else: + subquery = 'AND cm_co_person_roles.status=\'{0}\''.format(status) + result = list(pgConn.execute_select(""" + SELECT cm_cous.name, identifier, cm_co_person_roles.status + FROM cm_co_person_roles + JOIN cm_identifiers + ON cm_co_person_roles.co_person_id = cm_identifiers.co_person_id + AND NOT cm_co_person_roles.deleted + AND cm_co_person_roles.co_person_role_id IS NULL + AND type='epuid' + JOIN cm_cous ON cm_cous.id=cm_co_person_roles.cou_id AND cm_cous.cou_id IS NULL + WHERE NOT cm_co_person_roles.deleted + AND NOT cm_identifiers.deleted AND identifier_id IS NULL + {0} + """.format(subquery))) + data = [] + for row in result: + vosData = voMembershipsFromComanage(row[0], row[1], row[2]) + data.append(vosData) + return data + + diff --git a/data_migrations/Model/vos.py b/data_migrations/Model/vos.py new file mode 100644 index 0000000..7c48540 --- /dev/null +++ b/data_migrations/Model/vos.py @@ -0,0 +1,43 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +from Logger import log +class vos(object): + logger = log.get_logger("vos") + VOSTABLE = configParser.getConfig('destination_tables')['vos'] + + def __init__(self, id, created): + self.community_id = id #foreign key coming from vosInfo + self.created = created + + + @classmethod + def getVoIdFromVoName(self, voName, source): + pgConn = destinationPgConnector() + + result = pgConn.execute_select(""" + SELECT id FROM communities JOIN communities_info ON id=community_id + WHERE source='{0}' AND name='{1}' + """.format(source, voName)) + return result + + @classmethod + def getLastDate(self): + pgConn = destinationPgConnector() + result = pgConn.execute_select("SELECT max(created::date) FROM {0}".format(vos.VOSTABLE)) + return result + + @classmethod + def save(self, vos): + pgConn = destinationPgConnector() + pgConn.execute_and_commit( + "INSERT INTO {0}(community_id, created) VALUES ('{1}', '{2}')".format(vos.VOSTABLE, vos.community_id, vos.created) + ) + + +# @classmethod +# def saveAll(self, vosList): +# pgConn = destinationPgConnector() +# values = '' +# for item in vosList: +# values += "INSERT INTO {0}(created, source) VALUES ('{1}', '{2}');".format(vos.VOSTABLE, item.created, item.source) +# pgConn.execute_and_commit(values) diff --git a/data_migrations/Model/vosFromComanage.py b/data_migrations/Model/vosFromComanage.py new file mode 100644 index 0000000..c57ed32 --- /dev/null +++ b/data_migrations/Model/vosFromComanage.py @@ -0,0 +1,39 @@ +from Model.pgConnector import sourcePgConnector +from Utils import configParser +from datetime import date, timedelta + +class vosFromComanage(object): + VOSCOMANAGETABLE = configParser.getConfig('source_tables')['vos_comanage'] + def __init__(self, created, name, description): + self.name = name + self.description = description + self.created = created + + @classmethod + def getVosByDate(self, dateFrom, dateTo): + pgConn = sourcePgConnector() + if(dateFrom != None): + result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date BETWEEN '{1}' AND '{2}'".format(vosFromComanage.VOSCOMANAGETABLE, dateFrom, dateTo))) + + else: + result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date <= '{1}'".format(vosFromComanage.VOSCOMANAGETABLE, dateTo))) + data = [] + for row in result: + vosData = vosFromComanage(row[0], row[1], row[2]) + data.append(vosData) + return data + + @classmethod + # getAllVos except those created today + def getAllVos(self): + yesterday = date.today() - timedelta(days=1) + dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') + pgConn = sourcePgConnector() + result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date <= '{1}'".format(vosFromComanage.VOSCOMANAGETABLE, dateTo))) + data = [] + for row in result: + vosData = vosFromComanage(row[0], row[1], row[2]) + data.append(vosData) + return data + + diff --git a/data_migrations/Model/vosInfo.py b/data_migrations/Model/vosInfo.py new file mode 100644 index 0000000..7de96e6 --- /dev/null +++ b/data_migrations/Model/vosInfo.py @@ -0,0 +1,28 @@ +from Model.pgConnector import destinationPgConnector +from Utils import configParser +from Logger import log +class vosInfo(object): + logger = log.get_logger("vosInfo") + VOSINFOTABLE = configParser.getConfig('destination_tables')['vos_information'] + + def __init__(self, voName, voDescription, source): + + self.voName = voName + self.voDescription = voDescription + self.source = source + + @classmethod + def save(self, vosInfo): + pgConn = destinationPgConnector() + id = pgConn.execute_and_commit_with_fetch( + "INSERT INTO {0}(name, description, source) VALUES ('{1}', '{2}', '{3}') RETURNING id".format(vosInfo.VOSINFOTABLE, vosInfo.voName, vosInfo.voDescription, vosInfo.source) + ) + return id + +# @classmethod +# def saveAll(self, vosList): +# pgConn = destinationPgConnector() +# values = '' +# for item in vosList: +# values += "INSERT INTO {0}(community_id, name, description) VALUES ('{1}', '{2}', '{3}');".format(vosInfo.VOSINFOTABLE, item.id, item.voName, item.voDescription) +# pgConn.execute_and_commit(values) diff --git a/data_migrations/README.md b/data_migrations/README.md new file mode 100644 index 0000000..cf52a4b --- /dev/null +++ b/data_migrations/README.md @@ -0,0 +1,29 @@ +# rciam-ip2country +A Python-based tool for mapping ips to countries and store the respective login information to a DB. +## Prerequisites +This script uses MaxMind GeoIP2 Databases (commercial version). +You must put the .mmdb files (`GeoLite2-Country.mmdb`) to the folder `databases`. + +## Installation +``` +git clone https://github.com/rciam/rciam-ip2country.git +cd rciam-ip2country +cp config.py.example config.py +vi config.py +``` + +Create a Python virtualenv, install dependencies, and run the script +``` +virtualenv -p python3 .venv +source .venv/bin/activate +(venv) pip3 install -r requirements.txt +(venv) python3 -m Utils.install +(venv) python3 ipToCountry.py +🍺 +``` + +## License +Licensed under the Apache 2.0 license, for details see LICENSE. + + + diff --git a/data_migrations/Service/ipDatabase.py b/data_migrations/Service/ipDatabase.py new file mode 100644 index 0000000..75a2288 --- /dev/null +++ b/data_migrations/Service/ipDatabase.py @@ -0,0 +1,18 @@ +from abc import ABC, abstractmethod +from Model.ipStatistics import ipStatistics +from Utils import configParser +import geoip2.database + +class ipDatabase(ABC): + DBFILENAME = configParser.getConfig('database_file')['db_filename'] + @abstractmethod + def getCountryFromIp(self): + pass + +class geoip2Database(ipDatabase): + @classmethod + def getCountryFromIp(self, ip, ipVersion): + gi = geoip2.database.Reader('./databases/{0}'.format(ipDatabase.DBFILENAME)) + return [gi.country(ip).country.iso_code,gi.country(ip).country.name] + + diff --git a/data_migrations/Utils/configParser.py b/data_migrations/Utils/configParser.py new file mode 100644 index 0000000..aa7db27 --- /dev/null +++ b/data_migrations/Utils/configParser.py @@ -0,0 +1,32 @@ +from configparser import RawConfigParser + +CONFIG_FILE = 'config.py' + +def getConfig(section='source_database'): + + # create a parser + + parser = RawConfigParser() + + # read config file + + parser.read(CONFIG_FILE) + + # get section, default to source_database + + config = {} + + if parser.has_section(section): + + params = parser.items(section) + + for param in params: + + config[param[0]] = param[1] + + else: + + raise Exception('Section {0} not found in the {1} file'.format(section, CONFIG_FILE)) + + + return config diff --git a/data_migrations/Utils/install.py b/data_migrations/Utils/install.py new file mode 100644 index 0000000..3648494 --- /dev/null +++ b/data_migrations/Utils/install.py @@ -0,0 +1,40 @@ +from Model.pgConnector import destinationPgConnector + + +pgConn = destinationPgConnector() +# Create tables if not exist +pgConn.execute_and_commit( + open("./config-templates/pgsql_tables.sql", "r").read()) + +# Check if country_statistics has data and country_statistics_hashed doesn't +# dateFrom = countryStatistics.getLastDate() +# dateFromHashed = countryStatisticsHashedUserId.getLastDate() + +# if (dateFrom[0][0] != None and dateFromHashed[0][0] == None): +# logger = log.get_logger("install") +# ipDatabaseHandler = geoip2Database() +# # We must put data at country statistics hashed table +# ipData = ipStatistics.getIpStatisticsByDate(None, dateFrom[0][0]) +# mappedItems = 0 +# countryStatsHashedList = [] + +# for item in ipData: +# # get network address +# ipaddr = ipaddress.ip_network(item.ip).network_address +# # get country code/ name +# countryData = ipDatabaseHandler.getCountryFromIp(str(ipaddr), item.ipVersion) + +# if(countryData[0] != None): +# mappedItems +=1 +# else: +# countryData[0] = 'UN' +# countryData[1] = 'Unknown' +# logger.warning("ip {0} not found at database".format(ipaddr)) +# countryStatisticsHashedItem = countryStatisticsHashedUserId(None, item.accessed, item.userid, item.sourceIdp, item.service, countryData[0], countryData[1], 1) +# countryStatsHashedList.append(countryStatisticsHashedItem) +# if countryStatsHashedList: +# countryStatisticsHashedUserId.saveAll(countryStatsHashedList) +# logger.info("{0} ips mapped to countries".format(mappedItems)) +# else: +# logger.info("No new data found") +pgConn.close() diff --git a/data_migrations/config-templates/pgsql_tables.sql b/data_migrations/config-templates/pgsql_tables.sql new file mode 100644 index 0000000..5921705 --- /dev/null +++ b/data_migrations/config-templates/pgsql_tables.sql @@ -0,0 +1,142 @@ +-- Statistics for country logins including idp and sp +-- CREATE TABLE IF NOT EXISTS statistics_country ( +-- id SERIAL PRIMARY KEY, +-- date DATE NOT NULL, +-- sourceidp character varying(255) NOT NULL, +-- service character varying(255) NOT NULL, +-- countrycode character varying(2) NOT NULL, +-- country character varying(255) NOT NULL, +-- count int NOT NULL +-- ); + +-- CREATE INDEX IF NOT EXISTS statistics_country_i1 ON statistics_country (date); +-- CREATE INDEX IF NOT EXISTS statistics_country_i2 ON statistics_country (sourceidp); +-- CREATE INDEX IF NOT EXISTS statistics_country_i3 ON statistics_country (service); +-- CREATE INDEX IF NOT EXISTS statistics_country_i4 ON statistics_country (countrycode); +-- CREATE INDEX IF NOT EXISTS statistics_country_i5 ON statistics_country (country); +-- CREATE UNIQUE INDEX IF NOT EXISTS idx_statistics_country +-- ON statistics_country(date, sourceidp, service, countrycode); + +-- -- Statistics for country logins including idp,sp and hashed userid +-- CREATE TABLE IF NOT EXISTS statistics_country_hashed ( +-- id SERIAL PRIMARY KEY, +-- date DATE NOT NULL, +-- hasheduserid character varying(255) NOT NULL, +-- sourceidp character varying(255) NOT NULL, +-- service character varying(255) NOT NULL, +-- countrycode character varying(2) NOT NULL, +-- country character varying(255) NOT NULL, +-- count int NOT NULL +-- ); + +-- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i1 ON statistics_country_hashed (date); +-- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i2 ON statistics_country_hashed (sourceidp); +-- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i3 ON statistics_country_hashed (service); +-- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i4 ON statistics_country_hashed (countrycode); +-- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i5 ON statistics_country_hashed (country); +-- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i6 ON statistics_country_hashed (hasheduserid); +-- CREATE UNIQUE INDEX IF NOT EXISTS idx_statistics_country_hashed +-- ON statistics_country_hashed(date, hasheduserid, sourceidp, service, countrycode); + +-- -- Statistics for country logins including userid +-- CREATE TABLE IF NOT EXISTS statistics_user_country ( +-- id SERIAL PRIMARY KEY, +-- date DATE NOT NULL, +-- userid character varying(255) NOT NULL, +-- countrycode character varying(2) NOT NULL, +-- country character varying(255) NOT NULL, +-- count int NOT NULL +-- ); + +-- CREATE INDEX IF NOT EXISTS statistics_user_country_i1 ON statistics_user_country (date); +-- CREATE INDEX IF NOT EXISTS statistics_user_country_i2 ON statistics_user_country (userid); +-- CREATE INDEX IF NOT EXISTS statistics_user_country_i3 ON statistics_user_country (countrycode); +-- CREATE INDEX IF NOT EXISTS statistics_user_country_i4 ON statistics_user_country (country); +-- CREATE UNIQUE INDEX IF NOT EXISTS idx_statistics_user_country ON statistics_user_country(date, userid, countrycode); + +CREATE TABLE IF NOT EXISTS community_info ( + id SERIAL PRIMARY KEY, + name character varying(255) NOT NULL, + description character varying(255) NOT NULL, + source character varying(255) NOT NULL +); + +CREATE TABLE IF NOT EXISTS community ( + community_id INT, + created DATE NOT NULL, + PRIMARY KEY(community_id), + CONSTRAINT fk_community + FOREIGN KEY(community_id) + REFERENCES community_info(id) +); + + +CREATE TABLE IF NOT EXISTS members ( + community_id INT, + hasheduserid character varying(1024) NOT NULL, + status character varying(255) NOT NULL, + CONSTRAINT fk_community + FOREIGN KEY(community_id) + REFERENCES community_info(id) +); +CREATE UNIQUE INDEX IF NOT EXISTS idx_members ON members(community_id,hasheduserid); +CREATE INDEX IF NOT EXISTS community_i1 ON community (created); +CREATE INDEX IF NOT EXISTS community_info_i1 ON community_info (name); +CREATE UNIQUE INDEX IF NOT EXISTS idx_community_info ON community_info(name); + +CREATE TABLE IF NOT EXISTS identityprovidersmap ( + id SERIAL PRIMARY KEY, + entityid character varying(255) NOT NULL, + name character varying(255) NOT NULL +); + +CREATE UNIQUE INDEX IF NOT EXISTS idx_identityprovidersmap ON identityprovidersmap(entityid); + +CREATE TABLE IF NOT EXISTS serviceprovidersmap ( + id SERIAL PRIMARY KEY, + identifier character varying(255) NOT NULL, + name character varying(255) NOT NULL +); + +CREATE UNIQUE INDEX IF NOT EXISTS idx_serviceprovidersmap ON serviceprovidersmap(identifier); + +CREATE TABLE IF NOT EXISTS country_codes ( + id SERIAL PRIMARY KEY, + countrycode character varying(2) NOT NULL, + country character varying(255) NOT NULL +); + +CREATE UNIQUE INDEX IF NOT EXISTS idx_country_codes ON country_codes(countrycode); +CREATE UNIQUE INDEX IF NOT EXISTS idxx_country_codes ON country_codes (country); + +CREATE TABLE IF NOT EXISTS users ( + hasheduserid character varying(1024) NOT NULL, + created DATE NOT NULL, + status character varying(255) NOT NULL +); + +CREATE UNIQUE INDEX IF NOT EXISTS idx_users ON users(hasheduserid); + +CREATE TABLE IF NOT EXISTS statistics_country_hashed ( + id SERIAL PRIMARY KEY, + date DATE NOT NULL, + hasheduserid character varying(1024) NOT NULL, + sourceidpid INT NOT NULL, + serviceid INT NOT NULL, + countryid INT NOT NULL, + count INT NOT NULL, + CONSTRAINT fk_idp + FOREIGN KEY(sourceidpid) + REFERENCES identityprovidersmap(id), + CONSTRAINT fk_service + FOREIGN KEY(serviceid) + REFERENCES serviceprovidersmap(id), + CONSTRAINT fk_country + FOREIGN KEY(countryid) + REFERENCES country_codes(id) +); + +CREATE INDEX IF NOT EXISTS statistics_country_hashed_i1 ON statistics_country_hashed (hasheduserid); +CREATE INDEX IF NOT EXISTS statistics_country_hashed_i2 ON statistics_country_hashed (sourceidpid); +CREATE INDEX IF NOT EXISTS statistics_country_hashed_i3 ON statistics_country_hashed (serviceid); +CREATE INDEX IF NOT EXISTS statistics_country_hashed_i4 ON statistics_country_hashed (countryid); diff --git a/data_migrations/config.py b/data_migrations/config.py new file mode 100644 index 0000000..7290995 --- /dev/null +++ b/data_migrations/config.py @@ -0,0 +1,59 @@ +[source_database] + +host=localhost +database=egi_dev_registry +user=postgres +password=71902102 + +[source_database_proxy] + +host=localhost +database=egi_dev_proxy +user=postgres +password=71902102 + +[source_tables] + +ip_table=statistics_ip +vos_comanage=cm_cous +users_comanage=cm_co_people +vo_memberships_comanage=cm_co_person_roles +statistics_country_hashed_comanage=statistics_country_hashed +identity_providers_map_proxy=identityprovidersmap +service_providers_map_proxy=serviceprovidersmap + +[destination_database] + +# host=localhost +# database=rciam_metrics +# user=postgres +# password=71902102 + +host=172.19.0.2 +database=metrics_dev +user=rciam +password=secret + +[destination_tables] + +#country_table=statistics_country + +#user_country_table=statistics_user_country +vos=community +vos_information=community_info +vo_memberships=members +users=users +identity_providers_map=identityprovidersmap +service_providers_map=serviceprovidersmap +statistics_country_hashed=statistics_country_hashed +countries=country_codes + +[logging] + +level = INFO +folder = log +file = metricsMigrate.log + +[database_file] + +db_filename = GeoLite2-Country.mmdb \ No newline at end of file diff --git a/data_migrations/config.py.example b/data_migrations/config.py.example new file mode 100644 index 0000000..c53a4f6 --- /dev/null +++ b/data_migrations/config.py.example @@ -0,0 +1,35 @@ +[source_database] + +host=localhost +database=db_name +user=db_user +password=db_password + +[source_tables] + +ip_table=statistics_ip +vos_comanage=cm_cous + +[destination_database] + +host=localhost +database=db_name +user=db_user +password=db_password + +[destination_tables] + +country_table=statistics_country +country_hashed_table=statistics_country_hashed +user_country_table=statistics_user_country +vos=communities + +[logging] + +level = INFO +folder = log +file = metricsMigrate.log + +[database_file] + +db_filename = GeoLite2-Country.mmdb \ No newline at end of file diff --git a/data_migrations/databases/empty b/data_migrations/databases/empty new file mode 100644 index 0000000..e69de29 diff --git a/data_migrations/ipToCountry.py b/data_migrations/ipToCountry.py new file mode 100644 index 0000000..08d96db --- /dev/null +++ b/data_migrations/ipToCountry.py @@ -0,0 +1,59 @@ +#!/usr/local/bin/python3 +import os +import sys +# change working directory +os.chdir(os.path.dirname(os.path.abspath(sys.argv[0]))) +from Model.countryStatistics import countryStatistics +from Model.countryStatisticsHashedUserId import countryStatisticsHashedUserId +from Model.userCountryStatistics import userCountryStatistics +from Controller.countryStatisticsController import countryStatisticsController +from Service.ipDatabase import geoip2Database +from Logger import log +import ipaddress + +class ipToCountry: + logger = log.get_logger("ipToCountry") + + @classmethod + def mapIpToCountry(self): + # handler for ip databases + ipDatabaseHandler = geoip2Database() + ipData = countryStatisticsController.getDataNotMapped() + countryStatsList = [] + usercountryStatsList = [] + countryStatsHashedList = [] + mappedItems = 0 + for item in ipData: + try: + # get network address + ipaddr = ipaddress.ip_network(item.ip).network_address + # get country code/ name + countryData = ipDatabaseHandler.getCountryFromIp(str(ipaddr), item.ipVersion) + if(countryData[0] != None): + mappedItems +=1 + else: + countryData[0] = 'UN' + countryData[1] = 'Unknown' + self.logger.warning("ip {0} not found at database".format(ipaddr)) + + countryStatisticsItem = countryStatistics(None, item.accessed, item.sourceIdp, item.service, countryData[0], countryData[1], 1) + countryStatsList.append(countryStatisticsItem) + usercountryStatisticsItem = userCountryStatistics(None, item.accessed, item.userid, countryData[0], countryData[1], 1) + usercountryStatsList.append(usercountryStatisticsItem) + countryStatisticsHashedItem = countryStatisticsHashedUserId(None, item.accessed, item.userid, item.sourceIdp, item.service, countryData[0], countryData[1], 1) + countryStatsHashedList.append(countryStatisticsHashedItem) + except: + pass + # save data to tables if any + if countryStatsList: + countryStatistics.saveAll(countryStatsList) + userCountryStatistics.saveAll(usercountryStatsList) + countryStatisticsHashedUserId.saveAll(countryStatsHashedList) + self.logger.info("{0} ips mapped to countries".format(mappedItems)) + else: + self.logger.info("No new data found") + + +#run script +ipToCountry.mapIpToCountry() + diff --git a/data_migrations/log/empty b/data_migrations/log/empty new file mode 100644 index 0000000..e69de29 diff --git a/data_migrations/log/metricsMigrate.log.2022-11-04 b/data_migrations/log/metricsMigrate.log.2022-11-04 new file mode 100644 index 0000000..4af3470 --- /dev/null +++ b/data_migrations/log/metricsMigrate.log.2022-11-04 @@ -0,0 +1,2330 @@ +2022-11-04 10:10:32,244 - pgConnector - ERROR - FATAL: database "egi_registry" does not exist +2022-11-04 10:12:30,176 - pgConnector - ERROR - syntax error at or near "INSERT" +LINE 1: ...ership', '2016-09-27', 'AARC Pilot User Sponsors')INSERT INT... + ^ +2022-11-04 10:13:27,560 - pgConnector - ERROR - column "voname" of relation "communities" does not exist +LINE 1: INSERT INTO communities(created, voName, voDescription) VALU... + ^ +2022-11-04 10:14:38,588 - pgConnector - ERROR - invalid input syntax for type date: "Users who are eligible to sponsor AARC Pilot User Community membership" +LINE 1: ...O communities(created, name, description) VALUES ('Users who... + ^ +2022-11-04 10:15:57,674 - migrateData - INFO - 82 vos created +2022-11-04 10:22:35,049 - pgConnector - ERROR - duplicate key value violates unique constraint "idx_communities" +DETAIL: Key (name)=(www.astron.nl) already exists. +2022-11-04 10:28:06,980 - migrateData - INFO - 28 vos created +2022-11-04 11:21:19,775 - pgConnector - ERROR - syntax error at or near ")" +LINE 62: ); + ^ +2022-11-04 11:21:56,372 - pgConnector - ERROR - syntax error at or near ")" +LINE 62: ); + ^ +2022-11-04 11:22:11,228 - pgConnector - ERROR - column "community_id" named in key does not exist +LINE 63: PRIMARY KEY(community_id), + ^ +2022-11-04 11:24:45,113 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist +2022-11-04 11:26:26,095 - migrateData - INFO - No new data found +2022-11-04 11:27:27,183 - migrateData - INFO - No new data found +2022-11-04 11:29:45,284 - migrateData - INFO - None item +2022-11-04 11:29:45,286 - migrateData - INFO - None item +2022-11-04 11:29:45,287 - migrateData - INFO - None item +2022-11-04 11:29:45,288 - migrateData - INFO - None item +2022-11-04 11:29:45,289 - migrateData - INFO - None item +2022-11-04 11:29:45,290 - migrateData - INFO - None item +2022-11-04 11:29:45,291 - migrateData - INFO - None item +2022-11-04 11:29:45,292 - migrateData - INFO - None item +2022-11-04 11:29:45,293 - migrateData - INFO - None item +2022-11-04 11:29:45,294 - migrateData - INFO - None item +2022-11-04 11:29:45,294 - migrateData - INFO - None item +2022-11-04 11:29:45,295 - migrateData - INFO - None item +2022-11-04 11:29:45,296 - migrateData - INFO - None item +2022-11-04 11:29:45,297 - migrateData - INFO - None item +2022-11-04 11:29:45,298 - migrateData - INFO - None item +2022-11-04 11:29:45,299 - migrateData - INFO - None item +2022-11-04 11:29:45,300 - migrateData - INFO - None item +2022-11-04 11:29:45,301 - migrateData - INFO - None item +2022-11-04 11:29:45,302 - migrateData - INFO - None item +2022-11-04 11:29:45,303 - migrateData - INFO - None item +2022-11-04 11:29:45,304 - migrateData - INFO - None item +2022-11-04 11:29:45,305 - migrateData - INFO - None item +2022-11-04 11:29:45,306 - migrateData - INFO - None item +2022-11-04 11:29:45,307 - migrateData - INFO - None item +2022-11-04 11:29:45,308 - migrateData - INFO - None item +2022-11-04 11:29:45,309 - migrateData - INFO - None item +2022-11-04 11:29:45,310 - migrateData - INFO - None item +2022-11-04 11:29:45,311 - migrateData - INFO - None item +2022-11-04 11:29:45,311 - migrateData - INFO - No new data found +2022-11-04 11:31:10,867 - migrateData - INFO - 0 item +2022-11-04 11:31:10,869 - migrateData - INFO - 0 item +2022-11-04 11:31:10,870 - migrateData - INFO - 0 item +2022-11-04 11:31:10,873 - migrateData - INFO - 0 item +2022-11-04 11:31:10,874 - migrateData - INFO - 0 item +2022-11-04 11:31:10,875 - migrateData - INFO - 0 item +2022-11-04 11:31:10,876 - migrateData - INFO - 0 item +2022-11-04 11:31:10,877 - migrateData - INFO - 0 item +2022-11-04 11:31:10,879 - migrateData - INFO - 0 item +2022-11-04 11:31:10,879 - migrateData - INFO - 0 item +2022-11-04 11:31:10,880 - migrateData - INFO - 0 item +2022-11-04 11:31:10,881 - migrateData - INFO - 0 item +2022-11-04 11:31:10,882 - migrateData - INFO - 0 item +2022-11-04 11:31:10,883 - migrateData - INFO - 0 item +2022-11-04 11:31:10,885 - migrateData - INFO - 0 item +2022-11-04 11:31:10,886 - migrateData - INFO - 0 item +2022-11-04 11:31:10,887 - migrateData - INFO - 0 item +2022-11-04 11:31:10,888 - migrateData - INFO - 0 item +2022-11-04 11:31:10,889 - migrateData - INFO - 0 item +2022-11-04 11:31:10,891 - migrateData - INFO - 0 item +2022-11-04 11:31:10,892 - migrateData - INFO - 0 item +2022-11-04 11:31:10,893 - migrateData - INFO - 0 item +2022-11-04 11:31:10,894 - migrateData - INFO - 0 item +2022-11-04 11:31:10,896 - migrateData - INFO - 0 item +2022-11-04 11:31:10,897 - migrateData - INFO - 0 item +2022-11-04 11:31:10,898 - migrateData - INFO - 0 item +2022-11-04 11:31:10,900 - migrateData - INFO - 0 item +2022-11-04 11:31:10,901 - migrateData - INFO - 0 item +2022-11-04 11:31:10,901 - migrateData - INFO - No new data found +2022-11-04 11:34:45,530 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,531 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,533 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,534 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,535 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,537 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,538 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,539 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,541 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,542 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,543 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,544 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,545 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,546 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,547 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,548 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,549 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,550 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,551 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,552 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,553 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,555 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,557 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,558 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,559 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,560 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,561 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,563 - pgConnector - ERROR - no results to fetch +2022-11-04 11:34:45,563 - migrateData - INFO - No new data found +2022-11-04 11:35:48,042 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,043 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,044 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,046 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,048 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,049 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,050 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,051 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,053 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,054 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,055 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,055 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,056 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,057 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,058 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,059 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,060 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,061 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,062 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,063 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,064 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,065 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,067 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,068 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,069 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,070 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,071 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,072 - pgConnector - ERROR - no results to fetch +2022-11-04 11:35:48,072 - migrateData - INFO - No new data found +2022-11-04 11:37:17,065 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,065 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,065 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,066 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,066 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,066 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,067 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,068 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,068 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,068 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,070 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,070 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,070 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,071 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,071 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,071 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,071 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch +2022-11-04 11:37:17,073 - migrateData - INFO - No new data found +2022-11-04 11:38:09,478 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,479 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,480 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,482 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,483 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,484 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,485 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,487 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,488 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,489 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,490 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,491 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,492 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,493 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,494 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,495 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,496 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,497 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,499 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,500 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,502 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,503 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,504 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,506 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,507 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,508 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,509 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,510 - pgConnector - ERROR - no results to fetch +2022-11-04 11:38:09,510 - migrateData - INFO - No new data found +2022-11-04 11:43:00,750 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,751 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,752 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,754 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,756 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,756 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,757 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,758 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,759 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,760 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,761 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,763 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,764 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,765 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,766 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,767 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,768 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,769 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,769 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,770 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,771 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,772 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,775 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,776 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,777 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,778 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,779 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,780 - pgConnector - ERROR - no results to fetch +2022-11-04 11:43:00,780 - migrateData - INFO - No new data found +2022-11-04 11:43:43,767 - migrateData - INFO - None item +2022-11-04 11:43:43,768 - migrateData - INFO - None item +2022-11-04 11:43:43,769 - migrateData - INFO - None item +2022-11-04 11:43:43,771 - migrateData - INFO - None item +2022-11-04 11:43:43,772 - migrateData - INFO - None item +2022-11-04 11:43:43,773 - migrateData - INFO - None item +2022-11-04 11:43:43,775 - migrateData - INFO - None item +2022-11-04 11:43:43,776 - migrateData - INFO - None item +2022-11-04 11:43:43,777 - migrateData - INFO - None item +2022-11-04 11:43:43,779 - migrateData - INFO - None item +2022-11-04 11:43:43,780 - migrateData - INFO - None item +2022-11-04 11:43:43,781 - migrateData - INFO - None item +2022-11-04 11:43:43,782 - migrateData - INFO - None item +2022-11-04 11:43:43,783 - migrateData - INFO - None item +2022-11-04 11:43:43,783 - migrateData - INFO - None item +2022-11-04 11:43:43,785 - migrateData - INFO - None item +2022-11-04 11:43:43,786 - migrateData - INFO - None item +2022-11-04 11:43:43,786 - migrateData - INFO - None item +2022-11-04 11:43:43,787 - migrateData - INFO - None item +2022-11-04 11:43:43,789 - migrateData - INFO - None item +2022-11-04 11:43:43,790 - migrateData - INFO - None item +2022-11-04 11:43:43,792 - migrateData - INFO - None item +2022-11-04 11:43:43,793 - migrateData - INFO - None item +2022-11-04 11:43:43,795 - migrateData - INFO - None item +2022-11-04 11:43:43,796 - migrateData - INFO - None item +2022-11-04 11:43:43,797 - migrateData - INFO - None item +2022-11-04 11:43:43,798 - migrateData - INFO - None item +2022-11-04 11:43:43,799 - migrateData - INFO - None item +2022-11-04 11:43:43,799 - migrateData - INFO - No new data found +2022-11-04 11:44:55,670 - migrateData - INFO - 1 item +2022-11-04 11:44:55,672 - migrateData - INFO - 1 item +2022-11-04 11:44:55,673 - migrateData - INFO - 1 item +2022-11-04 11:44:55,674 - migrateData - INFO - 1 item +2022-11-04 11:44:55,675 - migrateData - INFO - 1 item +2022-11-04 11:44:55,677 - migrateData - INFO - 1 item +2022-11-04 11:44:55,678 - migrateData - INFO - 1 item +2022-11-04 11:44:55,679 - migrateData - INFO - 1 item +2022-11-04 11:44:55,680 - migrateData - INFO - 1 item +2022-11-04 11:44:55,681 - migrateData - INFO - 1 item +2022-11-04 11:44:55,683 - migrateData - INFO - 1 item +2022-11-04 11:44:55,684 - migrateData - INFO - 1 item +2022-11-04 11:44:55,685 - migrateData - INFO - 1 item +2022-11-04 11:44:55,686 - migrateData - INFO - 1 item +2022-11-04 11:44:55,687 - migrateData - INFO - 1 item +2022-11-04 11:44:55,688 - migrateData - INFO - 1 item +2022-11-04 11:44:55,690 - migrateData - INFO - 1 item +2022-11-04 11:44:55,691 - migrateData - INFO - 1 item +2022-11-04 11:44:55,692 - migrateData - INFO - 1 item +2022-11-04 11:44:55,693 - migrateData - INFO - 1 item +2022-11-04 11:44:55,694 - migrateData - INFO - 1 item +2022-11-04 11:44:55,696 - migrateData - INFO - 1 item +2022-11-04 11:44:55,697 - migrateData - INFO - 1 item +2022-11-04 11:44:55,698 - migrateData - INFO - 1 item +2022-11-04 11:44:55,700 - migrateData - INFO - 1 item +2022-11-04 11:44:55,701 - migrateData - INFO - 1 item +2022-11-04 11:44:55,703 - migrateData - INFO - 1 item +2022-11-04 11:44:55,704 - migrateData - INFO - 1 item +2022-11-04 11:44:55,704 - migrateData - INFO - No new data found +2022-11-04 11:45:42,277 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-07-24', 'egi') +2022-11-04 11:45:42,277 - migrateData - INFO - 1 item +2022-11-04 11:45:42,279 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-07-25', 'egi') +2022-11-04 11:45:42,279 - migrateData - INFO - 1 item +2022-11-04 11:45:42,280 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-07-25', 'egi') +2022-11-04 11:45:42,280 - migrateData - INFO - 1 item +2022-11-04 11:45:42,281 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2017-06-01', 'egi') +2022-11-04 11:45:42,281 - migrateData - INFO - 1 item +2022-11-04 11:45:42,282 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-01-19', 'egi') +2022-11-04 11:45:42,282 - migrateData - INFO - 1 item +2022-11-04 11:45:42,283 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-01-19', 'egi') +2022-11-04 11:45:42,283 - migrateData - INFO - 1 item +2022-11-04 11:45:42,284 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2016-09-23', 'egi') +2022-11-04 11:45:42,284 - migrateData - INFO - 1 item +2022-11-04 11:45:42,285 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2017-12-14', 'egi') +2022-11-04 11:45:42,286 - migrateData - INFO - 1 item +2022-11-04 11:45:42,287 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-01-19', 'egi') +2022-11-04 11:45:42,287 - migrateData - INFO - 1 item +2022-11-04 11:45:42,288 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-02-09', 'egi') +2022-11-04 11:45:42,288 - migrateData - INFO - 1 item +2022-11-04 11:45:42,290 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-02-09', 'egi') +2022-11-04 11:45:42,290 - migrateData - INFO - 1 item +2022-11-04 11:45:42,291 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-11-02', 'egi') +2022-11-04 11:45:42,291 - migrateData - INFO - 1 item +2022-11-04 11:45:42,293 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-10-25', 'egi') +2022-11-04 11:45:42,293 - migrateData - INFO - 1 item +2022-11-04 11:45:42,294 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-11-07', 'egi') +2022-11-04 11:45:42,294 - migrateData - INFO - 1 item +2022-11-04 11:45:42,295 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-05-07', 'egi') +2022-11-04 11:45:42,295 - migrateData - INFO - 1 item +2022-11-04 11:45:42,296 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-06-02', 'egi') +2022-11-04 11:45:42,296 - migrateData - INFO - 1 item +2022-11-04 11:45:42,298 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-06-10', 'egi') +2022-11-04 11:45:42,298 - migrateData - INFO - 1 item +2022-11-04 11:45:42,299 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-06-29', 'egi') +2022-11-04 11:45:42,299 - migrateData - INFO - 1 item +2022-11-04 11:45:42,300 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-07-16', 'egi') +2022-11-04 11:45:42,300 - migrateData - INFO - 1 item +2022-11-04 11:45:42,302 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-07-16', 'egi') +2022-11-04 11:45:42,302 - migrateData - INFO - 1 item +2022-11-04 11:45:42,303 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-02-05', 'egi') +2022-11-04 11:45:42,303 - migrateData - INFO - 1 item +2022-11-04 11:45:42,304 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-06-20', 'egi') +2022-11-04 11:45:42,304 - migrateData - INFO - 1 item +2022-11-04 11:45:42,306 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-09-16', 'egi') +2022-11-04 11:45:42,307 - migrateData - INFO - 1 item +2022-11-04 11:45:42,308 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-09-26', 'egi') +2022-11-04 11:45:42,308 - migrateData - INFO - 1 item +2022-11-04 11:45:42,309 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-07-29', 'egi') +2022-11-04 11:45:42,309 - migrateData - INFO - 1 item +2022-11-04 11:45:42,310 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-08-04', 'egi') +2022-11-04 11:45:42,310 - migrateData - INFO - 1 item +2022-11-04 11:45:42,311 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2021-05-24', 'egi') +2022-11-04 11:45:42,311 - migrateData - INFO - 1 item +2022-11-04 11:45:42,312 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2021-05-26', 'egi') +2022-11-04 11:45:42,312 - migrateData - INFO - 1 item +2022-11-04 11:45:42,312 - migrateData - INFO - No new data found +2022-11-04 11:46:00,650 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,650 - migrateData - INFO - 1 item +2022-11-04 11:46:00,651 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,651 - migrateData - INFO - 1 item +2022-11-04 11:46:00,652 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,652 - migrateData - INFO - 1 item +2022-11-04 11:46:00,653 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,653 - migrateData - INFO - 1 item +2022-11-04 11:46:00,654 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,654 - migrateData - INFO - 1 item +2022-11-04 11:46:00,655 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,655 - migrateData - INFO - 1 item +2022-11-04 11:46:00,656 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,656 - migrateData - INFO - 1 item +2022-11-04 11:46:00,657 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,657 - migrateData - INFO - 1 item +2022-11-04 11:46:00,658 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,658 - migrateData - INFO - 1 item +2022-11-04 11:46:00,659 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,659 - migrateData - INFO - 1 item +2022-11-04 11:46:00,660 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,660 - migrateData - INFO - 1 item +2022-11-04 11:46:00,661 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,661 - migrateData - INFO - 1 item +2022-11-04 11:46:00,662 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,662 - migrateData - INFO - 1 item +2022-11-04 11:46:00,663 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,663 - migrateData - INFO - 1 item +2022-11-04 11:46:00,664 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,665 - migrateData - INFO - 1 item +2022-11-04 11:46:00,666 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,666 - migrateData - INFO - 1 item +2022-11-04 11:46:00,667 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,667 - migrateData - INFO - 1 item +2022-11-04 11:46:00,668 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,668 - migrateData - INFO - 1 item +2022-11-04 11:46:00,669 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,669 - migrateData - INFO - 1 item +2022-11-04 11:46:00,670 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,670 - migrateData - INFO - 1 item +2022-11-04 11:46:00,672 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,672 - migrateData - INFO - 1 item +2022-11-04 11:46:00,673 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,673 - migrateData - INFO - 1 item +2022-11-04 11:46:00,675 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,675 - migrateData - INFO - 1 item +2022-11-04 11:46:00,677 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,677 - migrateData - INFO - 1 item +2022-11-04 11:46:00,678 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,678 - migrateData - INFO - 1 item +2022-11-04 11:46:00,679 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,679 - migrateData - INFO - 1 item +2022-11-04 11:46:00,680 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,680 - migrateData - INFO - 1 item +2022-11-04 11:46:00,681 - pgConnector - INFO - Query??? 0 +2022-11-04 11:46:00,681 - migrateData - INFO - 1 item +2022-11-04 11:46:00,682 - migrateData - INFO - No new data found +2022-11-04 11:48:48,525 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,526 - migrateData - INFO - 1 item +2022-11-04 11:48:48,527 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,527 - migrateData - INFO - 1 item +2022-11-04 11:48:48,528 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,529 - migrateData - INFO - 1 item +2022-11-04 11:48:48,529 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,530 - migrateData - INFO - 1 item +2022-11-04 11:48:48,531 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,531 - migrateData - INFO - 1 item +2022-11-04 11:48:48,532 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,533 - migrateData - INFO - 1 item +2022-11-04 11:48:48,533 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,534 - migrateData - INFO - 1 item +2022-11-04 11:48:48,535 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,537 - migrateData - INFO - 1 item +2022-11-04 11:48:48,538 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,538 - migrateData - INFO - 1 item +2022-11-04 11:48:48,539 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,539 - migrateData - INFO - 1 item +2022-11-04 11:48:48,540 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,541 - migrateData - INFO - 1 item +2022-11-04 11:48:48,541 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,542 - migrateData - INFO - 1 item +2022-11-04 11:48:48,542 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,543 - migrateData - INFO - 1 item +2022-11-04 11:48:48,543 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,544 - migrateData - INFO - 1 item +2022-11-04 11:48:48,544 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,545 - migrateData - INFO - 1 item +2022-11-04 11:48:48,545 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,546 - migrateData - INFO - 1 item +2022-11-04 11:48:48,546 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,547 - migrateData - INFO - 1 item +2022-11-04 11:48:48,547 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,548 - migrateData - INFO - 1 item +2022-11-04 11:48:48,548 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,550 - migrateData - INFO - 1 item +2022-11-04 11:48:48,551 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,552 - migrateData - INFO - 1 item +2022-11-04 11:48:48,552 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,553 - migrateData - INFO - 1 item +2022-11-04 11:48:48,553 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,554 - migrateData - INFO - 1 item +2022-11-04 11:48:48,555 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,555 - migrateData - INFO - 1 item +2022-11-04 11:48:48,556 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,557 - migrateData - INFO - 1 item +2022-11-04 11:48:48,557 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,558 - migrateData - INFO - 1 item +2022-11-04 11:48:48,559 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,559 - migrateData - INFO - 1 item +2022-11-04 11:48:48,560 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,561 - migrateData - INFO - 1 item +2022-11-04 11:48:48,561 - pgConnector - INFO - Query??? 0 +2022-11-04 11:48:48,562 - migrateData - INFO - 1 item +2022-11-04 11:48:48,562 - migrateData - INFO - No new data found +2022-11-04 11:50:25,740 - pgConnector - ERROR - syntax error at or near "PRIMARY" +LINE 58: id PRIMARY KEY AUTO_INCREMENT, + ^ +2022-11-04 11:50:42,307 - pgConnector - ERROR - syntax error at or near "AUTO_INCREMENT" +LINE 58: id SERIAL PRIMARY KEY AUTO_INCREMENT, + ^ +2022-11-04 11:52:45,789 - pgConnector - ERROR - syntax error at or near "NOT" +LINE 58: id NOT NULL AUTO_INCREMENT, + ^ +2022-11-04 11:53:06,326 - pgConnector - ERROR - syntax error at or near "AUTO_INCREMENT" +LINE 58: id INT NOT NULL AUTO_INCREMENT, + ^ +2022-11-04 11:57:29,219 - pgConnector - ERROR - no results to fetch +2022-11-04 11:58:35,440 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,442 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,443 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,445 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,445 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,447 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,448 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,449 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,450 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,451 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,452 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,453 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,454 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,456 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,465 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,466 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,467 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,468 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,470 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,473 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,474 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,475 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,476 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,478 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,479 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,480 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,481 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,482 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:58:35,482 - migrateData - INFO - No new data found +2022-11-04 11:59:38,917 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,919 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,920 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,921 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,922 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,932 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,933 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,934 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,935 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,936 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,937 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,938 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,939 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,943 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,944 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,945 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,946 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,947 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,948 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,949 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,950 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,951 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,952 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,953 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,954 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,955 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,956 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,957 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 11:59:38,957 - migrateData - INFO - No new data found +2022-11-04 12:03:15,978 - pgConnector - INFO - (57,) +2022-11-04 12:03:15,978 - migrateData - INFO - None item +2022-11-04 12:03:15,979 - pgConnector - INFO - (58,) +2022-11-04 12:03:15,979 - migrateData - INFO - None item +2022-11-04 12:03:15,980 - pgConnector - INFO - (59,) +2022-11-04 12:03:15,980 - migrateData - INFO - None item +2022-11-04 12:03:15,981 - pgConnector - INFO - (60,) +2022-11-04 12:03:15,981 - migrateData - INFO - None item +2022-11-04 12:03:15,982 - pgConnector - INFO - (61,) +2022-11-04 12:03:15,983 - migrateData - INFO - None item +2022-11-04 12:03:15,986 - pgConnector - INFO - (62,) +2022-11-04 12:03:15,986 - migrateData - INFO - None item +2022-11-04 12:03:15,991 - pgConnector - INFO - (63,) +2022-11-04 12:03:15,991 - migrateData - INFO - None item +2022-11-04 12:03:15,992 - pgConnector - INFO - (64,) +2022-11-04 12:03:15,992 - migrateData - INFO - None item +2022-11-04 12:03:15,993 - pgConnector - INFO - (65,) +2022-11-04 12:03:15,993 - migrateData - INFO - None item +2022-11-04 12:03:15,994 - pgConnector - INFO - (66,) +2022-11-04 12:03:15,994 - migrateData - INFO - None item +2022-11-04 12:03:15,995 - pgConnector - INFO - (67,) +2022-11-04 12:03:15,996 - migrateData - INFO - None item +2022-11-04 12:03:15,997 - pgConnector - INFO - (68,) +2022-11-04 12:03:15,997 - migrateData - INFO - None item +2022-11-04 12:03:15,998 - pgConnector - INFO - (69,) +2022-11-04 12:03:15,998 - migrateData - INFO - None item +2022-11-04 12:03:15,999 - pgConnector - INFO - (70,) +2022-11-04 12:03:15,999 - migrateData - INFO - None item +2022-11-04 12:03:16,000 - pgConnector - INFO - (71,) +2022-11-04 12:03:16,000 - migrateData - INFO - None item +2022-11-04 12:03:16,001 - pgConnector - INFO - (72,) +2022-11-04 12:03:16,001 - migrateData - INFO - None item +2022-11-04 12:03:16,002 - pgConnector - INFO - (73,) +2022-11-04 12:03:16,002 - migrateData - INFO - None item +2022-11-04 12:03:16,003 - pgConnector - INFO - (74,) +2022-11-04 12:03:16,003 - migrateData - INFO - None item +2022-11-04 12:03:16,004 - pgConnector - INFO - (75,) +2022-11-04 12:03:16,004 - migrateData - INFO - None item +2022-11-04 12:03:16,006 - pgConnector - INFO - (76,) +2022-11-04 12:03:16,006 - migrateData - INFO - None item +2022-11-04 12:03:16,007 - pgConnector - INFO - (77,) +2022-11-04 12:03:16,007 - migrateData - INFO - None item +2022-11-04 12:03:16,010 - pgConnector - INFO - (78,) +2022-11-04 12:03:16,010 - migrateData - INFO - None item +2022-11-04 12:03:16,011 - pgConnector - INFO - (79,) +2022-11-04 12:03:16,011 - migrateData - INFO - None item +2022-11-04 12:03:16,018 - pgConnector - INFO - (80,) +2022-11-04 12:03:16,018 - migrateData - INFO - None item +2022-11-04 12:03:16,019 - pgConnector - INFO - (81,) +2022-11-04 12:03:16,019 - migrateData - INFO - None item +2022-11-04 12:03:16,020 - pgConnector - INFO - (82,) +2022-11-04 12:03:16,021 - migrateData - INFO - None item +2022-11-04 12:03:16,022 - pgConnector - INFO - (83,) +2022-11-04 12:03:16,022 - migrateData - INFO - None item +2022-11-04 12:03:16,023 - pgConnector - INFO - (84,) +2022-11-04 12:03:16,023 - migrateData - INFO - None item +2022-11-04 12:03:16,023 - migrateData - INFO - No new data found +2022-11-04 12:03:41,344 - pgConnector - INFO - 85 +2022-11-04 12:03:41,344 - migrateData - INFO - None item +2022-11-04 12:03:41,345 - pgConnector - INFO - 86 +2022-11-04 12:03:41,345 - migrateData - INFO - None item +2022-11-04 12:03:41,346 - pgConnector - INFO - 87 +2022-11-04 12:03:41,346 - migrateData - INFO - None item +2022-11-04 12:03:41,348 - pgConnector - INFO - 88 +2022-11-04 12:03:41,348 - migrateData - INFO - None item +2022-11-04 12:03:41,349 - pgConnector - INFO - 89 +2022-11-04 12:03:41,350 - migrateData - INFO - None item +2022-11-04 12:03:41,351 - pgConnector - INFO - 90 +2022-11-04 12:03:41,351 - migrateData - INFO - None item +2022-11-04 12:03:41,352 - pgConnector - INFO - 91 +2022-11-04 12:03:41,352 - migrateData - INFO - None item +2022-11-04 12:03:41,354 - pgConnector - INFO - 92 +2022-11-04 12:03:41,354 - migrateData - INFO - None item +2022-11-04 12:03:41,355 - pgConnector - INFO - 93 +2022-11-04 12:03:41,355 - migrateData - INFO - None item +2022-11-04 12:03:41,356 - pgConnector - INFO - 94 +2022-11-04 12:03:41,356 - migrateData - INFO - None item +2022-11-04 12:03:41,358 - pgConnector - INFO - 95 +2022-11-04 12:03:41,358 - migrateData - INFO - None item +2022-11-04 12:03:41,359 - pgConnector - INFO - 96 +2022-11-04 12:03:41,359 - migrateData - INFO - None item +2022-11-04 12:03:41,360 - pgConnector - INFO - 97 +2022-11-04 12:03:41,360 - migrateData - INFO - None item +2022-11-04 12:03:41,361 - pgConnector - INFO - 98 +2022-11-04 12:03:41,361 - migrateData - INFO - None item +2022-11-04 12:03:41,362 - pgConnector - INFO - 99 +2022-11-04 12:03:41,362 - migrateData - INFO - None item +2022-11-04 12:03:41,364 - pgConnector - INFO - 100 +2022-11-04 12:03:41,364 - migrateData - INFO - None item +2022-11-04 12:03:41,365 - pgConnector - INFO - 101 +2022-11-04 12:03:41,365 - migrateData - INFO - None item +2022-11-04 12:03:41,366 - pgConnector - INFO - 102 +2022-11-04 12:03:41,366 - migrateData - INFO - None item +2022-11-04 12:03:41,367 - pgConnector - INFO - 103 +2022-11-04 12:03:41,367 - migrateData - INFO - None item +2022-11-04 12:03:41,368 - pgConnector - INFO - 104 +2022-11-04 12:03:41,368 - migrateData - INFO - None item +2022-11-04 12:03:41,368 - pgConnector - INFO - 105 +2022-11-04 12:03:41,369 - migrateData - INFO - None item +2022-11-04 12:03:41,369 - pgConnector - INFO - 106 +2022-11-04 12:03:41,370 - migrateData - INFO - None item +2022-11-04 12:03:41,371 - pgConnector - INFO - 107 +2022-11-04 12:03:41,371 - migrateData - INFO - None item +2022-11-04 12:03:41,372 - pgConnector - INFO - 108 +2022-11-04 12:03:41,372 - migrateData - INFO - None item +2022-11-04 12:03:41,373 - pgConnector - INFO - 109 +2022-11-04 12:03:41,373 - migrateData - INFO - None item +2022-11-04 12:03:41,374 - pgConnector - INFO - 110 +2022-11-04 12:03:41,374 - migrateData - INFO - None item +2022-11-04 12:03:41,374 - pgConnector - INFO - 111 +2022-11-04 12:03:41,374 - migrateData - INFO - None item +2022-11-04 12:03:41,375 - pgConnector - INFO - 112 +2022-11-04 12:03:41,376 - migrateData - INFO - None item +2022-11-04 12:03:41,376 - migrateData - INFO - No new data found +2022-11-04 12:09:07,337 - pgConnector - INFO - 113 +2022-11-04 12:09:07,338 - pgConnector - INFO - 114 +2022-11-04 12:09:07,340 - pgConnector - INFO - 115 +2022-11-04 12:09:07,341 - pgConnector - INFO - 116 +2022-11-04 12:09:07,343 - pgConnector - INFO - 117 +2022-11-04 12:09:07,344 - pgConnector - INFO - 118 +2022-11-04 12:09:07,346 - pgConnector - INFO - 119 +2022-11-04 12:09:07,348 - pgConnector - INFO - 120 +2022-11-04 12:09:07,348 - pgConnector - INFO - 121 +2022-11-04 12:09:07,350 - pgConnector - INFO - 122 +2022-11-04 12:09:07,351 - pgConnector - INFO - 123 +2022-11-04 12:09:07,365 - pgConnector - INFO - 124 +2022-11-04 12:09:07,375 - pgConnector - INFO - 125 +2022-11-04 12:09:07,376 - pgConnector - INFO - 126 +2022-11-04 12:09:07,377 - pgConnector - INFO - 127 +2022-11-04 12:09:07,378 - pgConnector - INFO - 128 +2022-11-04 12:09:07,379 - pgConnector - INFO - 129 +2022-11-04 12:09:07,381 - pgConnector - INFO - 130 +2022-11-04 12:09:07,382 - pgConnector - INFO - 131 +2022-11-04 12:09:07,383 - pgConnector - INFO - 132 +2022-11-04 12:09:07,384 - pgConnector - INFO - 133 +2022-11-04 12:09:07,385 - pgConnector - INFO - 134 +2022-11-04 12:09:07,386 - pgConnector - INFO - 135 +2022-11-04 12:09:07,388 - pgConnector - INFO - 136 +2022-11-04 12:09:07,388 - pgConnector - INFO - 137 +2022-11-04 12:09:07,389 - pgConnector - INFO - 138 +2022-11-04 12:09:07,390 - pgConnector - INFO - 139 +2022-11-04 12:09:07,391 - pgConnector - INFO - 140 +2022-11-04 12:09:07,391 - migrateData - INFO - 28 vos created +2022-11-04 12:10:12,639 - pgConnector - INFO - 141 +2022-11-04 12:10:12,640 - pgConnector - INFO - 142 +2022-11-04 12:10:12,641 - pgConnector - INFO - 143 +2022-11-04 12:10:12,642 - pgConnector - INFO - 144 +2022-11-04 12:10:12,646 - pgConnector - INFO - 145 +2022-11-04 12:10:12,647 - pgConnector - INFO - 146 +2022-11-04 12:10:12,648 - pgConnector - INFO - 147 +2022-11-04 12:10:12,649 - pgConnector - INFO - 148 +2022-11-04 12:10:12,652 - pgConnector - INFO - 149 +2022-11-04 12:10:12,653 - pgConnector - INFO - 150 +2022-11-04 12:10:12,657 - pgConnector - INFO - 151 +2022-11-04 12:10:12,659 - pgConnector - INFO - 152 +2022-11-04 12:10:12,660 - pgConnector - INFO - 153 +2022-11-04 12:10:12,662 - pgConnector - INFO - 154 +2022-11-04 12:10:12,664 - pgConnector - INFO - 155 +2022-11-04 12:10:12,665 - pgConnector - INFO - 156 +2022-11-04 12:10:12,666 - pgConnector - INFO - 157 +2022-11-04 12:10:12,667 - pgConnector - INFO - 158 +2022-11-04 12:10:12,668 - pgConnector - INFO - 159 +2022-11-04 12:10:12,669 - pgConnector - INFO - 160 +2022-11-04 12:10:12,670 - pgConnector - INFO - 161 +2022-11-04 12:10:12,670 - pgConnector - INFO - 162 +2022-11-04 12:10:12,672 - pgConnector - INFO - 163 +2022-11-04 12:10:12,673 - pgConnector - INFO - 164 +2022-11-04 12:10:12,675 - pgConnector - INFO - 165 +2022-11-04 12:10:12,677 - pgConnector - INFO - 166 +2022-11-04 12:10:12,678 - pgConnector - INFO - 167 +2022-11-04 12:10:12,680 - pgConnector - INFO - 168 +2022-11-04 12:10:12,680 - migrateData - INFO - 28 vos created +2022-11-04 12:10:35,268 - pgConnector - INFO - 169 +2022-11-04 12:10:35,268 - migrateData - INFO - None item +2022-11-04 12:10:35,270 - pgConnector - INFO - 170 +2022-11-04 12:10:35,270 - migrateData - INFO - None item +2022-11-04 12:10:35,271 - pgConnector - INFO - 171 +2022-11-04 12:10:35,271 - migrateData - INFO - None item +2022-11-04 12:10:35,273 - pgConnector - INFO - 172 +2022-11-04 12:10:35,273 - migrateData - INFO - None item +2022-11-04 12:10:35,274 - pgConnector - INFO - 173 +2022-11-04 12:10:35,274 - migrateData - INFO - None item +2022-11-04 12:10:35,275 - pgConnector - INFO - 174 +2022-11-04 12:10:35,276 - migrateData - INFO - None item +2022-11-04 12:10:35,278 - pgConnector - INFO - 175 +2022-11-04 12:10:35,279 - migrateData - INFO - None item +2022-11-04 12:10:35,279 - pgConnector - INFO - 176 +2022-11-04 12:10:35,280 - migrateData - INFO - None item +2022-11-04 12:10:35,281 - pgConnector - INFO - 177 +2022-11-04 12:10:35,281 - migrateData - INFO - None item +2022-11-04 12:10:35,282 - pgConnector - INFO - 178 +2022-11-04 12:10:35,282 - migrateData - INFO - None item +2022-11-04 12:10:35,283 - pgConnector - INFO - 179 +2022-11-04 12:10:35,283 - migrateData - INFO - None item +2022-11-04 12:10:35,284 - pgConnector - INFO - 180 +2022-11-04 12:10:35,285 - migrateData - INFO - None item +2022-11-04 12:10:35,286 - pgConnector - INFO - 181 +2022-11-04 12:10:35,286 - migrateData - INFO - None item +2022-11-04 12:10:35,287 - pgConnector - INFO - 182 +2022-11-04 12:10:35,287 - migrateData - INFO - None item +2022-11-04 12:10:35,288 - pgConnector - INFO - 183 +2022-11-04 12:10:35,288 - migrateData - INFO - None item +2022-11-04 12:10:35,289 - pgConnector - INFO - 184 +2022-11-04 12:10:35,289 - migrateData - INFO - None item +2022-11-04 12:10:35,290 - pgConnector - INFO - 185 +2022-11-04 12:10:35,290 - migrateData - INFO - None item +2022-11-04 12:10:35,291 - pgConnector - INFO - 186 +2022-11-04 12:10:35,291 - migrateData - INFO - None item +2022-11-04 12:10:35,294 - pgConnector - INFO - 187 +2022-11-04 12:10:35,295 - migrateData - INFO - None item +2022-11-04 12:10:35,296 - pgConnector - INFO - 188 +2022-11-04 12:10:35,296 - migrateData - INFO - None item +2022-11-04 12:10:35,297 - pgConnector - INFO - 189 +2022-11-04 12:10:35,297 - migrateData - INFO - None item +2022-11-04 12:10:35,298 - pgConnector - INFO - 190 +2022-11-04 12:10:35,298 - migrateData - INFO - None item +2022-11-04 12:10:35,299 - pgConnector - INFO - 191 +2022-11-04 12:10:35,299 - migrateData - INFO - None item +2022-11-04 12:10:35,300 - pgConnector - INFO - 192 +2022-11-04 12:10:35,300 - migrateData - INFO - None item +2022-11-04 12:10:35,301 - pgConnector - INFO - 193 +2022-11-04 12:10:35,301 - migrateData - INFO - None item +2022-11-04 12:10:35,302 - pgConnector - INFO - 194 +2022-11-04 12:10:35,302 - migrateData - INFO - None item +2022-11-04 12:10:35,303 - pgConnector - INFO - 195 +2022-11-04 12:10:35,303 - migrateData - INFO - None item +2022-11-04 12:10:35,304 - pgConnector - INFO - 196 +2022-11-04 12:10:35,304 - migrateData - INFO - None item +2022-11-04 12:10:35,304 - migrateData - INFO - 28 vos created +2022-11-04 12:12:08,524 - pgConnector - INFO - 197 +2022-11-04 12:12:08,524 - vos - INFO - None +2022-11-04 12:12:08,524 - migrateData - INFO - None item +2022-11-04 12:12:08,526 - pgConnector - INFO - 198 +2022-11-04 12:12:08,526 - vos - INFO - None +2022-11-04 12:12:08,526 - migrateData - INFO - None item +2022-11-04 12:12:08,528 - pgConnector - INFO - 199 +2022-11-04 12:12:08,528 - vos - INFO - None +2022-11-04 12:12:08,528 - migrateData - INFO - None item +2022-11-04 12:12:08,530 - pgConnector - INFO - 200 +2022-11-04 12:12:08,530 - vos - INFO - None +2022-11-04 12:12:08,530 - migrateData - INFO - None item +2022-11-04 12:12:08,534 - pgConnector - INFO - 201 +2022-11-04 12:12:08,534 - vos - INFO - None +2022-11-04 12:12:08,534 - migrateData - INFO - None item +2022-11-04 12:12:08,535 - pgConnector - INFO - 202 +2022-11-04 12:12:08,535 - vos - INFO - None +2022-11-04 12:12:08,536 - migrateData - INFO - None item +2022-11-04 12:12:08,537 - pgConnector - INFO - 203 +2022-11-04 12:12:08,537 - vos - INFO - None +2022-11-04 12:12:08,537 - migrateData - INFO - None item +2022-11-04 12:12:08,538 - pgConnector - INFO - 204 +2022-11-04 12:12:08,539 - vos - INFO - None +2022-11-04 12:12:08,539 - migrateData - INFO - None item +2022-11-04 12:12:08,540 - pgConnector - INFO - 205 +2022-11-04 12:12:08,540 - vos - INFO - None +2022-11-04 12:12:08,540 - migrateData - INFO - None item +2022-11-04 12:12:08,541 - pgConnector - INFO - 206 +2022-11-04 12:12:08,541 - vos - INFO - None +2022-11-04 12:12:08,541 - migrateData - INFO - None item +2022-11-04 12:12:08,542 - pgConnector - INFO - 207 +2022-11-04 12:12:08,542 - vos - INFO - None +2022-11-04 12:12:08,542 - migrateData - INFO - None item +2022-11-04 12:12:08,543 - pgConnector - INFO - 208 +2022-11-04 12:12:08,543 - vos - INFO - None +2022-11-04 12:12:08,543 - migrateData - INFO - None item +2022-11-04 12:12:08,544 - pgConnector - INFO - 209 +2022-11-04 12:12:08,545 - vos - INFO - None +2022-11-04 12:12:08,545 - migrateData - INFO - None item +2022-11-04 12:12:08,546 - pgConnector - INFO - 210 +2022-11-04 12:12:08,546 - vos - INFO - None +2022-11-04 12:12:08,546 - migrateData - INFO - None item +2022-11-04 12:12:08,547 - pgConnector - INFO - 211 +2022-11-04 12:12:08,547 - vos - INFO - None +2022-11-04 12:12:08,547 - migrateData - INFO - None item +2022-11-04 12:12:08,548 - pgConnector - INFO - 212 +2022-11-04 12:12:08,548 - vos - INFO - None +2022-11-04 12:12:08,548 - migrateData - INFO - None item +2022-11-04 12:12:08,549 - pgConnector - INFO - 213 +2022-11-04 12:12:08,549 - vos - INFO - None +2022-11-04 12:12:08,549 - migrateData - INFO - None item +2022-11-04 12:12:08,550 - pgConnector - INFO - 214 +2022-11-04 12:12:08,550 - vos - INFO - None +2022-11-04 12:12:08,550 - migrateData - INFO - None item +2022-11-04 12:12:08,552 - pgConnector - INFO - 215 +2022-11-04 12:12:08,552 - vos - INFO - None +2022-11-04 12:12:08,552 - migrateData - INFO - None item +2022-11-04 12:12:08,555 - pgConnector - INFO - 216 +2022-11-04 12:12:08,556 - vos - INFO - None +2022-11-04 12:12:08,556 - migrateData - INFO - None item +2022-11-04 12:12:08,557 - pgConnector - INFO - 217 +2022-11-04 12:12:08,557 - vos - INFO - None +2022-11-04 12:12:08,557 - migrateData - INFO - None item +2022-11-04 12:12:08,559 - pgConnector - INFO - 218 +2022-11-04 12:12:08,559 - vos - INFO - None +2022-11-04 12:12:08,559 - migrateData - INFO - None item +2022-11-04 12:12:08,560 - pgConnector - INFO - 219 +2022-11-04 12:12:08,560 - vos - INFO - None +2022-11-04 12:12:08,560 - migrateData - INFO - None item +2022-11-04 12:12:08,561 - pgConnector - INFO - 220 +2022-11-04 12:12:08,561 - vos - INFO - None +2022-11-04 12:12:08,561 - migrateData - INFO - None item +2022-11-04 12:12:08,562 - pgConnector - INFO - 221 +2022-11-04 12:12:08,562 - vos - INFO - None +2022-11-04 12:12:08,562 - migrateData - INFO - None item +2022-11-04 12:12:08,563 - pgConnector - INFO - 222 +2022-11-04 12:12:08,563 - vos - INFO - None +2022-11-04 12:12:08,563 - migrateData - INFO - None item +2022-11-04 12:12:08,564 - pgConnector - INFO - 223 +2022-11-04 12:12:08,564 - vos - INFO - None +2022-11-04 12:12:08,564 - migrateData - INFO - None item +2022-11-04 12:12:08,565 - pgConnector - INFO - 224 +2022-11-04 12:12:08,565 - vos - INFO - None +2022-11-04 12:12:08,565 - migrateData - INFO - None item +2022-11-04 12:12:08,565 - migrateData - INFO - 28 vos created +2022-11-04 12:12:50,643 - pgConnector - INFO - 225 +2022-11-04 12:12:50,643 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,644 - pgConnector - INFO - 226 +2022-11-04 12:12:50,644 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,645 - pgConnector - INFO - 227 +2022-11-04 12:12:50,645 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,648 - pgConnector - INFO - 228 +2022-11-04 12:12:50,648 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,651 - pgConnector - INFO - 229 +2022-11-04 12:12:50,651 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,652 - pgConnector - INFO - 230 +2022-11-04 12:12:50,652 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,653 - pgConnector - INFO - 231 +2022-11-04 12:12:50,653 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,654 - pgConnector - INFO - 232 +2022-11-04 12:12:50,654 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,655 - pgConnector - INFO - 233 +2022-11-04 12:12:50,655 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,656 - pgConnector - INFO - 234 +2022-11-04 12:12:50,656 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,657 - pgConnector - INFO - 235 +2022-11-04 12:12:50,657 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,658 - pgConnector - INFO - 236 +2022-11-04 12:12:50,658 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,659 - pgConnector - INFO - 237 +2022-11-04 12:12:50,660 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,661 - pgConnector - INFO - 238 +2022-11-04 12:12:50,661 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,662 - pgConnector - INFO - 239 +2022-11-04 12:12:50,662 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,663 - pgConnector - INFO - 240 +2022-11-04 12:12:50,663 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,665 - pgConnector - INFO - 241 +2022-11-04 12:12:50,665 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,666 - pgConnector - INFO - 242 +2022-11-04 12:12:50,666 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,667 - pgConnector - INFO - 243 +2022-11-04 12:12:50,667 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,668 - pgConnector - INFO - 244 +2022-11-04 12:12:50,668 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,669 - pgConnector - INFO - 245 +2022-11-04 12:12:50,669 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,670 - pgConnector - INFO - 246 +2022-11-04 12:12:50,670 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,672 - pgConnector - INFO - 247 +2022-11-04 12:12:50,672 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,673 - pgConnector - INFO - 248 +2022-11-04 12:12:50,673 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,675 - pgConnector - INFO - 249 +2022-11-04 12:12:50,675 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,676 - pgConnector - INFO - 250 +2022-11-04 12:12:50,676 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,678 - pgConnector - INFO - 251 +2022-11-04 12:12:50,678 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,679 - pgConnector - INFO - 252 +2022-11-04 12:12:50,679 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:12:50,679 - migrateData - INFO - No new data found +2022-11-04 12:14:17,865 - pgConnector - INFO - 253 +2022-11-04 12:14:17,865 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,867 - pgConnector - INFO - 254 +2022-11-04 12:14:17,867 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,868 - pgConnector - INFO - 255 +2022-11-04 12:14:17,868 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,869 - pgConnector - INFO - 256 +2022-11-04 12:14:17,869 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,870 - pgConnector - INFO - 257 +2022-11-04 12:14:17,871 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,873 - pgConnector - INFO - 258 +2022-11-04 12:14:17,873 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,882 - pgConnector - INFO - 259 +2022-11-04 12:14:17,882 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,885 - pgConnector - INFO - 260 +2022-11-04 12:14:17,885 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,887 - pgConnector - INFO - 261 +2022-11-04 12:14:17,887 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,889 - pgConnector - INFO - 262 +2022-11-04 12:14:17,889 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,892 - pgConnector - INFO - 263 +2022-11-04 12:14:17,893 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,894 - pgConnector - INFO - 264 +2022-11-04 12:14:17,894 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,895 - pgConnector - INFO - 265 +2022-11-04 12:14:17,895 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,896 - pgConnector - INFO - 266 +2022-11-04 12:14:17,896 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,897 - pgConnector - INFO - 267 +2022-11-04 12:14:17,897 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,898 - pgConnector - INFO - 268 +2022-11-04 12:14:17,898 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,899 - pgConnector - INFO - 269 +2022-11-04 12:14:17,899 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,900 - pgConnector - INFO - 270 +2022-11-04 12:14:17,900 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,901 - pgConnector - INFO - 271 +2022-11-04 12:14:17,901 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,902 - pgConnector - INFO - 272 +2022-11-04 12:14:17,903 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,903 - pgConnector - INFO - 273 +2022-11-04 12:14:17,903 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,904 - pgConnector - INFO - 274 +2022-11-04 12:14:17,905 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,906 - pgConnector - INFO - 275 +2022-11-04 12:14:17,906 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,907 - pgConnector - INFO - 276 +2022-11-04 12:14:17,907 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,908 - pgConnector - INFO - 277 +2022-11-04 12:14:17,908 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,909 - pgConnector - INFO - 278 +2022-11-04 12:14:17,909 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,910 - pgConnector - INFO - 279 +2022-11-04 12:14:17,910 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,911 - pgConnector - INFO - 280 +2022-11-04 12:14:17,911 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:17,911 - migrateData - INFO - No new data found +2022-11-04 12:14:30,067 - pgConnector - INFO - 281 +2022-11-04 12:14:30,067 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,069 - pgConnector - INFO - 282 +2022-11-04 12:14:30,069 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,070 - pgConnector - INFO - 283 +2022-11-04 12:14:30,070 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,071 - pgConnector - INFO - 284 +2022-11-04 12:14:30,071 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,073 - pgConnector - INFO - 285 +2022-11-04 12:14:30,073 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,074 - pgConnector - INFO - 286 +2022-11-04 12:14:30,074 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,076 - pgConnector - INFO - 287 +2022-11-04 12:14:30,076 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,077 - pgConnector - INFO - 288 +2022-11-04 12:14:30,077 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,078 - pgConnector - INFO - 289 +2022-11-04 12:14:30,078 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,079 - pgConnector - INFO - 290 +2022-11-04 12:14:30,079 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,080 - pgConnector - INFO - 291 +2022-11-04 12:14:30,080 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,081 - pgConnector - INFO - 292 +2022-11-04 12:14:30,081 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,082 - pgConnector - INFO - 293 +2022-11-04 12:14:30,082 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,083 - pgConnector - INFO - 294 +2022-11-04 12:14:30,083 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,083 - pgConnector - INFO - 295 +2022-11-04 12:14:30,084 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,085 - pgConnector - INFO - 296 +2022-11-04 12:14:30,085 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,086 - pgConnector - INFO - 297 +2022-11-04 12:14:30,086 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,087 - pgConnector - INFO - 298 +2022-11-04 12:14:30,087 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,088 - pgConnector - INFO - 299 +2022-11-04 12:14:30,088 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,090 - pgConnector - INFO - 300 +2022-11-04 12:14:30,090 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,091 - pgConnector - INFO - 301 +2022-11-04 12:14:30,091 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,092 - pgConnector - INFO - 302 +2022-11-04 12:14:30,092 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,093 - pgConnector - INFO - 303 +2022-11-04 12:14:30,093 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,094 - pgConnector - INFO - 304 +2022-11-04 12:14:30,094 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,095 - pgConnector - INFO - 305 +2022-11-04 12:14:30,095 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,096 - pgConnector - INFO - 306 +2022-11-04 12:14:30,096 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,097 - pgConnector - INFO - 307 +2022-11-04 12:14:30,097 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,098 - pgConnector - INFO - 308 +2022-11-04 12:14:30,098 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' +2022-11-04 12:14:30,098 - migrateData - INFO - No new data found +2022-11-04 12:15:30,714 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,715 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,716 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,717 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,718 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,719 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,722 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,723 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,725 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,726 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,727 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,727 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,728 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,729 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,730 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,731 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,732 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,742 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,743 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,745 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,746 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,748 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,749 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,750 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,752 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,753 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,759 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,763 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:15:30,764 - migrateData - INFO - No new data found +2022-11-04 12:16:37,145 - pgConnector - INFO - None +2022-11-04 12:16:37,145 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,146 - pgConnector - INFO - None +2022-11-04 12:16:37,146 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,147 - pgConnector - INFO - None +2022-11-04 12:16:37,147 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,148 - pgConnector - INFO - None +2022-11-04 12:16:37,149 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,150 - pgConnector - INFO - None +2022-11-04 12:16:37,150 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,151 - pgConnector - INFO - None +2022-11-04 12:16:37,151 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,152 - pgConnector - INFO - None +2022-11-04 12:16:37,152 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,153 - pgConnector - INFO - None +2022-11-04 12:16:37,153 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,155 - pgConnector - INFO - None +2022-11-04 12:16:37,155 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,157 - pgConnector - INFO - None +2022-11-04 12:16:37,157 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,159 - pgConnector - INFO - None +2022-11-04 12:16:37,159 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,160 - pgConnector - INFO - None +2022-11-04 12:16:37,160 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,161 - pgConnector - INFO - None +2022-11-04 12:16:37,161 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,162 - pgConnector - INFO - None +2022-11-04 12:16:37,162 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,163 - pgConnector - INFO - None +2022-11-04 12:16:37,163 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,164 - pgConnector - INFO - None +2022-11-04 12:16:37,164 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,166 - pgConnector - INFO - None +2022-11-04 12:16:37,166 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,167 - pgConnector - INFO - None +2022-11-04 12:16:37,167 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,168 - pgConnector - INFO - None +2022-11-04 12:16:37,168 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,169 - pgConnector - INFO - None +2022-11-04 12:16:37,170 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,171 - pgConnector - INFO - None +2022-11-04 12:16:37,171 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,172 - pgConnector - INFO - None +2022-11-04 12:16:37,172 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,173 - pgConnector - INFO - None +2022-11-04 12:16:37,173 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,175 - pgConnector - INFO - None +2022-11-04 12:16:37,175 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,176 - pgConnector - INFO - None +2022-11-04 12:16:37,176 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,178 - pgConnector - INFO - None +2022-11-04 12:16:37,178 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,179 - pgConnector - INFO - None +2022-11-04 12:16:37,179 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,180 - pgConnector - INFO - None +2022-11-04 12:16:37,180 - pgConnector - ERROR - 'NoneType' object is not subscriptable +2022-11-04 12:16:37,180 - migrateData - INFO - No new data found +2022-11-04 12:17:03,061 - pgConnector - INFO - (365,) +2022-11-04 12:17:03,062 - vos - INFO - None +2022-11-04 12:17:03,062 - migrateData - INFO - None item +2022-11-04 12:17:03,063 - pgConnector - INFO - (366,) +2022-11-04 12:17:03,063 - vos - INFO - None +2022-11-04 12:17:03,063 - migrateData - INFO - None item +2022-11-04 12:17:03,064 - pgConnector - INFO - (367,) +2022-11-04 12:17:03,064 - vos - INFO - None +2022-11-04 12:17:03,064 - migrateData - INFO - None item +2022-11-04 12:17:03,065 - pgConnector - INFO - (368,) +2022-11-04 12:17:03,065 - vos - INFO - None +2022-11-04 12:17:03,065 - migrateData - INFO - None item +2022-11-04 12:17:03,066 - pgConnector - INFO - (369,) +2022-11-04 12:17:03,067 - vos - INFO - None +2022-11-04 12:17:03,067 - migrateData - INFO - None item +2022-11-04 12:17:03,068 - pgConnector - INFO - (370,) +2022-11-04 12:17:03,068 - vos - INFO - None +2022-11-04 12:17:03,068 - migrateData - INFO - None item +2022-11-04 12:17:03,074 - pgConnector - INFO - (371,) +2022-11-04 12:17:03,074 - vos - INFO - None +2022-11-04 12:17:03,074 - migrateData - INFO - None item +2022-11-04 12:17:03,075 - pgConnector - INFO - (372,) +2022-11-04 12:17:03,075 - vos - INFO - None +2022-11-04 12:17:03,075 - migrateData - INFO - None item +2022-11-04 12:17:03,077 - pgConnector - INFO - (373,) +2022-11-04 12:17:03,077 - vos - INFO - None +2022-11-04 12:17:03,077 - migrateData - INFO - None item +2022-11-04 12:17:03,078 - pgConnector - INFO - (374,) +2022-11-04 12:17:03,078 - vos - INFO - None +2022-11-04 12:17:03,078 - migrateData - INFO - None item +2022-11-04 12:17:03,079 - pgConnector - INFO - (375,) +2022-11-04 12:17:03,079 - vos - INFO - None +2022-11-04 12:17:03,080 - migrateData - INFO - None item +2022-11-04 12:17:03,081 - pgConnector - INFO - (376,) +2022-11-04 12:17:03,081 - vos - INFO - None +2022-11-04 12:17:03,081 - migrateData - INFO - None item +2022-11-04 12:17:03,082 - pgConnector - INFO - (377,) +2022-11-04 12:17:03,082 - vos - INFO - None +2022-11-04 12:17:03,082 - migrateData - INFO - None item +2022-11-04 12:17:03,084 - pgConnector - INFO - (378,) +2022-11-04 12:17:03,084 - vos - INFO - None +2022-11-04 12:17:03,084 - migrateData - INFO - None item +2022-11-04 12:17:03,085 - pgConnector - INFO - (379,) +2022-11-04 12:17:03,085 - vos - INFO - None +2022-11-04 12:17:03,085 - migrateData - INFO - None item +2022-11-04 12:17:03,087 - pgConnector - INFO - (380,) +2022-11-04 12:17:03,087 - vos - INFO - None +2022-11-04 12:17:03,087 - migrateData - INFO - None item +2022-11-04 12:17:03,088 - pgConnector - INFO - (381,) +2022-11-04 12:17:03,088 - vos - INFO - None +2022-11-04 12:17:03,088 - migrateData - INFO - None item +2022-11-04 12:17:03,089 - pgConnector - INFO - (382,) +2022-11-04 12:17:03,089 - vos - INFO - None +2022-11-04 12:17:03,089 - migrateData - INFO - None item +2022-11-04 12:17:03,091 - pgConnector - INFO - (383,) +2022-11-04 12:17:03,091 - vos - INFO - None +2022-11-04 12:17:03,091 - migrateData - INFO - None item +2022-11-04 12:17:03,092 - pgConnector - INFO - (384,) +2022-11-04 12:17:03,092 - vos - INFO - None +2022-11-04 12:17:03,092 - migrateData - INFO - None item +2022-11-04 12:17:03,093 - pgConnector - INFO - (385,) +2022-11-04 12:17:03,093 - vos - INFO - None +2022-11-04 12:17:03,093 - migrateData - INFO - None item +2022-11-04 12:17:03,094 - pgConnector - INFO - (386,) +2022-11-04 12:17:03,094 - vos - INFO - None +2022-11-04 12:17:03,094 - migrateData - INFO - None item +2022-11-04 12:17:03,095 - pgConnector - INFO - (387,) +2022-11-04 12:17:03,095 - vos - INFO - None +2022-11-04 12:17:03,095 - migrateData - INFO - None item +2022-11-04 12:17:03,096 - pgConnector - INFO - (388,) +2022-11-04 12:17:03,096 - vos - INFO - None +2022-11-04 12:17:03,096 - migrateData - INFO - None item +2022-11-04 12:17:03,097 - pgConnector - INFO - (389,) +2022-11-04 12:17:03,097 - vos - INFO - None +2022-11-04 12:17:03,097 - migrateData - INFO - None item +2022-11-04 12:17:03,098 - pgConnector - INFO - (390,) +2022-11-04 12:17:03,098 - vos - INFO - None +2022-11-04 12:17:03,098 - migrateData - INFO - None item +2022-11-04 12:17:03,099 - pgConnector - INFO - (391,) +2022-11-04 12:17:03,099 - vos - INFO - None +2022-11-04 12:17:03,099 - migrateData - INFO - None item +2022-11-04 12:17:03,100 - pgConnector - INFO - (392,) +2022-11-04 12:17:03,100 - vos - INFO - None +2022-11-04 12:17:03,100 - migrateData - INFO - None item +2022-11-04 12:17:03,100 - migrateData - INFO - 28 vos created +2022-11-04 12:18:04,361 - pgConnector - INFO - (393,) +2022-11-04 12:18:04,361 - vos - INFO - None +2022-11-04 12:18:04,361 - migrateData - INFO - None item +2022-11-04 12:18:04,363 - pgConnector - INFO - (394,) +2022-11-04 12:18:04,363 - vos - INFO - None +2022-11-04 12:18:04,363 - migrateData - INFO - None item +2022-11-04 12:18:04,364 - pgConnector - INFO - (395,) +2022-11-04 12:18:04,364 - vos - INFO - None +2022-11-04 12:18:04,364 - migrateData - INFO - None item +2022-11-04 12:18:04,365 - pgConnector - INFO - (396,) +2022-11-04 12:18:04,366 - vos - INFO - None +2022-11-04 12:18:04,366 - migrateData - INFO - None item +2022-11-04 12:18:04,367 - pgConnector - INFO - (397,) +2022-11-04 12:18:04,367 - vos - INFO - None +2022-11-04 12:18:04,367 - migrateData - INFO - None item +2022-11-04 12:18:04,369 - pgConnector - INFO - (398,) +2022-11-04 12:18:04,369 - vos - INFO - None +2022-11-04 12:18:04,369 - migrateData - INFO - None item +2022-11-04 12:18:04,370 - pgConnector - INFO - (399,) +2022-11-04 12:18:04,370 - vos - INFO - None +2022-11-04 12:18:04,370 - migrateData - INFO - None item +2022-11-04 12:18:04,371 - pgConnector - INFO - (400,) +2022-11-04 12:18:04,371 - vos - INFO - None +2022-11-04 12:18:04,371 - migrateData - INFO - None item +2022-11-04 12:18:04,372 - pgConnector - INFO - (401,) +2022-11-04 12:18:04,372 - vos - INFO - None +2022-11-04 12:18:04,372 - migrateData - INFO - None item +2022-11-04 12:18:04,373 - pgConnector - INFO - (402,) +2022-11-04 12:18:04,373 - vos - INFO - None +2022-11-04 12:18:04,373 - migrateData - INFO - None item +2022-11-04 12:18:04,375 - pgConnector - INFO - (403,) +2022-11-04 12:18:04,375 - vos - INFO - None +2022-11-04 12:18:04,375 - migrateData - INFO - None item +2022-11-04 12:18:04,376 - pgConnector - INFO - (404,) +2022-11-04 12:18:04,376 - vos - INFO - None +2022-11-04 12:18:04,376 - migrateData - INFO - None item +2022-11-04 12:18:04,377 - pgConnector - INFO - (405,) +2022-11-04 12:18:04,377 - vos - INFO - None +2022-11-04 12:18:04,377 - migrateData - INFO - None item +2022-11-04 12:18:04,378 - pgConnector - INFO - (406,) +2022-11-04 12:18:04,378 - vos - INFO - None +2022-11-04 12:18:04,378 - migrateData - INFO - None item +2022-11-04 12:18:04,379 - pgConnector - INFO - (407,) +2022-11-04 12:18:04,379 - vos - INFO - None +2022-11-04 12:18:04,380 - migrateData - INFO - None item +2022-11-04 12:18:04,381 - pgConnector - INFO - (408,) +2022-11-04 12:18:04,381 - vos - INFO - None +2022-11-04 12:18:04,381 - migrateData - INFO - None item +2022-11-04 12:18:04,382 - pgConnector - INFO - (409,) +2022-11-04 12:18:04,382 - vos - INFO - None +2022-11-04 12:18:04,382 - migrateData - INFO - None item +2022-11-04 12:18:04,383 - pgConnector - INFO - (410,) +2022-11-04 12:18:04,383 - vos - INFO - None +2022-11-04 12:18:04,383 - migrateData - INFO - None item +2022-11-04 12:18:04,385 - pgConnector - INFO - (411,) +2022-11-04 12:18:04,385 - vos - INFO - None +2022-11-04 12:18:04,385 - migrateData - INFO - None item +2022-11-04 12:18:04,386 - pgConnector - INFO - (412,) +2022-11-04 12:18:04,386 - vos - INFO - None +2022-11-04 12:18:04,386 - migrateData - INFO - None item +2022-11-04 12:18:04,388 - pgConnector - INFO - (413,) +2022-11-04 12:18:04,388 - vos - INFO - None +2022-11-04 12:18:04,388 - migrateData - INFO - None item +2022-11-04 12:18:04,389 - pgConnector - INFO - (414,) +2022-11-04 12:18:04,389 - vos - INFO - None +2022-11-04 12:18:04,389 - migrateData - INFO - None item +2022-11-04 12:18:04,390 - pgConnector - INFO - (415,) +2022-11-04 12:18:04,390 - vos - INFO - None +2022-11-04 12:18:04,390 - migrateData - INFO - None item +2022-11-04 12:18:04,391 - pgConnector - INFO - (416,) +2022-11-04 12:18:04,392 - vos - INFO - None +2022-11-04 12:18:04,392 - migrateData - INFO - None item +2022-11-04 12:18:04,393 - pgConnector - INFO - (417,) +2022-11-04 12:18:04,393 - vos - INFO - None +2022-11-04 12:18:04,393 - migrateData - INFO - None item +2022-11-04 12:18:04,394 - pgConnector - INFO - (418,) +2022-11-04 12:18:04,394 - vos - INFO - None +2022-11-04 12:18:04,394 - migrateData - INFO - None item +2022-11-04 12:18:04,395 - pgConnector - INFO - (419,) +2022-11-04 12:18:04,395 - vos - INFO - None +2022-11-04 12:18:04,395 - migrateData - INFO - None item +2022-11-04 12:18:04,396 - pgConnector - INFO - (420,) +2022-11-04 12:18:04,396 - vos - INFO - None +2022-11-04 12:18:04,396 - migrateData - INFO - None item +2022-11-04 12:18:04,396 - migrateData - INFO - 28 vos created +2022-11-04 12:18:40,872 - pgConnector - INFO - (421,) +2022-11-04 12:18:40,872 - vos - INFO - None +2022-11-04 12:18:40,872 - migrateData - INFO - None item +2022-11-04 12:18:40,874 - pgConnector - INFO - (422,) +2022-11-04 12:18:40,874 - vos - INFO - None +2022-11-04 12:18:40,874 - migrateData - INFO - None item +2022-11-04 12:18:40,875 - pgConnector - INFO - (423,) +2022-11-04 12:18:40,875 - vos - INFO - None +2022-11-04 12:18:40,875 - migrateData - INFO - None item +2022-11-04 12:18:40,877 - pgConnector - INFO - (424,) +2022-11-04 12:18:40,877 - vos - INFO - None +2022-11-04 12:18:40,877 - migrateData - INFO - None item +2022-11-04 12:18:40,878 - pgConnector - INFO - (425,) +2022-11-04 12:18:40,878 - vos - INFO - None +2022-11-04 12:18:40,879 - migrateData - INFO - None item +2022-11-04 12:18:40,881 - pgConnector - INFO - (426,) +2022-11-04 12:18:40,882 - vos - INFO - None +2022-11-04 12:18:40,882 - migrateData - INFO - None item +2022-11-04 12:18:40,883 - pgConnector - INFO - (427,) +2022-11-04 12:18:40,883 - vos - INFO - None +2022-11-04 12:18:40,883 - migrateData - INFO - None item +2022-11-04 12:18:40,884 - pgConnector - INFO - (428,) +2022-11-04 12:18:40,884 - vos - INFO - None +2022-11-04 12:18:40,884 - migrateData - INFO - None item +2022-11-04 12:18:40,885 - pgConnector - INFO - (429,) +2022-11-04 12:18:40,885 - vos - INFO - None +2022-11-04 12:18:40,885 - migrateData - INFO - None item +2022-11-04 12:18:40,886 - pgConnector - INFO - (430,) +2022-11-04 12:18:40,887 - vos - INFO - None +2022-11-04 12:18:40,887 - migrateData - INFO - None item +2022-11-04 12:18:40,888 - pgConnector - INFO - (431,) +2022-11-04 12:18:40,888 - vos - INFO - None +2022-11-04 12:18:40,888 - migrateData - INFO - None item +2022-11-04 12:18:40,888 - pgConnector - INFO - (432,) +2022-11-04 12:18:40,889 - vos - INFO - None +2022-11-04 12:18:40,889 - migrateData - INFO - None item +2022-11-04 12:18:40,889 - pgConnector - INFO - (433,) +2022-11-04 12:18:40,889 - vos - INFO - None +2022-11-04 12:18:40,890 - migrateData - INFO - None item +2022-11-04 12:18:40,890 - pgConnector - INFO - (434,) +2022-11-04 12:18:40,891 - vos - INFO - None +2022-11-04 12:18:40,891 - migrateData - INFO - None item +2022-11-04 12:18:40,891 - pgConnector - INFO - (435,) +2022-11-04 12:18:40,891 - vos - INFO - None +2022-11-04 12:18:40,892 - migrateData - INFO - None item +2022-11-04 12:18:40,893 - pgConnector - INFO - (436,) +2022-11-04 12:18:40,893 - vos - INFO - None +2022-11-04 12:18:40,893 - migrateData - INFO - None item +2022-11-04 12:18:40,894 - pgConnector - INFO - (437,) +2022-11-04 12:18:40,894 - vos - INFO - None +2022-11-04 12:18:40,894 - migrateData - INFO - None item +2022-11-04 12:18:40,895 - pgConnector - INFO - (438,) +2022-11-04 12:18:40,895 - vos - INFO - None +2022-11-04 12:18:40,895 - migrateData - INFO - None item +2022-11-04 12:18:40,896 - pgConnector - INFO - (439,) +2022-11-04 12:18:40,896 - vos - INFO - None +2022-11-04 12:18:40,897 - migrateData - INFO - None item +2022-11-04 12:18:40,898 - pgConnector - INFO - (440,) +2022-11-04 12:18:40,898 - vos - INFO - None +2022-11-04 12:18:40,898 - migrateData - INFO - None item +2022-11-04 12:18:40,899 - pgConnector - INFO - (441,) +2022-11-04 12:18:40,899 - vos - INFO - None +2022-11-04 12:18:40,899 - migrateData - INFO - None item +2022-11-04 12:18:40,900 - pgConnector - INFO - (442,) +2022-11-04 12:18:40,901 - vos - INFO - None +2022-11-04 12:18:40,901 - migrateData - INFO - None item +2022-11-04 12:18:40,903 - pgConnector - INFO - (443,) +2022-11-04 12:18:40,903 - vos - INFO - None +2022-11-04 12:18:40,903 - migrateData - INFO - None item +2022-11-04 12:18:40,905 - pgConnector - INFO - (444,) +2022-11-04 12:18:40,905 - vos - INFO - None +2022-11-04 12:18:40,905 - migrateData - INFO - None item +2022-11-04 12:18:40,906 - pgConnector - INFO - (445,) +2022-11-04 12:18:40,906 - vos - INFO - None +2022-11-04 12:18:40,906 - migrateData - INFO - None item +2022-11-04 12:18:40,907 - pgConnector - INFO - (446,) +2022-11-04 12:18:40,908 - vos - INFO - None +2022-11-04 12:18:40,908 - migrateData - INFO - None item +2022-11-04 12:18:40,910 - pgConnector - INFO - (447,) +2022-11-04 12:18:40,910 - vos - INFO - None +2022-11-04 12:18:40,910 - migrateData - INFO - None item +2022-11-04 12:18:40,911 - pgConnector - INFO - (448,) +2022-11-04 12:18:40,911 - vos - INFO - None +2022-11-04 12:18:40,911 - migrateData - INFO - None item +2022-11-04 12:18:40,911 - migrateData - INFO - 28 vos created +2022-11-04 12:19:35,396 - pgConnector - INFO - 449 +2022-11-04 12:19:35,397 - vos - INFO - 449 +2022-11-04 12:19:35,397 - migrateData - INFO - 449 item +2022-11-04 12:19:35,398 - pgConnector - INFO - 450 +2022-11-04 12:19:35,398 - vos - INFO - 450 +2022-11-04 12:19:35,398 - migrateData - INFO - 450 item +2022-11-04 12:19:35,399 - pgConnector - INFO - 451 +2022-11-04 12:19:35,400 - vos - INFO - 451 +2022-11-04 12:19:35,400 - migrateData - INFO - 451 item +2022-11-04 12:19:35,401 - pgConnector - INFO - 452 +2022-11-04 12:19:35,402 - vos - INFO - 452 +2022-11-04 12:19:35,402 - migrateData - INFO - 452 item +2022-11-04 12:19:35,407 - pgConnector - INFO - 453 +2022-11-04 12:19:35,407 - vos - INFO - 453 +2022-11-04 12:19:35,407 - migrateData - INFO - 453 item +2022-11-04 12:19:35,408 - pgConnector - INFO - 454 +2022-11-04 12:19:35,409 - vos - INFO - 454 +2022-11-04 12:19:35,409 - migrateData - INFO - 454 item +2022-11-04 12:19:35,410 - pgConnector - INFO - 455 +2022-11-04 12:19:35,410 - vos - INFO - 455 +2022-11-04 12:19:35,410 - migrateData - INFO - 455 item +2022-11-04 12:19:35,412 - pgConnector - INFO - 456 +2022-11-04 12:19:35,412 - vos - INFO - 456 +2022-11-04 12:19:35,412 - migrateData - INFO - 456 item +2022-11-04 12:19:35,413 - pgConnector - INFO - 457 +2022-11-04 12:19:35,413 - vos - INFO - 457 +2022-11-04 12:19:35,413 - migrateData - INFO - 457 item +2022-11-04 12:19:35,414 - pgConnector - INFO - 458 +2022-11-04 12:19:35,414 - vos - INFO - 458 +2022-11-04 12:19:35,414 - migrateData - INFO - 458 item +2022-11-04 12:19:35,415 - pgConnector - INFO - 459 +2022-11-04 12:19:35,415 - vos - INFO - 459 +2022-11-04 12:19:35,415 - migrateData - INFO - 459 item +2022-11-04 12:19:35,416 - pgConnector - INFO - 460 +2022-11-04 12:19:35,416 - vos - INFO - 460 +2022-11-04 12:19:35,416 - migrateData - INFO - 460 item +2022-11-04 12:19:35,417 - pgConnector - INFO - 461 +2022-11-04 12:19:35,417 - vos - INFO - 461 +2022-11-04 12:19:35,417 - migrateData - INFO - 461 item +2022-11-04 12:19:35,418 - pgConnector - INFO - 462 +2022-11-04 12:19:35,418 - vos - INFO - 462 +2022-11-04 12:19:35,418 - migrateData - INFO - 462 item +2022-11-04 12:19:35,419 - pgConnector - INFO - 463 +2022-11-04 12:19:35,419 - vos - INFO - 463 +2022-11-04 12:19:35,419 - migrateData - INFO - 463 item +2022-11-04 12:19:35,420 - pgConnector - INFO - 464 +2022-11-04 12:19:35,420 - vos - INFO - 464 +2022-11-04 12:19:35,420 - migrateData - INFO - 464 item +2022-11-04 12:19:35,422 - pgConnector - INFO - 465 +2022-11-04 12:19:35,423 - vos - INFO - 465 +2022-11-04 12:19:35,423 - migrateData - INFO - 465 item +2022-11-04 12:19:35,424 - pgConnector - INFO - 466 +2022-11-04 12:19:35,424 - vos - INFO - 466 +2022-11-04 12:19:35,424 - migrateData - INFO - 466 item +2022-11-04 12:19:35,425 - pgConnector - INFO - 467 +2022-11-04 12:19:35,426 - vos - INFO - 467 +2022-11-04 12:19:35,427 - migrateData - INFO - 467 item +2022-11-04 12:19:35,428 - pgConnector - INFO - 468 +2022-11-04 12:19:35,428 - vos - INFO - 468 +2022-11-04 12:19:35,428 - migrateData - INFO - 468 item +2022-11-04 12:19:35,429 - pgConnector - INFO - 469 +2022-11-04 12:19:35,429 - vos - INFO - 469 +2022-11-04 12:19:35,429 - migrateData - INFO - 469 item +2022-11-04 12:19:35,430 - pgConnector - INFO - 470 +2022-11-04 12:19:35,430 - vos - INFO - 470 +2022-11-04 12:19:35,430 - migrateData - INFO - 470 item +2022-11-04 12:19:35,431 - pgConnector - INFO - 471 +2022-11-04 12:19:35,431 - vos - INFO - 471 +2022-11-04 12:19:35,432 - migrateData - INFO - 471 item +2022-11-04 12:19:35,433 - pgConnector - INFO - 472 +2022-11-04 12:19:35,433 - vos - INFO - 472 +2022-11-04 12:19:35,433 - migrateData - INFO - 472 item +2022-11-04 12:19:35,435 - pgConnector - INFO - 473 +2022-11-04 12:19:35,435 - vos - INFO - 473 +2022-11-04 12:19:35,435 - migrateData - INFO - 473 item +2022-11-04 12:19:35,436 - pgConnector - INFO - 474 +2022-11-04 12:19:35,436 - vos - INFO - 474 +2022-11-04 12:19:35,436 - migrateData - INFO - 474 item +2022-11-04 12:19:35,439 - pgConnector - INFO - 475 +2022-11-04 12:19:35,439 - vos - INFO - 475 +2022-11-04 12:19:35,439 - migrateData - INFO - 475 item +2022-11-04 12:19:35,440 - pgConnector - INFO - 476 +2022-11-04 12:19:35,440 - vos - INFO - 476 +2022-11-04 12:19:35,440 - migrateData - INFO - 476 item +2022-11-04 12:19:35,440 - migrateData - INFO - No new data found +2022-11-04 12:20:59,151 - pgConnector - INFO - 477 +2022-11-04 12:20:59,152 - vos - INFO - 477 +2022-11-04 12:20:59,152 - migrateData - INFO - 477 item +2022-11-04 12:20:59,153 - pgConnector - INFO - 478 +2022-11-04 12:20:59,153 - vos - INFO - 478 +2022-11-04 12:20:59,153 - migrateData - INFO - 478 item +2022-11-04 12:20:59,154 - pgConnector - INFO - 479 +2022-11-04 12:20:59,154 - vos - INFO - 479 +2022-11-04 12:20:59,155 - migrateData - INFO - 479 item +2022-11-04 12:20:59,156 - pgConnector - INFO - 480 +2022-11-04 12:20:59,156 - vos - INFO - 480 +2022-11-04 12:20:59,156 - migrateData - INFO - 480 item +2022-11-04 12:20:59,157 - pgConnector - INFO - 481 +2022-11-04 12:20:59,157 - vos - INFO - 481 +2022-11-04 12:20:59,157 - migrateData - INFO - 481 item +2022-11-04 12:20:59,159 - pgConnector - INFO - 482 +2022-11-04 12:20:59,159 - vos - INFO - 482 +2022-11-04 12:20:59,159 - migrateData - INFO - 482 item +2022-11-04 12:20:59,160 - pgConnector - INFO - 483 +2022-11-04 12:20:59,160 - vos - INFO - 483 +2022-11-04 12:20:59,160 - migrateData - INFO - 483 item +2022-11-04 12:20:59,166 - pgConnector - INFO - 484 +2022-11-04 12:20:59,167 - vos - INFO - 484 +2022-11-04 12:20:59,167 - migrateData - INFO - 484 item +2022-11-04 12:20:59,171 - pgConnector - INFO - 485 +2022-11-04 12:20:59,171 - vos - INFO - 485 +2022-11-04 12:20:59,171 - migrateData - INFO - 485 item +2022-11-04 12:20:59,172 - pgConnector - INFO - 486 +2022-11-04 12:20:59,172 - vos - INFO - 486 +2022-11-04 12:20:59,172 - migrateData - INFO - 486 item +2022-11-04 12:20:59,173 - pgConnector - INFO - 487 +2022-11-04 12:20:59,173 - vos - INFO - 487 +2022-11-04 12:20:59,173 - migrateData - INFO - 487 item +2022-11-04 12:20:59,175 - pgConnector - INFO - 488 +2022-11-04 12:20:59,175 - vos - INFO - 488 +2022-11-04 12:20:59,175 - migrateData - INFO - 488 item +2022-11-04 12:20:59,176 - pgConnector - INFO - 489 +2022-11-04 12:20:59,176 - vos - INFO - 489 +2022-11-04 12:20:59,176 - migrateData - INFO - 489 item +2022-11-04 12:20:59,177 - pgConnector - INFO - 490 +2022-11-04 12:20:59,177 - vos - INFO - 490 +2022-11-04 12:20:59,177 - migrateData - INFO - 490 item +2022-11-04 12:20:59,178 - pgConnector - INFO - 491 +2022-11-04 12:20:59,178 - vos - INFO - 491 +2022-11-04 12:20:59,178 - migrateData - INFO - 491 item +2022-11-04 12:20:59,181 - pgConnector - INFO - 492 +2022-11-04 12:20:59,181 - vos - INFO - 492 +2022-11-04 12:20:59,181 - migrateData - INFO - 492 item +2022-11-04 12:20:59,183 - pgConnector - INFO - 493 +2022-11-04 12:20:59,183 - vos - INFO - 493 +2022-11-04 12:20:59,183 - migrateData - INFO - 493 item +2022-11-04 12:20:59,184 - pgConnector - INFO - 494 +2022-11-04 12:20:59,185 - vos - INFO - 494 +2022-11-04 12:20:59,185 - migrateData - INFO - 494 item +2022-11-04 12:20:59,186 - pgConnector - INFO - 495 +2022-11-04 12:20:59,186 - vos - INFO - 495 +2022-11-04 12:20:59,186 - migrateData - INFO - 495 item +2022-11-04 12:20:59,187 - pgConnector - INFO - 496 +2022-11-04 12:20:59,187 - vos - INFO - 496 +2022-11-04 12:20:59,188 - migrateData - INFO - 496 item +2022-11-04 12:20:59,189 - pgConnector - INFO - 497 +2022-11-04 12:20:59,189 - vos - INFO - 497 +2022-11-04 12:20:59,189 - migrateData - INFO - 497 item +2022-11-04 12:20:59,190 - pgConnector - INFO - 498 +2022-11-04 12:20:59,190 - vos - INFO - 498 +2022-11-04 12:20:59,190 - migrateData - INFO - 498 item +2022-11-04 12:20:59,191 - pgConnector - INFO - 499 +2022-11-04 12:20:59,191 - vos - INFO - 499 +2022-11-04 12:20:59,191 - migrateData - INFO - 499 item +2022-11-04 12:20:59,192 - pgConnector - INFO - 500 +2022-11-04 12:20:59,192 - vos - INFO - 500 +2022-11-04 12:20:59,192 - migrateData - INFO - 500 item +2022-11-04 12:20:59,192 - pgConnector - INFO - 501 +2022-11-04 12:20:59,193 - vos - INFO - 501 +2022-11-04 12:20:59,193 - migrateData - INFO - 501 item +2022-11-04 12:20:59,195 - pgConnector - INFO - 502 +2022-11-04 12:20:59,195 - vos - INFO - 502 +2022-11-04 12:20:59,195 - migrateData - INFO - 502 item +2022-11-04 12:20:59,196 - pgConnector - INFO - 503 +2022-11-04 12:20:59,196 - vos - INFO - 503 +2022-11-04 12:20:59,196 - migrateData - INFO - 503 item +2022-11-04 12:20:59,197 - pgConnector - INFO - 504 +2022-11-04 12:20:59,197 - vos - INFO - 504 +2022-11-04 12:20:59,198 - migrateData - INFO - 504 item +2022-11-04 12:20:59,198 - migrateData - INFO - No new data found +2022-11-04 12:23:33,851 - pgConnector - INFO - 505 +2022-11-04 12:23:33,851 - vos - INFO - 505 +2022-11-04 12:23:33,851 - migrateData - INFO - 505 item +2022-11-04 12:23:33,853 - pgConnector - INFO - 506 +2022-11-04 12:23:33,853 - vos - INFO - 506 +2022-11-04 12:23:33,853 - migrateData - INFO - 506 item +2022-11-04 12:23:33,854 - pgConnector - INFO - 507 +2022-11-04 12:23:33,855 - vos - INFO - 507 +2022-11-04 12:23:33,855 - migrateData - INFO - 507 item +2022-11-04 12:23:33,856 - pgConnector - INFO - 508 +2022-11-04 12:23:33,856 - vos - INFO - 508 +2022-11-04 12:23:33,856 - migrateData - INFO - 508 item +2022-11-04 12:23:33,859 - pgConnector - INFO - 509 +2022-11-04 12:23:33,859 - vos - INFO - 509 +2022-11-04 12:23:33,859 - migrateData - INFO - 509 item +2022-11-04 12:23:33,861 - pgConnector - INFO - 510 +2022-11-04 12:23:33,861 - vos - INFO - 510 +2022-11-04 12:23:33,861 - migrateData - INFO - 510 item +2022-11-04 12:23:33,862 - pgConnector - INFO - 511 +2022-11-04 12:23:33,862 - vos - INFO - 511 +2022-11-04 12:23:33,862 - migrateData - INFO - 511 item +2022-11-04 12:23:33,863 - pgConnector - INFO - 512 +2022-11-04 12:23:33,863 - vos - INFO - 512 +2022-11-04 12:23:33,863 - migrateData - INFO - 512 item +2022-11-04 12:23:33,864 - pgConnector - INFO - 513 +2022-11-04 12:23:33,864 - vos - INFO - 513 +2022-11-04 12:23:33,864 - migrateData - INFO - 513 item +2022-11-04 12:23:33,865 - pgConnector - INFO - 514 +2022-11-04 12:23:33,865 - vos - INFO - 514 +2022-11-04 12:23:33,865 - migrateData - INFO - 514 item +2022-11-04 12:23:33,866 - pgConnector - INFO - 515 +2022-11-04 12:23:33,866 - vos - INFO - 515 +2022-11-04 12:23:33,866 - migrateData - INFO - 515 item +2022-11-04 12:23:33,867 - pgConnector - INFO - 516 +2022-11-04 12:23:33,867 - vos - INFO - 516 +2022-11-04 12:23:33,867 - migrateData - INFO - 516 item +2022-11-04 12:23:33,868 - pgConnector - INFO - 517 +2022-11-04 12:23:33,868 - vos - INFO - 517 +2022-11-04 12:23:33,868 - migrateData - INFO - 517 item +2022-11-04 12:23:33,869 - pgConnector - INFO - 518 +2022-11-04 12:23:33,869 - vos - INFO - 518 +2022-11-04 12:23:33,869 - migrateData - INFO - 518 item +2022-11-04 12:23:33,870 - pgConnector - INFO - 519 +2022-11-04 12:23:33,870 - vos - INFO - 519 +2022-11-04 12:23:33,870 - migrateData - INFO - 519 item +2022-11-04 12:23:33,871 - pgConnector - INFO - 520 +2022-11-04 12:23:33,871 - vos - INFO - 520 +2022-11-04 12:23:33,871 - migrateData - INFO - 520 item +2022-11-04 12:23:33,872 - pgConnector - INFO - 521 +2022-11-04 12:23:33,872 - vos - INFO - 521 +2022-11-04 12:23:33,872 - migrateData - INFO - 521 item +2022-11-04 12:23:33,873 - pgConnector - INFO - 522 +2022-11-04 12:23:33,873 - vos - INFO - 522 +2022-11-04 12:23:33,873 - migrateData - INFO - 522 item +2022-11-04 12:23:33,874 - pgConnector - INFO - 523 +2022-11-04 12:23:33,874 - vos - INFO - 523 +2022-11-04 12:23:33,874 - migrateData - INFO - 523 item +2022-11-04 12:23:33,876 - pgConnector - INFO - 524 +2022-11-04 12:23:33,876 - vos - INFO - 524 +2022-11-04 12:23:33,876 - migrateData - INFO - 524 item +2022-11-04 12:23:33,877 - pgConnector - INFO - 525 +2022-11-04 12:23:33,877 - vos - INFO - 525 +2022-11-04 12:23:33,877 - migrateData - INFO - 525 item +2022-11-04 12:23:33,878 - pgConnector - INFO - 526 +2022-11-04 12:23:33,878 - vos - INFO - 526 +2022-11-04 12:23:33,878 - migrateData - INFO - 526 item +2022-11-04 12:23:33,879 - pgConnector - INFO - 527 +2022-11-04 12:23:33,879 - vos - INFO - 527 +2022-11-04 12:23:33,879 - migrateData - INFO - 527 item +2022-11-04 12:23:33,880 - pgConnector - INFO - 528 +2022-11-04 12:23:33,880 - vos - INFO - 528 +2022-11-04 12:23:33,881 - migrateData - INFO - 528 item +2022-11-04 12:23:33,881 - pgConnector - INFO - 529 +2022-11-04 12:23:33,881 - vos - INFO - 529 +2022-11-04 12:23:33,882 - migrateData - INFO - 529 item +2022-11-04 12:23:33,883 - pgConnector - INFO - 530 +2022-11-04 12:23:33,883 - vos - INFO - 530 +2022-11-04 12:23:33,883 - migrateData - INFO - 530 item +2022-11-04 12:23:33,884 - pgConnector - INFO - 531 +2022-11-04 12:23:33,885 - vos - INFO - 531 +2022-11-04 12:23:33,885 - migrateData - INFO - 531 item +2022-11-04 12:23:33,886 - pgConnector - INFO - 532 +2022-11-04 12:23:33,886 - vos - INFO - 532 +2022-11-04 12:23:33,886 - migrateData - INFO - 532 item +2022-11-04 12:23:33,886 - migrateData - INFO - No new data found +2022-11-04 12:24:41,390 - pgConnector - INFO - 533 +2022-11-04 12:24:41,390 - vos - INFO - 533 +2022-11-04 12:24:41,390 - migrateData - INFO - 533 item +2022-11-04 12:24:41,402 - pgConnector - INFO - 534 +2022-11-04 12:24:41,402 - vos - INFO - 534 +2022-11-04 12:24:41,402 - migrateData - INFO - 534 item +2022-11-04 12:24:41,412 - pgConnector - INFO - 535 +2022-11-04 12:24:41,412 - vos - INFO - 535 +2022-11-04 12:24:41,412 - migrateData - INFO - 535 item +2022-11-04 12:24:41,413 - pgConnector - INFO - 536 +2022-11-04 12:24:41,414 - vos - INFO - 536 +2022-11-04 12:24:41,414 - migrateData - INFO - 536 item +2022-11-04 12:24:41,418 - pgConnector - INFO - 537 +2022-11-04 12:24:41,419 - vos - INFO - 537 +2022-11-04 12:24:41,419 - migrateData - INFO - 537 item +2022-11-04 12:24:41,420 - pgConnector - INFO - 538 +2022-11-04 12:24:41,420 - vos - INFO - 538 +2022-11-04 12:24:41,420 - migrateData - INFO - 538 item +2022-11-04 12:24:41,422 - pgConnector - INFO - 539 +2022-11-04 12:24:41,422 - vos - INFO - 539 +2022-11-04 12:24:41,422 - migrateData - INFO - 539 item +2022-11-04 12:24:41,423 - pgConnector - INFO - 540 +2022-11-04 12:24:41,424 - vos - INFO - 540 +2022-11-04 12:24:41,424 - migrateData - INFO - 540 item +2022-11-04 12:24:41,425 - pgConnector - INFO - 541 +2022-11-04 12:24:41,425 - vos - INFO - 541 +2022-11-04 12:24:41,425 - migrateData - INFO - 541 item +2022-11-04 12:24:41,426 - pgConnector - INFO - 542 +2022-11-04 12:24:41,426 - vos - INFO - 542 +2022-11-04 12:24:41,426 - migrateData - INFO - 542 item +2022-11-04 12:24:41,427 - pgConnector - INFO - 543 +2022-11-04 12:24:41,427 - vos - INFO - 543 +2022-11-04 12:24:41,427 - migrateData - INFO - 543 item +2022-11-04 12:24:41,428 - pgConnector - INFO - 544 +2022-11-04 12:24:41,428 - vos - INFO - 544 +2022-11-04 12:24:41,428 - migrateData - INFO - 544 item +2022-11-04 12:24:41,429 - pgConnector - INFO - 545 +2022-11-04 12:24:41,429 - vos - INFO - 545 +2022-11-04 12:24:41,429 - migrateData - INFO - 545 item +2022-11-04 12:24:41,430 - pgConnector - INFO - 546 +2022-11-04 12:24:41,430 - vos - INFO - 546 +2022-11-04 12:24:41,430 - migrateData - INFO - 546 item +2022-11-04 12:24:41,431 - pgConnector - INFO - 547 +2022-11-04 12:24:41,431 - vos - INFO - 547 +2022-11-04 12:24:41,431 - migrateData - INFO - 547 item +2022-11-04 12:24:41,434 - pgConnector - INFO - 548 +2022-11-04 12:24:41,435 - vos - INFO - 548 +2022-11-04 12:24:41,435 - migrateData - INFO - 548 item +2022-11-04 12:24:41,436 - pgConnector - INFO - 549 +2022-11-04 12:24:41,436 - vos - INFO - 549 +2022-11-04 12:24:41,436 - migrateData - INFO - 549 item +2022-11-04 12:24:41,438 - pgConnector - INFO - 550 +2022-11-04 12:24:41,438 - vos - INFO - 550 +2022-11-04 12:24:41,438 - migrateData - INFO - 550 item +2022-11-04 12:24:41,439 - pgConnector - INFO - 551 +2022-11-04 12:24:41,439 - vos - INFO - 551 +2022-11-04 12:24:41,440 - migrateData - INFO - 551 item +2022-11-04 12:24:41,441 - pgConnector - INFO - 552 +2022-11-04 12:24:41,441 - vos - INFO - 552 +2022-11-04 12:24:41,441 - migrateData - INFO - 552 item +2022-11-04 12:24:41,442 - pgConnector - INFO - 553 +2022-11-04 12:24:41,442 - vos - INFO - 553 +2022-11-04 12:24:41,442 - migrateData - INFO - 553 item +2022-11-04 12:24:41,443 - pgConnector - INFO - 554 +2022-11-04 12:24:41,443 - vos - INFO - 554 +2022-11-04 12:24:41,443 - migrateData - INFO - 554 item +2022-11-04 12:24:41,444 - pgConnector - INFO - 555 +2022-11-04 12:24:41,445 - vos - INFO - 555 +2022-11-04 12:24:41,445 - migrateData - INFO - 555 item +2022-11-04 12:24:41,446 - pgConnector - INFO - 556 +2022-11-04 12:24:41,446 - vos - INFO - 556 +2022-11-04 12:24:41,446 - migrateData - INFO - 556 item +2022-11-04 12:24:41,447 - pgConnector - INFO - 557 +2022-11-04 12:24:41,447 - vos - INFO - 557 +2022-11-04 12:24:41,447 - migrateData - INFO - 557 item +2022-11-04 12:24:41,448 - pgConnector - INFO - 558 +2022-11-04 12:24:41,448 - vos - INFO - 558 +2022-11-04 12:24:41,448 - migrateData - INFO - 558 item +2022-11-04 12:24:41,449 - pgConnector - INFO - 559 +2022-11-04 12:24:41,450 - vos - INFO - 559 +2022-11-04 12:24:41,450 - migrateData - INFO - 559 item +2022-11-04 12:24:41,451 - pgConnector - INFO - 560 +2022-11-04 12:24:41,451 - vos - INFO - 560 +2022-11-04 12:24:41,451 - migrateData - INFO - 560 item +2022-11-04 12:24:41,451 - migrateData - INFO - No new data found +2022-11-04 12:26:12,449 - pgConnector - INFO - 561 +2022-11-04 12:26:12,449 - vos - INFO - 561 +2022-11-04 12:26:12,450 - migrateData - INFO - 561 item atataatatat +2022-11-04 12:26:12,451 - pgConnector - INFO - 562 +2022-11-04 12:26:12,451 - vos - INFO - 562 +2022-11-04 12:26:12,451 - migrateData - INFO - 562 item atataatatat +2022-11-04 12:26:12,452 - pgConnector - INFO - 563 +2022-11-04 12:26:12,452 - vos - INFO - 563 +2022-11-04 12:26:12,452 - migrateData - INFO - 563 item atataatatat +2022-11-04 12:26:12,453 - pgConnector - INFO - 564 +2022-11-04 12:26:12,453 - vos - INFO - 564 +2022-11-04 12:26:12,453 - migrateData - INFO - 564 item atataatatat +2022-11-04 12:26:12,455 - pgConnector - INFO - 565 +2022-11-04 12:26:12,455 - vos - INFO - 565 +2022-11-04 12:26:12,455 - migrateData - INFO - 565 item atataatatat +2022-11-04 12:26:12,456 - pgConnector - INFO - 566 +2022-11-04 12:26:12,456 - vos - INFO - 566 +2022-11-04 12:26:12,456 - migrateData - INFO - 566 item atataatatat +2022-11-04 12:26:12,458 - pgConnector - INFO - 567 +2022-11-04 12:26:12,458 - vos - INFO - 567 +2022-11-04 12:26:12,458 - migrateData - INFO - 567 item atataatatat +2022-11-04 12:26:12,459 - pgConnector - INFO - 568 +2022-11-04 12:26:12,459 - vos - INFO - 568 +2022-11-04 12:26:12,459 - migrateData - INFO - 568 item atataatatat +2022-11-04 12:26:12,460 - pgConnector - INFO - 569 +2022-11-04 12:26:12,460 - vos - INFO - 569 +2022-11-04 12:26:12,460 - migrateData - INFO - 569 item atataatatat +2022-11-04 12:26:12,461 - pgConnector - INFO - 570 +2022-11-04 12:26:12,462 - vos - INFO - 570 +2022-11-04 12:26:12,462 - migrateData - INFO - 570 item atataatatat +2022-11-04 12:26:12,463 - pgConnector - INFO - 571 +2022-11-04 12:26:12,463 - vos - INFO - 571 +2022-11-04 12:26:12,463 - migrateData - INFO - 571 item atataatatat +2022-11-04 12:26:12,464 - pgConnector - INFO - 572 +2022-11-04 12:26:12,464 - vos - INFO - 572 +2022-11-04 12:26:12,464 - migrateData - INFO - 572 item atataatatat +2022-11-04 12:26:12,465 - pgConnector - INFO - 573 +2022-11-04 12:26:12,465 - vos - INFO - 573 +2022-11-04 12:26:12,465 - migrateData - INFO - 573 item atataatatat +2022-11-04 12:26:12,466 - pgConnector - INFO - 574 +2022-11-04 12:26:12,466 - vos - INFO - 574 +2022-11-04 12:26:12,466 - migrateData - INFO - 574 item atataatatat +2022-11-04 12:26:12,467 - pgConnector - INFO - 575 +2022-11-04 12:26:12,467 - vos - INFO - 575 +2022-11-04 12:26:12,467 - migrateData - INFO - 575 item atataatatat +2022-11-04 12:26:12,468 - pgConnector - INFO - 576 +2022-11-04 12:26:12,468 - vos - INFO - 576 +2022-11-04 12:26:12,468 - migrateData - INFO - 576 item atataatatat +2022-11-04 12:26:12,469 - pgConnector - INFO - 577 +2022-11-04 12:26:12,469 - vos - INFO - 577 +2022-11-04 12:26:12,469 - migrateData - INFO - 577 item atataatatat +2022-11-04 12:26:12,470 - pgConnector - INFO - 578 +2022-11-04 12:26:12,470 - vos - INFO - 578 +2022-11-04 12:26:12,470 - migrateData - INFO - 578 item atataatatat +2022-11-04 12:26:12,472 - pgConnector - INFO - 579 +2022-11-04 12:26:12,472 - vos - INFO - 579 +2022-11-04 12:26:12,472 - migrateData - INFO - 579 item atataatatat +2022-11-04 12:26:12,473 - pgConnector - INFO - 580 +2022-11-04 12:26:12,473 - vos - INFO - 580 +2022-11-04 12:26:12,473 - migrateData - INFO - 580 item atataatatat +2022-11-04 12:26:12,474 - pgConnector - INFO - 581 +2022-11-04 12:26:12,474 - vos - INFO - 581 +2022-11-04 12:26:12,474 - migrateData - INFO - 581 item atataatatat +2022-11-04 12:26:12,475 - pgConnector - INFO - 582 +2022-11-04 12:26:12,475 - vos - INFO - 582 +2022-11-04 12:26:12,475 - migrateData - INFO - 582 item atataatatat +2022-11-04 12:26:12,476 - pgConnector - INFO - 583 +2022-11-04 12:26:12,476 - vos - INFO - 583 +2022-11-04 12:26:12,476 - migrateData - INFO - 583 item atataatatat +2022-11-04 12:26:12,477 - pgConnector - INFO - 584 +2022-11-04 12:26:12,477 - vos - INFO - 584 +2022-11-04 12:26:12,477 - migrateData - INFO - 584 item atataatatat +2022-11-04 12:26:12,478 - pgConnector - INFO - 585 +2022-11-04 12:26:12,478 - vos - INFO - 585 +2022-11-04 12:26:12,478 - migrateData - INFO - 585 item atataatatat +2022-11-04 12:26:12,479 - pgConnector - INFO - 586 +2022-11-04 12:26:12,479 - vos - INFO - 586 +2022-11-04 12:26:12,479 - migrateData - INFO - 586 item atataatatat +2022-11-04 12:26:12,480 - pgConnector - INFO - 587 +2022-11-04 12:26:12,480 - vos - INFO - 587 +2022-11-04 12:26:12,480 - migrateData - INFO - 587 item atataatatat +2022-11-04 12:26:12,481 - pgConnector - INFO - 588 +2022-11-04 12:26:12,482 - vos - INFO - 588 +2022-11-04 12:26:12,482 - migrateData - INFO - 588 item atataatatat +2022-11-04 12:26:12,482 - migrateData - INFO - No new data found +2022-11-04 12:26:50,477 - pgConnector - INFO - 589 +2022-11-04 12:26:50,478 - vos - INFO - 589 +2022-11-04 12:26:50,479 - pgConnector - INFO - 590 +2022-11-04 12:26:50,479 - vos - INFO - 590 +2022-11-04 12:26:50,480 - pgConnector - INFO - 591 +2022-11-04 12:26:50,481 - vos - INFO - 591 +2022-11-04 12:26:50,482 - pgConnector - INFO - 592 +2022-11-04 12:26:50,482 - vos - INFO - 592 +2022-11-04 12:26:50,483 - pgConnector - INFO - 593 +2022-11-04 12:26:50,483 - vos - INFO - 593 +2022-11-04 12:26:50,484 - pgConnector - INFO - 594 +2022-11-04 12:26:50,484 - vos - INFO - 594 +2022-11-04 12:26:50,485 - pgConnector - INFO - 595 +2022-11-04 12:26:50,485 - vos - INFO - 595 +2022-11-04 12:26:50,486 - pgConnector - INFO - 596 +2022-11-04 12:26:50,486 - vos - INFO - 596 +2022-11-04 12:26:50,488 - pgConnector - INFO - 597 +2022-11-04 12:26:50,488 - vos - INFO - 597 +2022-11-04 12:26:50,489 - pgConnector - INFO - 598 +2022-11-04 12:26:50,489 - vos - INFO - 598 +2022-11-04 12:26:50,490 - pgConnector - INFO - 599 +2022-11-04 12:26:50,490 - vos - INFO - 599 +2022-11-04 12:26:50,491 - pgConnector - INFO - 600 +2022-11-04 12:26:50,491 - vos - INFO - 600 +2022-11-04 12:26:50,492 - pgConnector - INFO - 601 +2022-11-04 12:26:50,492 - vos - INFO - 601 +2022-11-04 12:26:50,493 - pgConnector - INFO - 602 +2022-11-04 12:26:50,493 - vos - INFO - 602 +2022-11-04 12:26:50,494 - pgConnector - INFO - 603 +2022-11-04 12:26:50,494 - vos - INFO - 603 +2022-11-04 12:26:50,495 - pgConnector - INFO - 604 +2022-11-04 12:26:50,495 - vos - INFO - 604 +2022-11-04 12:26:50,497 - pgConnector - INFO - 605 +2022-11-04 12:26:50,497 - vos - INFO - 605 +2022-11-04 12:26:50,499 - pgConnector - INFO - 606 +2022-11-04 12:26:50,499 - vos - INFO - 606 +2022-11-04 12:26:50,500 - pgConnector - INFO - 607 +2022-11-04 12:26:50,500 - vos - INFO - 607 +2022-11-04 12:26:50,501 - pgConnector - INFO - 608 +2022-11-04 12:26:50,501 - vos - INFO - 608 +2022-11-04 12:26:50,502 - pgConnector - INFO - 609 +2022-11-04 12:26:50,502 - vos - INFO - 609 +2022-11-04 12:26:50,503 - pgConnector - INFO - 610 +2022-11-04 12:26:50,503 - vos - INFO - 610 +2022-11-04 12:26:50,504 - pgConnector - INFO - 611 +2022-11-04 12:26:50,504 - vos - INFO - 611 +2022-11-04 12:26:50,505 - pgConnector - INFO - 612 +2022-11-04 12:26:50,505 - vos - INFO - 612 +2022-11-04 12:26:50,506 - pgConnector - INFO - 613 +2022-11-04 12:26:50,506 - vos - INFO - 613 +2022-11-04 12:26:50,507 - pgConnector - INFO - 614 +2022-11-04 12:26:50,507 - vos - INFO - 614 +2022-11-04 12:26:50,508 - pgConnector - INFO - 615 +2022-11-04 12:26:50,508 - vos - INFO - 615 +2022-11-04 12:26:50,509 - pgConnector - INFO - 616 +2022-11-04 12:26:50,509 - vos - INFO - 616 +2022-11-04 12:26:50,509 - migrateData - INFO - No new data found +2022-11-04 12:27:05,781 - pgConnector - INFO - 617 +2022-11-04 12:27:05,781 - vos - INFO - 617 +2022-11-04 12:27:05,782 - pgConnector - INFO - 618 +2022-11-04 12:27:05,782 - vos - INFO - 618 +2022-11-04 12:27:05,783 - pgConnector - INFO - 619 +2022-11-04 12:27:05,783 - vos - INFO - 619 +2022-11-04 12:27:05,793 - pgConnector - INFO - 620 +2022-11-04 12:27:05,793 - vos - INFO - 620 +2022-11-04 12:27:05,795 - pgConnector - INFO - 621 +2022-11-04 12:27:05,795 - vos - INFO - 621 +2022-11-04 12:27:05,796 - pgConnector - INFO - 622 +2022-11-04 12:27:05,796 - vos - INFO - 622 +2022-11-04 12:27:05,798 - pgConnector - INFO - 623 +2022-11-04 12:27:05,798 - vos - INFO - 623 +2022-11-04 12:27:05,798 - pgConnector - INFO - 624 +2022-11-04 12:27:05,799 - vos - INFO - 624 +2022-11-04 12:27:05,800 - pgConnector - INFO - 625 +2022-11-04 12:27:05,800 - vos - INFO - 625 +2022-11-04 12:27:05,801 - pgConnector - INFO - 626 +2022-11-04 12:27:05,801 - vos - INFO - 626 +2022-11-04 12:27:05,802 - pgConnector - INFO - 627 +2022-11-04 12:27:05,802 - vos - INFO - 627 +2022-11-04 12:27:05,803 - pgConnector - INFO - 628 +2022-11-04 12:27:05,803 - vos - INFO - 628 +2022-11-04 12:27:05,804 - pgConnector - INFO - 629 +2022-11-04 12:27:05,805 - vos - INFO - 629 +2022-11-04 12:27:05,806 - pgConnector - INFO - 630 +2022-11-04 12:27:05,806 - vos - INFO - 630 +2022-11-04 12:27:05,807 - pgConnector - INFO - 631 +2022-11-04 12:27:05,807 - vos - INFO - 631 +2022-11-04 12:27:05,808 - pgConnector - INFO - 632 +2022-11-04 12:27:05,808 - vos - INFO - 632 +2022-11-04 12:27:05,809 - pgConnector - INFO - 633 +2022-11-04 12:27:05,809 - vos - INFO - 633 +2022-11-04 12:27:05,810 - pgConnector - INFO - 634 +2022-11-04 12:27:05,810 - vos - INFO - 634 +2022-11-04 12:27:05,811 - pgConnector - INFO - 635 +2022-11-04 12:27:05,811 - vos - INFO - 635 +2022-11-04 12:27:05,812 - pgConnector - INFO - 636 +2022-11-04 12:27:05,812 - vos - INFO - 636 +2022-11-04 12:27:05,813 - pgConnector - INFO - 637 +2022-11-04 12:27:05,813 - vos - INFO - 637 +2022-11-04 12:27:05,814 - pgConnector - INFO - 638 +2022-11-04 12:27:05,814 - vos - INFO - 638 +2022-11-04 12:27:05,815 - pgConnector - INFO - 639 +2022-11-04 12:27:05,815 - vos - INFO - 639 +2022-11-04 12:27:05,817 - pgConnector - INFO - 640 +2022-11-04 12:27:05,817 - vos - INFO - 640 +2022-11-04 12:27:05,818 - pgConnector - INFO - 641 +2022-11-04 12:27:05,818 - vos - INFO - 641 +2022-11-04 12:27:05,819 - pgConnector - INFO - 642 +2022-11-04 12:27:05,819 - vos - INFO - 642 +2022-11-04 12:27:05,820 - pgConnector - INFO - 643 +2022-11-04 12:27:05,820 - vos - INFO - 643 +2022-11-04 12:27:05,823 - pgConnector - INFO - 644 +2022-11-04 12:27:05,823 - vos - INFO - 644 +2022-11-04 12:27:05,823 - migrateData - INFO - No new data found +2022-11-04 12:29:30,116 - pgConnector - INFO - 645 +2022-11-04 12:29:30,116 - vos - INFO - 645 +2022-11-04 12:29:30,116 - migrateData - INFO - 645 item atataatatat +2022-11-04 12:29:30,116 - vosInfo - INFO - 645 testetste +2022-11-04 12:29:30,118 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,119 - pgConnector - INFO - 646 +2022-11-04 12:29:30,119 - vos - INFO - 646 +2022-11-04 12:29:30,119 - migrateData - INFO - 646 item atataatatat +2022-11-04 12:29:30,119 - vosInfo - INFO - 646 testetste +2022-11-04 12:29:30,121 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,122 - pgConnector - INFO - 647 +2022-11-04 12:29:30,122 - vos - INFO - 647 +2022-11-04 12:29:30,122 - migrateData - INFO - 647 item atataatatat +2022-11-04 12:29:30,122 - vosInfo - INFO - 647 testetste +2022-11-04 12:29:30,124 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,125 - pgConnector - INFO - 648 +2022-11-04 12:29:30,125 - vos - INFO - 648 +2022-11-04 12:29:30,126 - migrateData - INFO - 648 item atataatatat +2022-11-04 12:29:30,126 - vosInfo - INFO - 648 testetste +2022-11-04 12:29:30,126 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,127 - pgConnector - INFO - 649 +2022-11-04 12:29:30,127 - vos - INFO - 649 +2022-11-04 12:29:30,128 - migrateData - INFO - 649 item atataatatat +2022-11-04 12:29:30,128 - vosInfo - INFO - 649 testetste +2022-11-04 12:29:30,128 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,129 - pgConnector - INFO - 650 +2022-11-04 12:29:30,129 - vos - INFO - 650 +2022-11-04 12:29:30,129 - migrateData - INFO - 650 item atataatatat +2022-11-04 12:29:30,129 - vosInfo - INFO - 650 testetste +2022-11-04 12:29:30,130 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,131 - pgConnector - INFO - 651 +2022-11-04 12:29:30,131 - vos - INFO - 651 +2022-11-04 12:29:30,131 - migrateData - INFO - 651 item atataatatat +2022-11-04 12:29:30,131 - vosInfo - INFO - 651 testetste +2022-11-04 12:29:30,132 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,133 - pgConnector - INFO - 652 +2022-11-04 12:29:30,133 - vos - INFO - 652 +2022-11-04 12:29:30,133 - migrateData - INFO - 652 item atataatatat +2022-11-04 12:29:30,133 - vosInfo - INFO - 652 testetste +2022-11-04 12:29:30,134 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,135 - pgConnector - INFO - 653 +2022-11-04 12:29:30,135 - vos - INFO - 653 +2022-11-04 12:29:30,135 - migrateData - INFO - 653 item atataatatat +2022-11-04 12:29:30,135 - vosInfo - INFO - 653 testetste +2022-11-04 12:29:30,136 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,137 - pgConnector - INFO - 654 +2022-11-04 12:29:30,137 - vos - INFO - 654 +2022-11-04 12:29:30,137 - migrateData - INFO - 654 item atataatatat +2022-11-04 12:29:30,138 - vosInfo - INFO - 654 testetste +2022-11-04 12:29:30,138 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,139 - pgConnector - INFO - 655 +2022-11-04 12:29:30,139 - vos - INFO - 655 +2022-11-04 12:29:30,139 - migrateData - INFO - 655 item atataatatat +2022-11-04 12:29:30,140 - vosInfo - INFO - 655 testetste +2022-11-04 12:29:30,140 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,142 - pgConnector - INFO - 656 +2022-11-04 12:29:30,142 - vos - INFO - 656 +2022-11-04 12:29:30,142 - migrateData - INFO - 656 item atataatatat +2022-11-04 12:29:30,142 - vosInfo - INFO - 656 testetste +2022-11-04 12:29:30,145 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,146 - pgConnector - INFO - 657 +2022-11-04 12:29:30,147 - vos - INFO - 657 +2022-11-04 12:29:30,147 - migrateData - INFO - 657 item atataatatat +2022-11-04 12:29:30,147 - vosInfo - INFO - 657 testetste +2022-11-04 12:29:30,148 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,149 - pgConnector - INFO - 658 +2022-11-04 12:29:30,149 - vos - INFO - 658 +2022-11-04 12:29:30,149 - migrateData - INFO - 658 item atataatatat +2022-11-04 12:29:30,149 - vosInfo - INFO - 658 testetste +2022-11-04 12:29:30,150 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,151 - pgConnector - INFO - 659 +2022-11-04 12:29:30,151 - vos - INFO - 659 +2022-11-04 12:29:30,151 - migrateData - INFO - 659 item atataatatat +2022-11-04 12:29:30,152 - vosInfo - INFO - 659 testetste +2022-11-04 12:29:30,153 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,154 - pgConnector - INFO - 660 +2022-11-04 12:29:30,154 - vos - INFO - 660 +2022-11-04 12:29:30,154 - migrateData - INFO - 660 item atataatatat +2022-11-04 12:29:30,154 - vosInfo - INFO - 660 testetste +2022-11-04 12:29:30,155 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,157 - pgConnector - INFO - 661 +2022-11-04 12:29:30,157 - vos - INFO - 661 +2022-11-04 12:29:30,157 - migrateData - INFO - 661 item atataatatat +2022-11-04 12:29:30,157 - vosInfo - INFO - 661 testetste +2022-11-04 12:29:30,158 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,159 - pgConnector - INFO - 662 +2022-11-04 12:29:30,159 - vos - INFO - 662 +2022-11-04 12:29:30,159 - migrateData - INFO - 662 item atataatatat +2022-11-04 12:29:30,159 - vosInfo - INFO - 662 testetste +2022-11-04 12:29:30,160 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,161 - pgConnector - INFO - 663 +2022-11-04 12:29:30,161 - vos - INFO - 663 +2022-11-04 12:29:30,161 - migrateData - INFO - 663 item atataatatat +2022-11-04 12:29:30,161 - vosInfo - INFO - 663 testetste +2022-11-04 12:29:30,162 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,163 - pgConnector - INFO - 664 +2022-11-04 12:29:30,163 - vos - INFO - 664 +2022-11-04 12:29:30,163 - migrateData - INFO - 664 item atataatatat +2022-11-04 12:29:30,163 - vosInfo - INFO - 664 testetste +2022-11-04 12:29:30,166 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,167 - pgConnector - INFO - 665 +2022-11-04 12:29:30,167 - vos - INFO - 665 +2022-11-04 12:29:30,167 - migrateData - INFO - 665 item atataatatat +2022-11-04 12:29:30,167 - vosInfo - INFO - 665 testetste +2022-11-04 12:29:30,168 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,169 - pgConnector - INFO - 666 +2022-11-04 12:29:30,170 - vos - INFO - 666 +2022-11-04 12:29:30,170 - migrateData - INFO - 666 item atataatatat +2022-11-04 12:29:30,170 - vosInfo - INFO - 666 testetste +2022-11-04 12:29:30,171 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,172 - pgConnector - INFO - 667 +2022-11-04 12:29:30,172 - vos - INFO - 667 +2022-11-04 12:29:30,172 - migrateData - INFO - 667 item atataatatat +2022-11-04 12:29:30,172 - vosInfo - INFO - 667 testetste +2022-11-04 12:29:30,173 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,174 - pgConnector - INFO - 668 +2022-11-04 12:29:30,174 - vos - INFO - 668 +2022-11-04 12:29:30,174 - migrateData - INFO - 668 item atataatatat +2022-11-04 12:29:30,174 - vosInfo - INFO - 668 testetste +2022-11-04 12:29:30,175 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,176 - pgConnector - INFO - 669 +2022-11-04 12:29:30,176 - vos - INFO - 669 +2022-11-04 12:29:30,176 - migrateData - INFO - 669 item atataatatat +2022-11-04 12:29:30,176 - vosInfo - INFO - 669 testetste +2022-11-04 12:29:30,177 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,179 - pgConnector - INFO - 670 +2022-11-04 12:29:30,179 - vos - INFO - 670 +2022-11-04 12:29:30,179 - migrateData - INFO - 670 item atataatatat +2022-11-04 12:29:30,179 - vosInfo - INFO - 670 testetste +2022-11-04 12:29:30,180 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,181 - pgConnector - INFO - 671 +2022-11-04 12:29:30,181 - vos - INFO - 671 +2022-11-04 12:29:30,181 - migrateData - INFO - 671 item atataatatat +2022-11-04 12:29:30,181 - vosInfo - INFO - 671 testetste +2022-11-04 12:29:30,182 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,182 - pgConnector - INFO - 672 +2022-11-04 12:29:30,182 - vos - INFO - 672 +2022-11-04 12:29:30,183 - migrateData - INFO - 672 item atataatatat +2022-11-04 12:29:30,183 - vosInfo - INFO - 672 testetste +2022-11-04 12:29:30,183 - pgConnector - ERROR - no results to fetch +2022-11-04 12:29:30,184 - migrateData - INFO - No new data found +2022-11-04 12:37:51,800 - pgConnector - INFO - 673 +2022-11-04 12:37:51,800 - vos - INFO - 673 +2022-11-04 12:37:51,800 - migrateData - INFO - 673 item atataatatat +2022-11-04 12:37:51,800 - vosInfo - INFO - 673 testetste +2022-11-04 12:37:51,801 - pgConnector - ERROR - duplicate key value violates unique constraint "idx_communities_info" +DETAIL: Key (name)=(vo.geoss.eu) already exists. +2022-11-04 12:37:51,802 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,802 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,802 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,803 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,803 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,804 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,804 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,804 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,805 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,807 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,807 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,808 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,808 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,808 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,808 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,809 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,809 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:37:51,811 - migrateData - INFO - No new data found +2022-11-04 12:38:55,966 - pgConnector - INFO - 674 +2022-11-04 12:38:55,966 - vos - INFO - 674 +2022-11-04 12:38:55,966 - migrateData - INFO - 674 item atataatatat +2022-11-04 12:38:55,966 - vosInfo - INFO - 674 testetste +2022-11-04 12:38:55,967 - pgConnector - ERROR - duplicate key value violates unique constraint "idx_communities_info" +DETAIL: Key (name)=(vo.geoss.eu) already exists. +2022-11-04 12:38:55,967 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,968 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,968 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,970 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,970 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,970 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block +2022-11-04 12:38:55,973 - migrateData - INFO - No new data found +2022-11-04 12:40:26,066 - pgConnector - INFO - 1 +2022-11-04 12:40:26,066 - vos - INFO - 1 +2022-11-04 12:40:26,066 - migrateData - INFO - 1 item atataatatat +2022-11-04 12:40:26,066 - vosInfo - INFO - 1 testetste +2022-11-04 12:40:26,069 - pgConnector - INFO - 2 +2022-11-04 12:40:26,069 - vos - INFO - 2 +2022-11-04 12:40:26,069 - migrateData - INFO - 2 item atataatatat +2022-11-04 12:40:26,069 - vosInfo - INFO - 2 testetste +2022-11-04 12:40:26,071 - pgConnector - INFO - 3 +2022-11-04 12:40:26,071 - vos - INFO - 3 +2022-11-04 12:40:26,071 - migrateData - INFO - 3 item atataatatat +2022-11-04 12:40:26,071 - vosInfo - INFO - 3 testetste +2022-11-04 12:40:26,073 - pgConnector - INFO - 4 +2022-11-04 12:40:26,073 - vos - INFO - 4 +2022-11-04 12:40:26,073 - migrateData - INFO - 4 item atataatatat +2022-11-04 12:40:26,073 - vosInfo - INFO - 4 testetste +2022-11-04 12:40:26,076 - pgConnector - INFO - 5 +2022-11-04 12:40:26,076 - vos - INFO - 5 +2022-11-04 12:40:26,076 - migrateData - INFO - 5 item atataatatat +2022-11-04 12:40:26,076 - vosInfo - INFO - 5 testetste +2022-11-04 12:40:26,078 - pgConnector - INFO - 6 +2022-11-04 12:40:26,078 - vos - INFO - 6 +2022-11-04 12:40:26,078 - migrateData - INFO - 6 item atataatatat +2022-11-04 12:40:26,078 - vosInfo - INFO - 6 testetste +2022-11-04 12:40:26,080 - pgConnector - INFO - 7 +2022-11-04 12:40:26,080 - vos - INFO - 7 +2022-11-04 12:40:26,080 - migrateData - INFO - 7 item atataatatat +2022-11-04 12:40:26,080 - vosInfo - INFO - 7 testetste +2022-11-04 12:40:26,082 - pgConnector - INFO - 8 +2022-11-04 12:40:26,082 - vos - INFO - 8 +2022-11-04 12:40:26,082 - migrateData - INFO - 8 item atataatatat +2022-11-04 12:40:26,082 - vosInfo - INFO - 8 testetste +2022-11-04 12:40:26,084 - pgConnector - INFO - 9 +2022-11-04 12:40:26,084 - vos - INFO - 9 +2022-11-04 12:40:26,084 - migrateData - INFO - 9 item atataatatat +2022-11-04 12:40:26,084 - vosInfo - INFO - 9 testetste +2022-11-04 12:40:26,086 - pgConnector - INFO - 10 +2022-11-04 12:40:26,086 - vos - INFO - 10 +2022-11-04 12:40:26,086 - migrateData - INFO - 10 item atataatatat +2022-11-04 12:40:26,086 - vosInfo - INFO - 10 testetste +2022-11-04 12:40:26,088 - pgConnector - INFO - 11 +2022-11-04 12:40:26,088 - vos - INFO - 11 +2022-11-04 12:40:26,088 - migrateData - INFO - 11 item atataatatat +2022-11-04 12:40:26,088 - vosInfo - INFO - 11 testetste +2022-11-04 12:40:26,090 - pgConnector - INFO - 12 +2022-11-04 12:40:26,090 - vos - INFO - 12 +2022-11-04 12:40:26,090 - migrateData - INFO - 12 item atataatatat +2022-11-04 12:40:26,090 - vosInfo - INFO - 12 testetste +2022-11-04 12:40:26,091 - pgConnector - INFO - 13 +2022-11-04 12:40:26,092 - vos - INFO - 13 +2022-11-04 12:40:26,092 - migrateData - INFO - 13 item atataatatat +2022-11-04 12:40:26,092 - vosInfo - INFO - 13 testetste +2022-11-04 12:40:26,094 - pgConnector - INFO - 14 +2022-11-04 12:40:26,094 - vos - INFO - 14 +2022-11-04 12:40:26,094 - migrateData - INFO - 14 item atataatatat +2022-11-04 12:40:26,094 - vosInfo - INFO - 14 testetste +2022-11-04 12:40:26,096 - pgConnector - INFO - 15 +2022-11-04 12:40:26,096 - vos - INFO - 15 +2022-11-04 12:40:26,096 - migrateData - INFO - 15 item atataatatat +2022-11-04 12:40:26,096 - vosInfo - INFO - 15 testetste +2022-11-04 12:40:26,098 - pgConnector - INFO - 16 +2022-11-04 12:40:26,099 - vos - INFO - 16 +2022-11-04 12:40:26,099 - migrateData - INFO - 16 item atataatatat +2022-11-04 12:40:26,099 - vosInfo - INFO - 16 testetste +2022-11-04 12:40:26,100 - pgConnector - INFO - 17 +2022-11-04 12:40:26,101 - vos - INFO - 17 +2022-11-04 12:40:26,101 - migrateData - INFO - 17 item atataatatat +2022-11-04 12:40:26,101 - vosInfo - INFO - 17 testetste +2022-11-04 12:40:26,102 - pgConnector - INFO - 18 +2022-11-04 12:40:26,103 - vos - INFO - 18 +2022-11-04 12:40:26,103 - migrateData - INFO - 18 item atataatatat +2022-11-04 12:40:26,103 - vosInfo - INFO - 18 testetste +2022-11-04 12:40:26,105 - pgConnector - INFO - 19 +2022-11-04 12:40:26,105 - vos - INFO - 19 +2022-11-04 12:40:26,105 - migrateData - INFO - 19 item atataatatat +2022-11-04 12:40:26,105 - vosInfo - INFO - 19 testetste +2022-11-04 12:40:26,107 - pgConnector - INFO - 20 +2022-11-04 12:40:26,107 - vos - INFO - 20 +2022-11-04 12:40:26,107 - migrateData - INFO - 20 item atataatatat +2022-11-04 12:40:26,107 - vosInfo - INFO - 20 testetste +2022-11-04 12:40:26,109 - pgConnector - INFO - 21 +2022-11-04 12:40:26,109 - vos - INFO - 21 +2022-11-04 12:40:26,109 - migrateData - INFO - 21 item atataatatat +2022-11-04 12:40:26,109 - vosInfo - INFO - 21 testetste +2022-11-04 12:40:26,110 - pgConnector - INFO - 22 +2022-11-04 12:40:26,111 - vos - INFO - 22 +2022-11-04 12:40:26,111 - migrateData - INFO - 22 item atataatatat +2022-11-04 12:40:26,111 - vosInfo - INFO - 22 testetste +2022-11-04 12:40:26,112 - pgConnector - INFO - 23 +2022-11-04 12:40:26,112 - vos - INFO - 23 +2022-11-04 12:40:26,112 - migrateData - INFO - 23 item atataatatat +2022-11-04 12:40:26,112 - vosInfo - INFO - 23 testetste +2022-11-04 12:40:26,114 - pgConnector - INFO - 24 +2022-11-04 12:40:26,114 - vos - INFO - 24 +2022-11-04 12:40:26,114 - migrateData - INFO - 24 item atataatatat +2022-11-04 12:40:26,114 - vosInfo - INFO - 24 testetste +2022-11-04 12:40:26,118 - pgConnector - INFO - 25 +2022-11-04 12:40:26,118 - vos - INFO - 25 +2022-11-04 12:40:26,118 - migrateData - INFO - 25 item atataatatat +2022-11-04 12:40:26,118 - vosInfo - INFO - 25 testetste +2022-11-04 12:40:26,120 - pgConnector - INFO - 26 +2022-11-04 12:40:26,120 - vos - INFO - 26 +2022-11-04 12:40:26,120 - migrateData - INFO - 26 item atataatatat +2022-11-04 12:40:26,120 - vosInfo - INFO - 26 testetste +2022-11-04 12:40:26,122 - pgConnector - INFO - 27 +2022-11-04 12:40:26,122 - vos - INFO - 27 +2022-11-04 12:40:26,122 - migrateData - INFO - 27 item atataatatat +2022-11-04 12:40:26,122 - vosInfo - INFO - 27 testetste +2022-11-04 12:40:26,124 - pgConnector - INFO - 28 +2022-11-04 12:40:26,124 - vos - INFO - 28 +2022-11-04 12:40:26,124 - migrateData - INFO - 28 item atataatatat +2022-11-04 12:40:26,124 - vosInfo - INFO - 28 testetste +2022-11-04 12:40:26,125 - migrateData - INFO - 28 vos created +2022-11-04 12:41:26,389 - pgConnector - INFO - 29 +2022-11-04 12:41:26,389 - vos - INFO - 29 +2022-11-04 12:41:26,389 - migrateData - INFO - 29 item atataatatat +2022-11-04 12:41:26,389 - vosInfo - INFO - 29 testetste +2022-11-04 12:41:26,392 - pgConnector - INFO - 30 +2022-11-04 12:41:26,393 - vos - INFO - 30 +2022-11-04 12:41:26,402 - migrateData - INFO - 30 item atataatatat +2022-11-04 12:41:26,402 - vosInfo - INFO - 30 testetste +2022-11-04 12:41:26,404 - pgConnector - INFO - 31 +2022-11-04 12:41:26,404 - vos - INFO - 31 +2022-11-04 12:41:26,404 - migrateData - INFO - 31 item atataatatat +2022-11-04 12:41:26,404 - vosInfo - INFO - 31 testetste +2022-11-04 12:41:26,406 - pgConnector - INFO - 32 +2022-11-04 12:41:26,406 - vos - INFO - 32 +2022-11-04 12:41:26,406 - migrateData - INFO - 32 item atataatatat +2022-11-04 12:41:26,406 - vosInfo - INFO - 32 testetste +2022-11-04 12:41:26,408 - pgConnector - INFO - 33 +2022-11-04 12:41:26,408 - vos - INFO - 33 +2022-11-04 12:41:26,408 - migrateData - INFO - 33 item atataatatat +2022-11-04 12:41:26,408 - vosInfo - INFO - 33 testetste +2022-11-04 12:41:26,410 - pgConnector - INFO - 34 +2022-11-04 12:41:26,410 - vos - INFO - 34 +2022-11-04 12:41:26,410 - migrateData - INFO - 34 item atataatatat +2022-11-04 12:41:26,410 - vosInfo - INFO - 34 testetste +2022-11-04 12:41:26,413 - pgConnector - INFO - 35 +2022-11-04 12:41:26,413 - vos - INFO - 35 +2022-11-04 12:41:26,413 - migrateData - INFO - 35 item atataatatat +2022-11-04 12:41:26,413 - vosInfo - INFO - 35 testetste +2022-11-04 12:41:26,415 - pgConnector - INFO - 36 +2022-11-04 12:41:26,415 - vos - INFO - 36 +2022-11-04 12:41:26,415 - migrateData - INFO - 36 item atataatatat +2022-11-04 12:41:26,416 - vosInfo - INFO - 36 testetste +2022-11-04 12:41:26,417 - pgConnector - INFO - 37 +2022-11-04 12:41:26,417 - vos - INFO - 37 +2022-11-04 12:41:26,417 - migrateData - INFO - 37 item atataatatat +2022-11-04 12:41:26,417 - vosInfo - INFO - 37 testetste +2022-11-04 12:41:26,419 - pgConnector - INFO - 38 +2022-11-04 12:41:26,419 - vos - INFO - 38 +2022-11-04 12:41:26,419 - migrateData - INFO - 38 item atataatatat +2022-11-04 12:41:26,419 - vosInfo - INFO - 38 testetste +2022-11-04 12:41:26,421 - pgConnector - INFO - 39 +2022-11-04 12:41:26,421 - vos - INFO - 39 +2022-11-04 12:41:26,421 - migrateData - INFO - 39 item atataatatat +2022-11-04 12:41:26,421 - vosInfo - INFO - 39 testetste +2022-11-04 12:41:26,423 - pgConnector - INFO - 40 +2022-11-04 12:41:26,423 - vos - INFO - 40 +2022-11-04 12:41:26,423 - migrateData - INFO - 40 item atataatatat +2022-11-04 12:41:26,424 - vosInfo - INFO - 40 testetste +2022-11-04 12:41:26,425 - pgConnector - INFO - 41 +2022-11-04 12:41:26,426 - vos - INFO - 41 +2022-11-04 12:41:26,426 - migrateData - INFO - 41 item atataatatat +2022-11-04 12:41:26,426 - vosInfo - INFO - 41 testetste +2022-11-04 12:41:26,428 - pgConnector - INFO - 42 +2022-11-04 12:41:26,428 - vos - INFO - 42 +2022-11-04 12:41:26,428 - migrateData - INFO - 42 item atataatatat +2022-11-04 12:41:26,428 - vosInfo - INFO - 42 testetste +2022-11-04 12:41:26,430 - pgConnector - INFO - 43 +2022-11-04 12:41:26,430 - vos - INFO - 43 +2022-11-04 12:41:26,430 - migrateData - INFO - 43 item atataatatat +2022-11-04 12:41:26,430 - vosInfo - INFO - 43 testetste +2022-11-04 12:41:26,432 - pgConnector - INFO - 44 +2022-11-04 12:41:26,432 - vos - INFO - 44 +2022-11-04 12:41:26,432 - migrateData - INFO - 44 item atataatatat +2022-11-04 12:41:26,432 - vosInfo - INFO - 44 testetste +2022-11-04 12:41:26,434 - pgConnector - INFO - 45 +2022-11-04 12:41:26,434 - vos - INFO - 45 +2022-11-04 12:41:26,434 - migrateData - INFO - 45 item atataatatat +2022-11-04 12:41:26,434 - vosInfo - INFO - 45 testetste +2022-11-04 12:41:26,436 - pgConnector - INFO - 46 +2022-11-04 12:41:26,436 - vos - INFO - 46 +2022-11-04 12:41:26,436 - migrateData - INFO - 46 item atataatatat +2022-11-04 12:41:26,436 - vosInfo - INFO - 46 testetste +2022-11-04 12:41:26,438 - pgConnector - INFO - 47 +2022-11-04 12:41:26,438 - vos - INFO - 47 +2022-11-04 12:41:26,438 - migrateData - INFO - 47 item atataatatat +2022-11-04 12:41:26,438 - vosInfo - INFO - 47 testetste +2022-11-04 12:41:26,439 - pgConnector - INFO - 48 +2022-11-04 12:41:26,439 - vos - INFO - 48 +2022-11-04 12:41:26,439 - migrateData - INFO - 48 item atataatatat +2022-11-04 12:41:26,439 - vosInfo - INFO - 48 testetste +2022-11-04 12:41:26,441 - pgConnector - INFO - 49 +2022-11-04 12:41:26,441 - vos - INFO - 49 +2022-11-04 12:41:26,441 - migrateData - INFO - 49 item atataatatat +2022-11-04 12:41:26,441 - vosInfo - INFO - 49 testetste +2022-11-04 12:41:26,444 - pgConnector - INFO - 50 +2022-11-04 12:41:26,444 - vos - INFO - 50 +2022-11-04 12:41:26,444 - migrateData - INFO - 50 item atataatatat +2022-11-04 12:41:26,445 - vosInfo - INFO - 50 testetste +2022-11-04 12:41:26,446 - pgConnector - INFO - 51 +2022-11-04 12:41:26,446 - vos - INFO - 51 +2022-11-04 12:41:26,447 - migrateData - INFO - 51 item atataatatat +2022-11-04 12:41:26,447 - vosInfo - INFO - 51 testetste +2022-11-04 12:41:26,448 - pgConnector - INFO - 52 +2022-11-04 12:41:26,448 - vos - INFO - 52 +2022-11-04 12:41:26,448 - migrateData - INFO - 52 item atataatatat +2022-11-04 12:41:26,448 - vosInfo - INFO - 52 testetste +2022-11-04 12:41:26,450 - pgConnector - INFO - 53 +2022-11-04 12:41:26,450 - vos - INFO - 53 +2022-11-04 12:41:26,450 - migrateData - INFO - 53 item atataatatat +2022-11-04 12:41:26,450 - vosInfo - INFO - 53 testetste +2022-11-04 12:41:26,452 - pgConnector - INFO - 54 +2022-11-04 12:41:26,452 - vos - INFO - 54 +2022-11-04 12:41:26,452 - migrateData - INFO - 54 item atataatatat +2022-11-04 12:41:26,452 - vosInfo - INFO - 54 testetste +2022-11-04 12:41:26,454 - pgConnector - INFO - 55 +2022-11-04 12:41:26,454 - vos - INFO - 55 +2022-11-04 12:41:26,454 - migrateData - INFO - 55 item atataatatat +2022-11-04 12:41:26,454 - vosInfo - INFO - 55 testetste +2022-11-04 12:41:26,456 - pgConnector - INFO - 56 +2022-11-04 12:41:26,457 - vos - INFO - 56 +2022-11-04 12:41:26,457 - migrateData - INFO - 56 item atataatatat +2022-11-04 12:41:26,457 - vosInfo - INFO - 56 testetste +2022-11-04 12:41:26,458 - migrateData - INFO - 28 vos created +2022-11-04 12:45:46,852 - migrateData - INFO - No new data found diff --git a/data_migrations/log/metricsMigrate.log.2022-11-07 b/data_migrations/log/metricsMigrate.log.2022-11-07 new file mode 100644 index 0000000..1c1d29e --- /dev/null +++ b/data_migrations/log/metricsMigrate.log.2022-11-07 @@ -0,0 +1,2064 @@ +2022-11-07 10:45:15,862 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,863 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,864 - migrateData - INFO - No new data found [(47,)] +2022-11-07 10:45:15,865 - migrateData - INFO - No new data found [(33,)] +2022-11-07 10:45:15,866 - migrateData - INFO - No new data found [(34,)] +2022-11-07 10:45:15,867 - migrateData - INFO - No new data found [(34,)] +2022-11-07 10:45:15,868 - migrateData - INFO - No new data found [(40,)] +2022-11-07 10:45:15,868 - migrateData - INFO - No new data found [(51,)] +2022-11-07 10:45:15,869 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,869 - migrateData - INFO - No new data found [(37,)] +2022-11-07 10:45:15,870 - migrateData - INFO - No new data found [(33,)] +2022-11-07 10:45:15,871 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,872 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,872 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,873 - migrateData - INFO - No new data found [(29,)] +2022-11-07 10:45:15,874 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,874 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,875 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,875 - migrateData - INFO - No new data found [(55,)] +2022-11-07 10:45:15,875 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,876 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,876 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,877 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,877 - migrateData - INFO - No new data found [(54,)] +2022-11-07 10:45:15,877 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,878 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,878 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,878 - migrateData - INFO - No new data found [(40,)] +2022-11-07 10:45:15,879 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,879 - migrateData - INFO - No new data found [(30,)] +2022-11-07 10:45:15,879 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,879 - migrateData - INFO - No new data found [(43,)] +2022-11-07 10:45:15,880 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,880 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,880 - migrateData - INFO - No new data found [(52,)] +2022-11-07 10:45:15,881 - migrateData - INFO - No new data found [(33,)] +2022-11-07 10:45:15,881 - migrateData - INFO - No new data found [(29,)] +2022-11-07 10:45:15,881 - migrateData - INFO - No new data found [(39,)] +2022-11-07 10:45:15,882 - migrateData - INFO - No new data found [(38,)] +2022-11-07 10:45:15,882 - migrateData - INFO - No new data found [(39,)] +2022-11-07 10:45:15,882 - migrateData - INFO - No new data found [(38,)] +2022-11-07 10:45:15,883 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,883 - migrateData - INFO - No new data found [(43,)] +2022-11-07 10:45:15,883 - migrateData - INFO - No new data found [(29,)] +2022-11-07 10:45:15,883 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,884 - migrateData - INFO - No new data found [(41,)] +2022-11-07 10:45:15,884 - migrateData - INFO - No new data found [(40,)] +2022-11-07 10:45:15,884 - migrateData - INFO - No new data found [(41,)] +2022-11-07 10:45:15,885 - migrateData - INFO - No new data found [(42,)] +2022-11-07 10:45:15,885 - migrateData - INFO - No new data found [(37,)] +2022-11-07 10:45:15,885 - migrateData - INFO - No new data found [(51,)] +2022-11-07 10:45:15,886 - migrateData - INFO - No new data found [(44,)] +2022-11-07 10:45:15,886 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,886 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,886 - migrateData - INFO - No new data found [(29,)] +2022-11-07 10:45:15,887 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,888 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,888 - migrateData - INFO - No new data found [(30,)] +2022-11-07 10:45:15,889 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,889 - migrateData - INFO - No new data found [(30,)] +2022-11-07 10:45:15,891 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,892 - migrateData - INFO - No new data found [(29,)] +2022-11-07 10:45:15,893 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,895 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,896 - migrateData - INFO - No new data found [(42,)] +2022-11-07 10:45:15,896 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,896 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,897 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,897 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,897 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,898 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,898 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,898 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,899 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,899 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,900 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,900 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,901 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,901 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,901 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,902 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,902 - migrateData - INFO - No new data found [(49,)] +2022-11-07 10:45:15,903 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,903 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,903 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,904 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,904 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,905 - migrateData - INFO - No new data found [(30,)] +2022-11-07 10:45:15,905 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,906 - migrateData - INFO - No new data found [(51,)] +2022-11-07 10:45:15,906 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,906 - migrateData - INFO - No new data found [(32,)] +2022-11-07 10:45:15,906 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,907 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,907 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,908 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,908 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,908 - migrateData - INFO - No new data found [(41,)] +2022-11-07 10:45:15,908 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,909 - migrateData - INFO - No new data found [(53,)] +2022-11-07 10:45:15,909 - migrateData - INFO - No new data found [(47,)] +2022-11-07 10:45:15,909 - migrateData - INFO - No new data found [(47,)] +2022-11-07 10:45:15,910 - migrateData - INFO - No new data found [(40,)] +2022-11-07 10:45:15,910 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,910 - migrateData - INFO - No new data found [(40,)] +2022-11-07 10:45:15,911 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,911 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,911 - migrateData - INFO - No new data found [(45,)] +2022-11-07 10:45:15,912 - migrateData - INFO - No new data found [(56,)] +2022-11-07 10:45:15,912 - migrateData - INFO - No new data found [(46,)] +2022-11-07 10:45:15,912 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,912 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,913 - migrateData - INFO - No new data found [(31,)] +2022-11-07 10:45:15,913 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,913 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,914 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,914 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,915 - migrateData - INFO - No new data found [(48,)] +2022-11-07 10:45:15,915 - migrateData - INFO - No new data found [(47,)] +2022-11-07 10:45:15,915 - migrateData - INFO - No new data found [(47,)] +2022-11-07 10:45:15,916 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,916 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,917 - migrateData - INFO - No new data found [(54,)] +2022-11-07 10:45:15,917 - migrateData - INFO - No new data found [(54,)] +2022-11-07 10:45:15,918 - migrateData - INFO - No new data found [(54,)] +2022-11-07 10:45:15,918 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,918 - migrateData - INFO - No new data found [(51,)] +2022-11-07 10:45:15,919 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,919 - migrateData - INFO - No new data found [(37,)] +2022-11-07 10:45:15,931 - migrateData - INFO - No new data found [(51,)] +2022-11-07 10:45:15,932 - migrateData - INFO - No new data found [(40,)] +2022-11-07 10:45:15,934 - migrateData - INFO - No new data found [(40,)] +2022-11-07 10:45:15,935 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,935 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,936 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,936 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,936 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,937 - migrateData - INFO - No new data found [(53,)] +2022-11-07 10:45:15,938 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,938 - migrateData - INFO - No new data found [(53,)] +2022-11-07 10:45:15,939 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,940 - migrateData - INFO - No new data found [(53,)] +2022-11-07 10:45:15,940 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,940 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,941 - migrateData - INFO - No new data found [(53,)] +2022-11-07 10:45:15,941 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,941 - migrateData - INFO - No new data found [(40,)] +2022-11-07 10:45:15,941 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,942 - migrateData - INFO - No new data found [(53,)] +2022-11-07 10:45:15,942 - migrateData - INFO - No new data found [(51,)] +2022-11-07 10:45:15,942 - migrateData - INFO - No new data found [(53,)] +2022-11-07 10:45:15,943 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,943 - migrateData - INFO - No new data found [] +2022-11-07 10:45:15,943 - migrateData - INFO - No new data found [(53,)] +2022-11-07 10:45:15,944 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,944 - migrateData - INFO - No new data found [(56,)] +2022-11-07 10:45:15,944 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,945 - migrateData - INFO - No new data found [(56,)] +2022-11-07 10:45:15,945 - migrateData - INFO - No new data found [(50,)] +2022-11-07 10:45:15,945 - migrateData - INFO - No new data found [(56,)] +2022-11-07 10:55:41,593 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,593 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,594 - migrateData - INFO - Vo name [(47,)] +2022-11-07 10:55:41,594 - migrateData - INFO - Vo name [(33,)] +2022-11-07 10:55:41,595 - migrateData - INFO - Vo name [(34,)] +2022-11-07 10:55:41,596 - migrateData - INFO - Vo name [(34,)] +2022-11-07 10:55:41,597 - migrateData - INFO - Vo name [(40,)] +2022-11-07 10:55:41,601 - migrateData - INFO - Vo name [(51,)] +2022-11-07 10:55:41,602 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,603 - migrateData - INFO - Vo name [(37,)] +2022-11-07 10:55:41,604 - migrateData - INFO - Vo name [(33,)] +2022-11-07 10:55:41,605 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,605 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,606 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,606 - migrateData - INFO - Vo name [(29,)] +2022-11-07 10:55:41,606 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,607 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,607 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,607 - migrateData - INFO - Vo name [(55,)] +2022-11-07 10:55:41,608 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,608 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,609 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,609 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,609 - migrateData - INFO - Vo name [(54,)] +2022-11-07 10:55:41,610 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,610 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,611 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,611 - migrateData - INFO - Vo name [(40,)] +2022-11-07 10:55:41,612 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,612 - migrateData - INFO - Vo name [(30,)] +2022-11-07 10:55:41,612 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,613 - migrateData - INFO - Vo name [(43,)] +2022-11-07 10:55:41,613 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,613 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,613 - migrateData - INFO - Vo name [(52,)] +2022-11-07 10:55:41,614 - migrateData - INFO - Vo name [(33,)] +2022-11-07 10:55:41,614 - migrateData - INFO - Vo name [(29,)] +2022-11-07 10:55:41,615 - migrateData - INFO - Vo name [(39,)] +2022-11-07 10:55:41,615 - migrateData - INFO - Vo name [(38,)] +2022-11-07 10:55:41,615 - migrateData - INFO - Vo name [(39,)] +2022-11-07 10:55:41,616 - migrateData - INFO - Vo name [(38,)] +2022-11-07 10:55:41,616 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,616 - migrateData - INFO - Vo name [(43,)] +2022-11-07 10:55:41,617 - migrateData - INFO - Vo name [(29,)] +2022-11-07 10:55:41,617 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,617 - migrateData - INFO - Vo name [(41,)] +2022-11-07 10:55:41,618 - migrateData - INFO - Vo name [(40,)] +2022-11-07 10:55:41,618 - migrateData - INFO - Vo name [(41,)] +2022-11-07 10:55:41,618 - migrateData - INFO - Vo name [(42,)] +2022-11-07 10:55:41,619 - migrateData - INFO - Vo name [(37,)] +2022-11-07 10:55:41,619 - migrateData - INFO - Vo name [(51,)] +2022-11-07 10:55:41,619 - migrateData - INFO - Vo name [(44,)] +2022-11-07 10:55:41,619 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,620 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,620 - migrateData - INFO - Vo name [(29,)] +2022-11-07 10:55:41,620 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,621 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,621 - migrateData - INFO - Vo name [(30,)] +2022-11-07 10:55:41,621 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,622 - migrateData - INFO - Vo name [(30,)] +2022-11-07 10:55:41,622 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,625 - migrateData - INFO - Vo name [(29,)] +2022-11-07 10:55:41,626 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,626 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,627 - migrateData - INFO - Vo name [(42,)] +2022-11-07 10:55:41,627 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,627 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,628 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,630 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,631 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,631 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,632 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,632 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,633 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,633 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,634 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,634 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,635 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,635 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,636 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,636 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,637 - migrateData - INFO - Vo name [(49,)] +2022-11-07 10:55:41,637 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,637 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,638 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,638 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,639 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,639 - migrateData - INFO - Vo name [(30,)] +2022-11-07 10:55:41,639 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,640 - migrateData - INFO - Vo name [(51,)] +2022-11-07 10:55:41,640 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,640 - migrateData - INFO - Vo name [(32,)] +2022-11-07 10:55:41,641 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,641 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,641 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,642 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,642 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,643 - migrateData - INFO - Vo name [(41,)] +2022-11-07 10:55:41,643 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,644 - migrateData - INFO - Vo name [(53,)] +2022-11-07 10:55:41,644 - migrateData - INFO - Vo name [(47,)] +2022-11-07 10:55:41,645 - migrateData - INFO - Vo name [(47,)] +2022-11-07 10:55:41,646 - migrateData - INFO - Vo name [(40,)] +2022-11-07 10:55:41,646 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,647 - migrateData - INFO - Vo name [(40,)] +2022-11-07 10:55:41,647 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,648 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,649 - migrateData - INFO - Vo name [(45,)] +2022-11-07 10:55:41,650 - migrateData - INFO - Vo name [(56,)] +2022-11-07 10:55:41,650 - migrateData - INFO - Vo name [(46,)] +2022-11-07 10:55:41,650 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,651 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,651 - migrateData - INFO - Vo name [(31,)] +2022-11-07 10:55:41,652 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,652 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,652 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,653 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,653 - migrateData - INFO - Vo name [(48,)] +2022-11-07 10:55:41,653 - migrateData - INFO - Vo name [(47,)] +2022-11-07 10:55:41,654 - migrateData - INFO - Vo name [(47,)] +2022-11-07 10:55:41,654 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,655 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,655 - migrateData - INFO - Vo name [(54,)] +2022-11-07 10:55:41,656 - migrateData - INFO - Vo name [(54,)] +2022-11-07 10:55:41,656 - migrateData - INFO - Vo name [(54,)] +2022-11-07 10:55:41,656 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,656 - migrateData - INFO - Vo name [(51,)] +2022-11-07 10:55:41,661 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,662 - migrateData - INFO - Vo name [(37,)] +2022-11-07 10:55:41,662 - migrateData - INFO - Vo name [(51,)] +2022-11-07 10:55:41,662 - migrateData - INFO - Vo name [(40,)] +2022-11-07 10:55:41,662 - migrateData - INFO - Vo name [(40,)] +2022-11-07 10:55:41,663 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,663 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,664 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,664 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,664 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,665 - migrateData - INFO - Vo name [(53,)] +2022-11-07 10:55:41,665 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,665 - migrateData - INFO - Vo name [(53,)] +2022-11-07 10:55:41,666 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,666 - migrateData - INFO - Vo name [(53,)] +2022-11-07 10:55:41,666 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,667 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,667 - migrateData - INFO - Vo name [(53,)] +2022-11-07 10:55:41,667 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,668 - migrateData - INFO - Vo name [(40,)] +2022-11-07 10:55:41,668 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,668 - migrateData - INFO - Vo name [(53,)] +2022-11-07 10:55:41,668 - migrateData - INFO - Vo name [(51,)] +2022-11-07 10:55:41,669 - migrateData - INFO - Vo name [(53,)] +2022-11-07 10:55:41,669 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,669 - migrateData - INFO - Vo name [] +2022-11-07 10:55:41,670 - migrateData - INFO - Vo name [(53,)] +2022-11-07 10:55:41,670 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,671 - migrateData - INFO - Vo name [(56,)] +2022-11-07 10:55:41,671 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,671 - migrateData - INFO - Vo name [(56,)] +2022-11-07 10:55:41,672 - migrateData - INFO - Vo name [(50,)] +2022-11-07 10:55:41,672 - migrateData - INFO - Vo name [(56,)] +2022-11-07 10:56:08,305 - migrateData - INFO - Vo name AARC Pilot User Sponsors with id +2022-11-07 10:56:08,306 - migrateData - INFO - Vo name AARC Pilot User Sponsors with id +2022-11-07 10:56:08,306 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:56:08,307 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 10:56:08,307 - migrateData - INFO - Vo name WP5 with id +2022-11-07 10:56:08,311 - migrateData - INFO - Vo name WP5 with id +2022-11-07 10:56:08,312 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:56:08,313 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:56:08,314 - migrateData - INFO - Vo name Managers.DOAB with id +2022-11-07 10:56:08,314 - migrateData - INFO - Vo name AMB with id +2022-11-07 10:56:08,315 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 10:56:08,315 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,315 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,316 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,316 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:56:08,316 - migrateData - INFO - Vo name DOAB with id +2022-11-07 10:56:08,317 - migrateData - INFO - Vo name Managers.PSP with id +2022-11-07 10:56:08,317 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,317 - migrateData - INFO - Vo name onboarding.egi.eu with id +2022-11-07 10:56:08,318 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,318 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,318 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,320 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,321 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 10:56:08,321 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,322 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,322 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,323 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:56:08,323 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,323 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 10:56:08,324 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,324 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 10:56:08,324 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,325 - migrateData - INFO - Vo name eiscat child1 with id +2022-11-07 10:56:08,325 - migrateData - INFO - Vo name eiscat.se with id +2022-11-07 10:56:08,325 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 10:56:08,326 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:56:08,326 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 10:56:08,326 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 10:56:08,327 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 10:56:08,327 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 10:56:08,327 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,328 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 10:56:08,328 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:56:08,329 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,329 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 10:56:08,330 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:56:08,330 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 10:56:08,330 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 10:56:08,331 - migrateData - INFO - Vo name AMB with id +2022-11-07 10:56:08,331 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:56:08,331 - migrateData - INFO - Vo name vo.parent.example.eu with id +2022-11-07 10:56:08,332 - migrateData - INFO - Vo name vo.child.example.eu with id +2022-11-07 10:56:08,332 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,332 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:56:08,332 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,333 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,333 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 10:56:08,333 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,334 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 10:56:08,334 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,335 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:56:08,335 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,336 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,336 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 10:56:08,336 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,337 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,337 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:56:08,337 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,338 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:56:08,338 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,339 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,339 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,339 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,339 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:56:08,340 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:56:08,340 - migrateData - INFO - Vo name science-team01 with id +2022-11-07 10:56:08,340 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,341 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,341 - migrateData - INFO - Vo name science-team01 with id +2022-11-07 10:56:08,341 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,342 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:56:08,342 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,343 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,343 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,343 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,343 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,344 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 10:56:08,344 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,344 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:56:08,345 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,345 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:56:08,345 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,346 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:56:08,346 - migrateData - INFO - Vo name science-team01 with id +2022-11-07 10:56:08,346 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,347 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,347 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 10:56:08,347 - migrateData - INFO - Vo name Admins.DOAB with id +2022-11-07 10:56:08,349 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:56:08,350 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:56:08,351 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:56:08,351 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:56:08,352 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,352 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:56:08,353 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,353 - migrateData - INFO - Vo name science-team01 with id +2022-11-07 10:56:08,353 - migrateData - INFO - Vo name test-TRIPLE with id +2022-11-07 10:56:08,354 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 10:56:08,357 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id +2022-11-07 10:56:08,358 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,358 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,359 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:56:08,360 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,360 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,360 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,361 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,361 - migrateData - INFO - Vo name eosc-synergy.eu with id +2022-11-07 10:56:08,361 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:56:08,362 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:56:08,362 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,363 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,363 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 10:56:08,363 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 10:56:08,363 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 10:56:08,364 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,364 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:56:08,364 - migrateData - INFO - Vo name vo.child.example.eu with id +2022-11-07 10:56:08,364 - migrateData - INFO - Vo name AMB with id +2022-11-07 10:56:08,365 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:56:08,365 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:56:08,365 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:56:08,366 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,367 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,367 - migrateData - INFO - Vo name vo.child.child.child.child.example.eu with id +2022-11-07 10:56:08,367 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,368 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,368 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:56:08,368 - migrateData - INFO - Vo name Admins.DOAB with id +2022-11-07 10:56:08,368 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:56:08,369 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:56:08,369 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:56:08,369 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:56:08,370 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:56:08,370 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:56:08,370 - migrateData - INFO - Vo name Managers.DOAB with id +2022-11-07 10:56:08,371 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:56:08,371 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:56:08,371 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:56:08,372 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:56:08,372 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:56:08,372 - migrateData - INFO - Vo name Admins.PSP with id +2022-11-07 10:56:08,372 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:56:08,373 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:56:08,373 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,373 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 10:56:08,374 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,374 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 10:56:08,375 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:56:08,379 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 10:57:51,419 - migrateData - INFO - Vo name AARC Pilot User Sponsors with id +2022-11-07 10:57:51,421 - migrateData - INFO - Vo name AARC Pilot User Sponsors with id +2022-11-07 10:57:51,421 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:57:51,422 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 10:57:51,423 - migrateData - INFO - Vo name WP5 with id +2022-11-07 10:57:51,423 - migrateData - INFO - Vo name WP5 with id +2022-11-07 10:57:51,423 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:57:51,424 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:57:51,424 - migrateData - INFO - Vo name Managers.DOAB with id +2022-11-07 10:57:51,424 - migrateData - INFO - Vo name AMB with id +2022-11-07 10:57:51,425 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 10:57:51,425 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,426 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,427 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,427 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:57:51,428 - migrateData - INFO - Vo name DOAB with id +2022-11-07 10:57:51,428 - migrateData - INFO - Vo name Managers.PSP with id +2022-11-07 10:57:51,429 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,429 - migrateData - INFO - Vo name onboarding.egi.eu with id +2022-11-07 10:57:51,429 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,433 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,434 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,434 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,435 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 10:57:51,435 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,435 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,436 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:57:51,437 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,437 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 10:57:51,438 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,439 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 10:57:51,439 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,440 - migrateData - INFO - Vo name eiscat child1 with id +2022-11-07 10:57:51,440 - migrateData - INFO - Vo name eiscat.se with id +2022-11-07 10:57:51,441 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 10:57:51,441 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:57:51,445 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 10:57:51,446 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 10:57:51,446 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 10:57:51,447 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 10:57:51,447 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,448 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 10:57:51,448 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:57:51,449 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,449 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 10:57:51,450 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:57:51,450 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 10:57:51,451 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 10:57:51,451 - migrateData - INFO - Vo name AMB with id +2022-11-07 10:57:51,451 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:57:51,452 - migrateData - INFO - Vo name vo.parent.example.eu with id +2022-11-07 10:57:51,452 - migrateData - INFO - Vo name vo.child.example.eu with id +2022-11-07 10:57:51,452 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,453 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:57:51,453 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,453 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,454 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 10:57:51,454 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,455 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 10:57:51,455 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,455 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 10:57:51,455 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,456 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,456 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 10:57:51,457 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,457 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,457 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:57:51,458 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,458 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:57:51,459 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,459 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,459 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,460 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,460 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:57:51,460 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:57:51,461 - migrateData - INFO - Vo name science-team01 with id +2022-11-07 10:57:51,461 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,461 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,462 - migrateData - INFO - Vo name science-team01 with id +2022-11-07 10:57:51,462 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,462 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 10:57:51,463 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,463 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,464 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,464 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,464 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,465 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 10:57:51,465 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,466 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:57:51,466 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,467 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 10:57:51,467 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,467 - migrateData - INFO - Vo name LC99_001 with id +2022-11-07 10:57:51,467 - migrateData - INFO - Vo name science-team01 with id +2022-11-07 10:57:51,468 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,468 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,469 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 10:57:51,469 - migrateData - INFO - Vo name Admins.DOAB with id +2022-11-07 10:57:51,470 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:57:51,471 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:57:51,472 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:57:51,472 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:57:51,473 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,473 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:57:51,473 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,474 - migrateData - INFO - Vo name science-team01 with id +2022-11-07 10:57:51,474 - migrateData - INFO - Vo name test-TRIPLE with id +2022-11-07 10:57:51,474 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 10:57:51,475 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id +2022-11-07 10:57:51,475 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,475 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,476 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 10:57:51,476 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,478 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,479 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,479 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,480 - migrateData - INFO - Vo name eosc-synergy.eu with id +2022-11-07 10:57:51,480 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:57:51,481 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 10:57:51,481 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,481 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,482 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 10:57:51,482 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 10:57:51,482 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 10:57:51,483 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,483 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:57:51,483 - migrateData - INFO - Vo name vo.child.example.eu with id +2022-11-07 10:57:51,484 - migrateData - INFO - Vo name AMB with id +2022-11-07 10:57:51,484 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:57:51,484 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:57:51,485 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:57:51,485 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,485 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,486 - migrateData - INFO - Vo name vo.child.child.child.child.example.eu with id +2022-11-07 10:57:51,486 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,486 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,487 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:57:51,487 - migrateData - INFO - Vo name Admins.DOAB with id +2022-11-07 10:57:51,487 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:57:51,488 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:57:51,488 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:57:51,489 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:57:51,489 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:57:51,489 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:57:51,490 - migrateData - INFO - Vo name Managers.DOAB with id +2022-11-07 10:57:51,490 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 10:57:51,491 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:57:51,493 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:57:51,493 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 10:57:51,494 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:57:51,494 - migrateData - INFO - Vo name Admins.PSP with id +2022-11-07 10:57:51,495 - migrateData - INFO - Vo name Publishers.DOAB with id +2022-11-07 10:57:51,495 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 10:57:51,496 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,496 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 10:57:51,497 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,497 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 10:57:51,498 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 10:57:51,498 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:02,395 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:02,396 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:02,397 - migrateData - INFO - Vo name WP5 with id +2022-11-07 11:03:02,398 - migrateData - INFO - Vo name WP5 with id +2022-11-07 11:03:02,399 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:02,400 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:02,401 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:02,403 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:02,403 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,404 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,404 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,405 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:02,407 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,408 - migrateData - INFO - Vo name onboarding.egi.eu with id +2022-11-07 11:03:02,408 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,408 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,409 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,409 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,409 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:02,410 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,410 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,411 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,411 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:02,411 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,412 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:02,412 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,412 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 11:03:02,413 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,413 - migrateData - INFO - Vo name eiscat.se with id +2022-11-07 11:03:02,414 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:02,414 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:02,415 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 11:03:02,415 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 11:03:02,416 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 11:03:02,416 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 11:03:02,417 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,417 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 11:03:02,417 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:02,418 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,419 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:02,420 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:02,420 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:02,420 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 11:03:02,421 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:02,421 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:02,422 - migrateData - INFO - Vo name vo.parent.example.eu with id +2022-11-07 11:03:02,422 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,422 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:02,423 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,423 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,423 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:02,424 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,424 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:02,424 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,424 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:02,425 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,425 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,426 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 11:03:02,426 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,427 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,428 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,428 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,429 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,429 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,430 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,431 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,433 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,435 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,436 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:02,436 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,437 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,437 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,438 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,438 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,438 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:02,439 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,439 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:02,439 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,440 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:02,440 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,441 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,441 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,442 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:02,442 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:02,443 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:02,443 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:02,443 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:02,444 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,445 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:02,445 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,446 - migrateData - INFO - Vo name test-TRIPLE with id +2022-11-07 11:03:02,446 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:02,446 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id +2022-11-07 11:03:02,447 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,447 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,447 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:02,448 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,448 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,448 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,449 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,449 - migrateData - INFO - Vo name eosc-synergy.eu with id +2022-11-07 11:03:02,449 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:02,450 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:02,450 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,451 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,451 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:02,451 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:02,452 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:02,452 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,452 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:02,453 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:02,453 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:02,454 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:02,454 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:02,454 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,455 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,455 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,455 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,456 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:02,456 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:02,457 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:02,458 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:02,459 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:02,460 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:02,460 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:02,460 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:02,461 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:02,462 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,462 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:02,464 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,465 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:02,465 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:02,466 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:15,223 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:15,224 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:15,225 - migrateData - INFO - Vo name WP5 with id +2022-11-07 11:03:15,227 - migrateData - INFO - Vo name WP5 with id +2022-11-07 11:03:15,228 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:15,229 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:15,230 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:15,230 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:15,231 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,231 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,231 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,231 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:15,232 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,233 - migrateData - INFO - Vo name onboarding.egi.eu with id +2022-11-07 11:03:15,233 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,233 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,233 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,234 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,234 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:15,234 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,235 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,235 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,235 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:15,236 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,236 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:15,236 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,236 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 11:03:15,237 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,237 - migrateData - INFO - Vo name eiscat.se with id +2022-11-07 11:03:15,238 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:15,238 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:15,241 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 11:03:15,242 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 11:03:15,242 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 11:03:15,243 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 11:03:15,243 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,243 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 11:03:15,243 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:15,244 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,244 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:15,244 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:15,245 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:15,245 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 11:03:15,245 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:15,246 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:15,246 - migrateData - INFO - Vo name vo.parent.example.eu with id +2022-11-07 11:03:15,249 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,250 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:15,250 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,250 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,251 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:15,251 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,252 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:15,252 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,252 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:15,253 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,253 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,254 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 11:03:15,254 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,254 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,255 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,256 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,256 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,257 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,257 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,258 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,259 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,260 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,261 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:15,261 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,262 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,262 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,263 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,263 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,263 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:15,264 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,264 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:15,265 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,265 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:15,265 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,267 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,268 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,269 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:15,269 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:15,270 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:15,270 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:15,271 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:15,272 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,272 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:15,273 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,273 - migrateData - INFO - Vo name test-TRIPLE with id +2022-11-07 11:03:15,274 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:15,274 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id +2022-11-07 11:03:15,274 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,275 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,275 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:15,275 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,275 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,276 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,276 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,277 - migrateData - INFO - Vo name eosc-synergy.eu with id +2022-11-07 11:03:15,277 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:15,278 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:15,279 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,280 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,281 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:15,282 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:15,282 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:15,283 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,283 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:15,284 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:15,284 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:15,285 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:15,285 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:15,285 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,286 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,287 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,287 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,289 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:15,290 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:15,291 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:15,295 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:15,296 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:15,297 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:15,298 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:15,298 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:15,300 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:15,300 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,301 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:15,301 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,304 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:15,304 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:15,304 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:25,817 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:25,818 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:25,818 - migrateData - INFO - Vo name WP5 with id +2022-11-07 11:03:25,819 - migrateData - INFO - Vo name WP5 with id +2022-11-07 11:03:25,819 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:25,820 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:25,821 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:25,822 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:25,822 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,823 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,824 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,826 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:25,827 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,828 - migrateData - INFO - Vo name onboarding.egi.eu with id +2022-11-07 11:03:25,828 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,828 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,829 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,829 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,829 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:25,830 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,830 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,831 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,831 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:25,831 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,832 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:25,832 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,832 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 11:03:25,833 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,837 - migrateData - INFO - Vo name eiscat.se with id +2022-11-07 11:03:25,838 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:25,839 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:25,839 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 11:03:25,843 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 11:03:25,844 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 11:03:25,844 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 11:03:25,844 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,845 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 11:03:25,845 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:25,846 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,846 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:25,846 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:25,847 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:25,847 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 11:03:25,847 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:25,847 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:25,848 - migrateData - INFO - Vo name vo.parent.example.eu with id +2022-11-07 11:03:25,849 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,849 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:25,849 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,850 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,850 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:25,851 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,851 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:25,851 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,852 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:25,852 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,852 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,853 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 11:03:25,853 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,853 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,854 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,854 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,855 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,855 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,855 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,856 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,857 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,857 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,858 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:25,858 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,861 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,861 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,862 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,862 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,862 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:25,863 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,863 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:25,863 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,864 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:25,864 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,865 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,865 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,866 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:25,866 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:25,867 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:25,867 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:25,867 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:25,868 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,868 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:25,868 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,869 - migrateData - INFO - Vo name test-TRIPLE with id +2022-11-07 11:03:25,869 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:25,870 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id +2022-11-07 11:03:25,870 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,871 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,873 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:25,874 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,877 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,877 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,878 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,878 - migrateData - INFO - Vo name eosc-synergy.eu with id +2022-11-07 11:03:25,879 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:25,879 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:25,879 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,879 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,880 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:25,880 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:25,880 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:25,880 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,881 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:25,881 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:25,881 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:25,882 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:25,882 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:25,882 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,883 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,883 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,883 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,884 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:25,884 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:25,885 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:25,886 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:25,886 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:25,887 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:25,888 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:25,888 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:25,889 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:25,889 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,901 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:25,902 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,912 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:25,913 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:25,913 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:44,366 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:44,367 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:44,368 - migrateData - INFO - Vo name WP5 with id +2022-11-07 11:03:44,369 - migrateData - INFO - Vo name WP5 with id +2022-11-07 11:03:44,369 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:44,370 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:44,371 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:44,372 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:44,373 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,374 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,374 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,375 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:44,376 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,376 - migrateData - INFO - Vo name onboarding.egi.eu with id +2022-11-07 11:03:44,376 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,377 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,378 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,378 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,378 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:44,379 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,379 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,379 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,380 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:44,380 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,380 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:44,381 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,382 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 11:03:44,383 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,383 - migrateData - INFO - Vo name eiscat.se with id +2022-11-07 11:03:44,384 - migrateData - INFO - Vo name WP5-all with id +2022-11-07 11:03:44,384 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:44,385 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 11:03:44,385 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 11:03:44,385 - migrateData - INFO - Vo name test-sso-confluence with id +2022-11-07 11:03:44,386 - migrateData - INFO - Vo name test-sso-mailman with id +2022-11-07 11:03:44,386 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,386 - migrateData - INFO - Vo name rcauth.eu with id +2022-11-07 11:03:44,387 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:44,387 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,388 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:44,388 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:44,388 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:44,388 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 11:03:44,389 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:44,389 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:44,390 - migrateData - INFO - Vo name vo.parent.example.eu with id +2022-11-07 11:03:44,390 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,391 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:44,391 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,391 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,392 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:44,392 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,392 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:44,393 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,393 - migrateData - INFO - Vo name vo.geoss.eu with id +2022-11-07 11:03:44,393 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,394 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,394 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id +2022-11-07 11:03:44,394 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,395 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,395 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,396 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,396 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,397 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,397 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,398 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,399 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,399 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,400 - migrateData - INFO - Vo name radio-observatory with id +2022-11-07 11:03:44,400 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,400 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,401 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,401 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,401 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,401 - migrateData - INFO - Vo name vo.dariah.eu with id +2022-11-07 11:03:44,402 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,402 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:44,403 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,403 - migrateData - INFO - Vo name training.egi.eu with id +2022-11-07 11:03:44,404 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,405 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,405 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,406 - migrateData - INFO - Vo name cloud.grnet.gr with id +2022-11-07 11:03:44,407 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:44,408 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:44,408 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:44,409 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:44,409 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,410 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:44,410 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,411 - migrateData - INFO - Vo name test-TRIPLE with id +2022-11-07 11:03:44,411 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:44,412 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id +2022-11-07 11:03:44,412 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,413 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,413 - migrateData - INFO - Vo name checkin-integration with id +2022-11-07 11:03:44,413 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,414 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,414 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,414 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,415 - migrateData - INFO - Vo name eosc-synergy.eu with id +2022-11-07 11:03:44,415 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:44,415 - migrateData - INFO - Vo name worsica.vo.incd.pt with id +2022-11-07 11:03:44,416 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,416 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,416 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:44,417 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:44,417 - migrateData - INFO - Vo name vo.access.egi.eu with id +2022-11-07 11:03:44,417 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,418 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:44,418 - migrateData - INFO - Vo name AMB with id +2022-11-07 11:03:44,419 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:44,420 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:44,420 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:44,420 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,421 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,422 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,422 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,422 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:44,423 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:44,423 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:44,424 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:44,424 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id +2022-11-07 11:03:44,424 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:44,425 - migrateData - INFO - Vo name goc.egi.eu with id +2022-11-07 11:03:44,425 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:44,426 - migrateData - INFO - Vo name vo.operas-eu.org with id +2022-11-07 11:03:44,427 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,427 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:44,428 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,429 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:03:44,429 - migrateData - INFO - Vo name vo.example.org with id +2022-11-07 11:03:44,429 - migrateData - INFO - Vo name openEO_test with id +2022-11-07 11:04:04,379 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) +2022-11-07 11:04:04,379 - migrateData - INFO - Vo name WP5-all with id (33,) +2022-11-07 11:04:04,380 - migrateData - INFO - Vo name WP5 with id (34,) +2022-11-07 11:04:04,380 - migrateData - INFO - Vo name WP5 with id (34,) +2022-11-07 11:04:04,381 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) +2022-11-07 11:04:04,382 - migrateData - INFO - Vo name goc.egi.eu with id (51,) +2022-11-07 11:04:04,382 - migrateData - INFO - Vo name AMB with id (37,) +2022-11-07 11:04:04,383 - migrateData - INFO - Vo name WP5-all with id (33,) +2022-11-07 11:04:04,383 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,384 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,384 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,385 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) +2022-11-07 11:04:04,386 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,386 - migrateData - INFO - Vo name onboarding.egi.eu with id (55,) +2022-11-07 11:04:04,386 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,386 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,387 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,387 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,388 - migrateData - INFO - Vo name vo.access.egi.eu with id (54,) +2022-11-07 11:04:04,388 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,389 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,390 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,390 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) +2022-11-07 11:04:04,391 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,392 - migrateData - INFO - Vo name vo.dariah.eu with id (30,) +2022-11-07 11:04:04,392 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,393 - migrateData - INFO - Vo name rcauth.eu with id (43,) +2022-11-07 11:04:04,393 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,394 - migrateData - INFO - Vo name eiscat.se with id (52,) +2022-11-07 11:04:04,395 - migrateData - INFO - Vo name WP5-all with id (33,) +2022-11-07 11:04:04,396 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) +2022-11-07 11:04:04,397 - migrateData - INFO - Vo name test-sso-confluence with id (39,) +2022-11-07 11:04:04,397 - migrateData - INFO - Vo name test-sso-mailman with id (38,) +2022-11-07 11:04:04,398 - migrateData - INFO - Vo name test-sso-confluence with id (39,) +2022-11-07 11:04:04,399 - migrateData - INFO - Vo name test-sso-mailman with id (38,) +2022-11-07 11:04:04,400 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,400 - migrateData - INFO - Vo name rcauth.eu with id (43,) +2022-11-07 11:04:04,401 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) +2022-11-07 11:04:04,402 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,403 - migrateData - INFO - Vo name cloud.grnet.gr with id (41,) +2022-11-07 11:04:04,403 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) +2022-11-07 11:04:04,404 - migrateData - INFO - Vo name cloud.grnet.gr with id (41,) +2022-11-07 11:04:04,405 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id (42,) +2022-11-07 11:04:04,406 - migrateData - INFO - Vo name AMB with id (37,) +2022-11-07 11:04:04,407 - migrateData - INFO - Vo name goc.egi.eu with id (51,) +2022-11-07 11:04:04,408 - migrateData - INFO - Vo name vo.parent.example.eu with id (44,) +2022-11-07 11:04:04,409 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,410 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) +2022-11-07 11:04:04,410 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,411 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,411 - migrateData - INFO - Vo name vo.dariah.eu with id (30,) +2022-11-07 11:04:04,412 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,412 - migrateData - INFO - Vo name vo.dariah.eu with id (30,) +2022-11-07 11:04:04,413 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,414 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) +2022-11-07 11:04:04,415 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,416 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,417 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id (42,) +2022-11-07 11:04:04,418 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,419 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,420 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,421 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,422 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,423 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,424 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,425 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,425 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,426 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,426 - migrateData - INFO - Vo name radio-observatory with id (49,) +2022-11-07 11:04:04,426 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,426 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,427 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,427 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,427 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,428 - migrateData - INFO - Vo name vo.dariah.eu with id (30,) +2022-11-07 11:04:04,428 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,428 - migrateData - INFO - Vo name goc.egi.eu with id (51,) +2022-11-07 11:04:04,428 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,429 - migrateData - INFO - Vo name training.egi.eu with id (32,) +2022-11-07 11:04:04,429 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,431 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,431 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,432 - migrateData - INFO - Vo name cloud.grnet.gr with id (41,) +2022-11-07 11:04:04,433 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) +2022-11-07 11:04:04,434 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) +2022-11-07 11:04:04,435 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) +2022-11-07 11:04:04,435 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) +2022-11-07 11:04:04,436 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) +2022-11-07 11:04:04,436 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,437 - migrateData - INFO - Vo name test-TRIPLE with id (45,) +2022-11-07 11:04:04,437 - migrateData - INFO - Vo name openEO_test with id (56,) +2022-11-07 11:04:04,438 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id (46,) +2022-11-07 11:04:04,438 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,439 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,439 - migrateData - INFO - Vo name checkin-integration with id (31,) +2022-11-07 11:04:04,440 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,440 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,440 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,441 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,441 - migrateData - INFO - Vo name eosc-synergy.eu with id (48,) +2022-11-07 11:04:04,441 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) +2022-11-07 11:04:04,441 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) +2022-11-07 11:04:04,442 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,442 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,442 - migrateData - INFO - Vo name vo.access.egi.eu with id (54,) +2022-11-07 11:04:04,443 - migrateData - INFO - Vo name vo.access.egi.eu with id (54,) +2022-11-07 11:04:04,443 - migrateData - INFO - Vo name vo.access.egi.eu with id (54,) +2022-11-07 11:04:04,443 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,445 - migrateData - INFO - Vo name goc.egi.eu with id (51,) +2022-11-07 11:04:04,446 - migrateData - INFO - Vo name AMB with id (37,) +2022-11-07 11:04:04,447 - migrateData - INFO - Vo name goc.egi.eu with id (51,) +2022-11-07 11:04:04,447 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) +2022-11-07 11:04:04,448 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) +2022-11-07 11:04:04,448 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,448 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,452 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,452 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,453 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) +2022-11-07 11:04:04,454 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) +2022-11-07 11:04:04,454 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) +2022-11-07 11:04:04,455 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) +2022-11-07 11:04:04,456 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) +2022-11-07 11:04:04,457 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) +2022-11-07 11:04:04,457 - migrateData - INFO - Vo name goc.egi.eu with id (51,) +2022-11-07 11:04:04,457 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) +2022-11-07 11:04:04,458 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) +2022-11-07 11:04:04,459 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,459 - migrateData - INFO - Vo name openEO_test with id (56,) +2022-11-07 11:04:04,460 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,460 - migrateData - INFO - Vo name openEO_test with id (56,) +2022-11-07 11:04:04,461 - migrateData - INFO - Vo name vo.example.org with id (50,) +2022-11-07 11:04:04,461 - migrateData - INFO - Vo name openEO_test with id (56,) +2022-11-07 11:04:14,031 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:04:14,032 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:04:14,033 - migrateData - INFO - Vo name WP5 with id 34 +2022-11-07 11:04:14,033 - migrateData - INFO - Vo name WP5 with id 34 +2022-11-07 11:04:14,034 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:04:14,034 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:04:14,035 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:04:14,036 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:04:14,037 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,038 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,038 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,039 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:04:14,040 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,041 - migrateData - INFO - Vo name onboarding.egi.eu with id 55 +2022-11-07 11:04:14,041 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,042 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,042 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,042 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,043 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:04:14,043 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,043 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,044 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,044 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:04:14,044 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,045 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:04:14,045 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,045 - migrateData - INFO - Vo name rcauth.eu with id 43 +2022-11-07 11:04:14,046 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,046 - migrateData - INFO - Vo name eiscat.se with id 52 +2022-11-07 11:04:14,047 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:04:14,047 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:04:14,048 - migrateData - INFO - Vo name test-sso-confluence with id 39 +2022-11-07 11:04:14,048 - migrateData - INFO - Vo name test-sso-mailman with id 38 +2022-11-07 11:04:14,050 - migrateData - INFO - Vo name test-sso-confluence with id 39 +2022-11-07 11:04:14,050 - migrateData - INFO - Vo name test-sso-mailman with id 38 +2022-11-07 11:04:14,051 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,051 - migrateData - INFO - Vo name rcauth.eu with id 43 +2022-11-07 11:04:14,051 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:04:14,052 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,052 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:04:14,052 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:04:14,052 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:04:14,053 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 +2022-11-07 11:04:14,053 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:04:14,053 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:04:14,054 - migrateData - INFO - Vo name vo.parent.example.eu with id 44 +2022-11-07 11:04:14,054 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,055 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:04:14,058 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,058 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,058 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:04:14,059 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,059 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:04:14,059 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,060 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:04:14,060 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,060 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,061 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 +2022-11-07 11:04:14,061 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,062 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,063 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,064 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,065 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,065 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,066 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,067 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,067 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,068 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,069 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:04:14,069 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,070 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,070 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,070 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,071 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,071 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:04:14,071 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,072 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:04:14,072 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,072 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:04:14,073 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,074 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,074 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,074 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:04:14,074 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:04:14,075 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:04:14,075 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:04:14,075 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:04:14,076 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,077 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:04:14,078 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,080 - migrateData - INFO - Vo name test-TRIPLE with id 45 +2022-11-07 11:04:14,085 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:04:14,089 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 46 +2022-11-07 11:04:14,090 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,091 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,092 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:04:14,093 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,094 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,095 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,095 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,097 - migrateData - INFO - Vo name eosc-synergy.eu with id 48 +2022-11-07 11:04:14,098 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:04:14,098 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:04:14,098 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,099 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,100 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:04:14,100 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:04:14,101 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:04:14,101 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,101 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:04:14,105 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:04:14,105 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:04:14,106 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:04:14,106 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:04:14,107 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,107 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,107 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,108 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,108 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:04:14,109 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:04:14,109 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:04:14,111 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:04:14,111 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:04:14,118 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:04:14,120 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:04:14,121 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:04:14,123 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:04:14,123 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,124 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:04:14,124 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,125 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:04:14,125 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:04:14,126 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:09:08,416 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:09:28,319 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:11:38,904 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:12:00,789 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:12:40,619 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:13:29,010 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:13:48,927 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:13:48,928 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:13:48,928 - migrateData - INFO - Vo name WP5 with id 34 +2022-11-07 11:13:48,929 - migrateData - INFO - Vo name WP5 with id 34 +2022-11-07 11:13:48,930 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:13:48,930 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:13:48,931 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:13:48,932 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:13:48,932 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,932 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,933 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,933 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:13:48,933 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,934 - migrateData - INFO - Vo name onboarding.egi.eu with id 55 +2022-11-07 11:13:48,934 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,934 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,935 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,935 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,936 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:13:48,936 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,937 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,937 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,937 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:13:48,938 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,938 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:13:48,938 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,939 - migrateData - INFO - Vo name rcauth.eu with id 43 +2022-11-07 11:13:48,939 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,939 - migrateData - INFO - Vo name eiscat.se with id 52 +2022-11-07 11:13:48,940 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:13:48,941 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:13:48,941 - migrateData - INFO - Vo name test-sso-confluence with id 39 +2022-11-07 11:13:48,941 - migrateData - INFO - Vo name test-sso-mailman with id 38 +2022-11-07 11:13:48,942 - migrateData - INFO - Vo name test-sso-confluence with id 39 +2022-11-07 11:13:48,942 - migrateData - INFO - Vo name test-sso-mailman with id 38 +2022-11-07 11:13:48,942 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,943 - migrateData - INFO - Vo name rcauth.eu with id 43 +2022-11-07 11:13:48,944 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:13:48,944 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,944 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:13:48,945 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:13:48,946 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:13:48,946 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 +2022-11-07 11:13:48,946 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:13:48,947 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:13:48,947 - migrateData - INFO - Vo name vo.parent.example.eu with id 44 +2022-11-07 11:13:48,948 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,949 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:13:48,950 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,951 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,953 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:13:48,953 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,954 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:13:48,954 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,954 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:13:48,955 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,955 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,961 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 +2022-11-07 11:13:48,961 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,962 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,962 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,963 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,963 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,963 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,963 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,965 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,966 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,967 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,967 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:13:48,967 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,968 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,968 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,968 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,968 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,969 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:13:48,969 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,969 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:13:48,970 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,970 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:13:48,971 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,972 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,972 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,973 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:13:48,973 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:13:48,974 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:13:48,974 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:13:48,975 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:13:48,976 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,976 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:13:48,977 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,977 - migrateData - INFO - Vo name test-TRIPLE with id 45 +2022-11-07 11:13:48,978 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:13:48,978 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 46 +2022-11-07 11:13:48,978 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,979 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,979 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:13:48,979 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,980 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,980 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,980 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,984 - migrateData - INFO - Vo name eosc-synergy.eu with id 48 +2022-11-07 11:13:48,985 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:13:48,986 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:13:48,987 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,988 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,988 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:13:48,989 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:13:48,989 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:13:48,990 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,990 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:13:48,991 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:13:48,991 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:13:48,992 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:13:48,992 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:13:48,992 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,993 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,993 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,993 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:48,994 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:13:48,994 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:13:48,995 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:13:48,996 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:13:48,999 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:13:49,000 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:13:49,000 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:13:49,001 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:13:49,002 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:13:49,003 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:49,004 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:13:49,004 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:49,005 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:13:49,006 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:13:49,007 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:14:16,464 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:14:16,464 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:14:16,465 - migrateData - INFO - Vo name WP5 with id 34 +2022-11-07 11:14:16,466 - migrateData - INFO - Vo name WP5 with id 34 +2022-11-07 11:14:16,468 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:14:16,468 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:14:16,469 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:14:16,469 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:14:16,470 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,470 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,470 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,471 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:14:16,471 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,472 - migrateData - INFO - Vo name onboarding.egi.eu with id 55 +2022-11-07 11:14:16,472 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,473 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,473 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,473 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,474 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:14:16,474 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,474 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,474 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,475 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:14:16,475 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,475 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:14:16,476 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,476 - migrateData - INFO - Vo name rcauth.eu with id 43 +2022-11-07 11:14:16,476 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,477 - migrateData - INFO - Vo name eiscat.se with id 52 +2022-11-07 11:14:16,477 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:14:16,477 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:14:16,477 - migrateData - INFO - Vo name test-sso-confluence with id 39 +2022-11-07 11:14:16,478 - migrateData - INFO - Vo name test-sso-mailman with id 38 +2022-11-07 11:14:16,478 - migrateData - INFO - Vo name test-sso-confluence with id 39 +2022-11-07 11:14:16,478 - migrateData - INFO - Vo name test-sso-mailman with id 38 +2022-11-07 11:14:16,479 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,479 - migrateData - INFO - Vo name rcauth.eu with id 43 +2022-11-07 11:14:16,479 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:14:16,480 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,480 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:14:16,481 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:14:16,481 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:14:16,482 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 +2022-11-07 11:14:16,482 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:14:16,482 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:14:16,483 - migrateData - INFO - Vo name vo.parent.example.eu with id 44 +2022-11-07 11:14:16,484 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,484 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:14:16,484 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,485 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,485 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:14:16,485 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,486 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:14:16,486 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,487 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:14:16,487 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,487 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,487 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 +2022-11-07 11:14:16,488 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,488 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,489 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,489 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,490 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,490 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,491 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,492 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,492 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,493 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,493 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:14:16,493 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,494 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,494 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,495 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,495 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,495 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:14:16,496 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,496 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:14:16,496 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,497 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:14:16,497 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,498 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,498 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,498 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:14:16,500 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:14:16,500 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:14:16,501 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:14:16,501 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:14:16,502 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,503 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:14:16,503 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,503 - migrateData - INFO - Vo name test-TRIPLE with id 45 +2022-11-07 11:14:16,504 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:14:16,504 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 46 +2022-11-07 11:14:16,504 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,505 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,505 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:14:16,505 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,506 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,506 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,506 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,506 - migrateData - INFO - Vo name eosc-synergy.eu with id 48 +2022-11-07 11:14:16,507 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:14:16,507 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:14:16,507 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,508 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,508 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:14:16,509 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:14:16,509 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:14:16,510 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,510 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:14:16,511 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:14:16,511 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:14:16,511 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:14:16,512 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:14:16,512 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,513 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,514 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,514 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,515 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:14:16,516 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:14:16,517 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:14:16,519 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:14:16,520 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:14:16,521 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:14:16,521 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:14:16,522 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:14:16,522 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:14:16,523 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,523 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:14:16,524 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,524 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:14:16,524 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:14:16,524 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:14:16,525 - pgConnector - ERROR - relation "members" does not exist +2022-11-07 11:19:10,834 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:19:10,834 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:19:10,835 - migrateData - INFO - Vo name WP5 with id 34 +2022-11-07 11:19:10,835 - migrateData - INFO - Vo name WP5 with id 34 +2022-11-07 11:19:10,836 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:19:10,837 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:19:10,838 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:19:10,838 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:19:10,839 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,839 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,840 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,840 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:19:10,841 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,842 - migrateData - INFO - Vo name onboarding.egi.eu with id 55 +2022-11-07 11:19:10,842 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,842 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,843 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,843 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,843 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:19:10,844 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,844 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,844 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,845 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:19:10,845 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,845 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:19:10,851 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,852 - migrateData - INFO - Vo name rcauth.eu with id 43 +2022-11-07 11:19:10,853 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,854 - migrateData - INFO - Vo name eiscat.se with id 52 +2022-11-07 11:19:10,855 - migrateData - INFO - Vo name WP5-all with id 33 +2022-11-07 11:19:10,855 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:19:10,856 - migrateData - INFO - Vo name test-sso-confluence with id 39 +2022-11-07 11:19:10,856 - migrateData - INFO - Vo name test-sso-mailman with id 38 +2022-11-07 11:19:10,857 - migrateData - INFO - Vo name test-sso-confluence with id 39 +2022-11-07 11:19:10,857 - migrateData - INFO - Vo name test-sso-mailman with id 38 +2022-11-07 11:19:10,858 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,858 - migrateData - INFO - Vo name rcauth.eu with id 43 +2022-11-07 11:19:10,858 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:19:10,859 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,859 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:19:10,860 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:19:10,861 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:19:10,861 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 +2022-11-07 11:19:10,862 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:19:10,862 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:19:10,863 - migrateData - INFO - Vo name vo.parent.example.eu with id 44 +2022-11-07 11:19:10,863 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,864 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:19:10,864 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,864 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,865 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:19:10,865 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,865 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:19:10,866 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,866 - migrateData - INFO - Vo name vo.geoss.eu with id 29 +2022-11-07 11:19:10,866 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,866 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,867 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 +2022-11-07 11:19:10,867 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,867 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,868 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,868 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,869 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,869 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,870 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,872 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,872 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,873 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,873 - migrateData - INFO - Vo name radio-observatory with id 49 +2022-11-07 11:19:10,873 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,874 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,874 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,875 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,875 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,875 - migrateData - INFO - Vo name vo.dariah.eu with id 30 +2022-11-07 11:19:10,876 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,876 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:19:10,877 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,877 - migrateData - INFO - Vo name training.egi.eu with id 32 +2022-11-07 11:19:10,877 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,878 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,879 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,879 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 +2022-11-07 11:19:10,880 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:19:10,880 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:19:10,881 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:19:10,881 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:19:10,882 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,883 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:19:10,883 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,884 - migrateData - INFO - Vo name test-TRIPLE with id 45 +2022-11-07 11:19:10,884 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:19:10,884 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 46 +2022-11-07 11:19:10,885 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,885 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,886 - migrateData - INFO - Vo name checkin-integration with id 31 +2022-11-07 11:19:10,886 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,886 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,887 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,887 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,887 - migrateData - INFO - Vo name eosc-synergy.eu with id 48 +2022-11-07 11:19:10,887 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:19:10,888 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 +2022-11-07 11:19:10,888 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,888 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,889 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:19:10,889 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:19:10,889 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 +2022-11-07 11:19:10,890 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,890 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:19:10,890 - migrateData - INFO - Vo name AMB with id 37 +2022-11-07 11:19:10,891 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:19:10,891 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:19:10,891 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:19:10,891 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,892 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,892 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,892 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,893 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:19:10,893 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:19:10,894 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:19:10,895 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:19:10,895 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 +2022-11-07 11:19:10,895 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:19:10,896 - migrateData - INFO - Vo name goc.egi.eu with id 51 +2022-11-07 11:19:10,896 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:19:10,897 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 +2022-11-07 11:19:10,897 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,897 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:19:10,898 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,898 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 11:19:10,898 - migrateData - INFO - Vo name vo.example.org with id 50 +2022-11-07 11:19:10,899 - migrateData - INFO - Vo name openEO_test with id 56 +2022-11-07 13:17:24,029 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist +2022-11-07 13:17:44,578 - pgConnector - ERROR - relation "communities_info" does not exist +2022-11-07 13:18:48,243 - pgConnector - ERROR - multiple primary keys for table "communities_info" are not allowed +LINE 61: PRIMARY KEY(id) + ^ +2022-11-07 13:19:07,287 - pgConnector - ERROR - syntax error at or near ")" +LINE 61: ); + ^ +2022-11-07 13:19:12,826 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist +2022-11-07 13:21:06,042 - pgConnector - ERROR - syntax error at or near ")" +LINE 62: ); + ^ +2022-11-07 13:21:15,019 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist +2022-11-07 13:22:52,983 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist +2022-11-07 13:23:31,264 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist +2022-11-07 13:24:10,402 - pgConnector - ERROR - column "asd" referenced in foreign key constraint does not exist +2022-11-07 13:25:03,488 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist +2022-11-07 13:25:15,710 - pgConnector - ERROR - column "community_id" referenced in foreign key constraint does not exist +2022-11-07 13:26:25,621 - migrateData - INFO - No new data found +2022-11-07 13:27:35,516 - migrateData - INFO - No new data found +2022-11-07 13:27:51,331 - migrateData - INFO - No new data found +2022-11-07 13:28:17,458 - migrateData - INFO - No new data found +2022-11-07 13:28:55,822 - migrateData - INFO - No new data found +2022-11-07 13:29:53,828 - pgConnector - INFO - 1 +2022-11-07 13:29:53,828 - migrateData - INFO - 1 item +2022-11-07 13:29:53,829 - pgConnector - ERROR - column "id" does not exist +LINE 1: ...mmunity_id, created) VALUES ('1', '2018-07-24') RETURNING id + ^ +2022-11-07 13:30:37,767 - pgConnector - ERROR - duplicate key value violates unique constraint "idx_communities_info" +DETAIL: Key (name)=(vo.geoss.eu) already exists. +2022-11-07 13:31:04,302 - pgConnector - INFO - 3 +2022-11-07 13:31:04,302 - migrateData - INFO - 3 item +2022-11-07 13:31:04,305 - pgConnector - INFO - 4 +2022-11-07 13:31:04,305 - migrateData - INFO - 4 item +2022-11-07 13:31:04,307 - pgConnector - INFO - 5 +2022-11-07 13:31:04,307 - migrateData - INFO - 5 item +2022-11-07 13:31:04,309 - pgConnector - INFO - 6 +2022-11-07 13:31:04,309 - migrateData - INFO - 6 item +2022-11-07 13:31:04,312 - pgConnector - INFO - 7 +2022-11-07 13:31:04,312 - migrateData - INFO - 7 item +2022-11-07 13:31:04,314 - pgConnector - INFO - 8 +2022-11-07 13:31:04,314 - migrateData - INFO - 8 item +2022-11-07 13:31:04,316 - pgConnector - INFO - 9 +2022-11-07 13:31:04,316 - migrateData - INFO - 9 item +2022-11-07 13:31:04,318 - pgConnector - INFO - 10 +2022-11-07 13:31:04,318 - migrateData - INFO - 10 item +2022-11-07 13:31:04,320 - pgConnector - INFO - 11 +2022-11-07 13:31:04,320 - migrateData - INFO - 11 item +2022-11-07 13:31:04,323 - pgConnector - INFO - 12 +2022-11-07 13:31:04,323 - migrateData - INFO - 12 item +2022-11-07 13:31:04,325 - pgConnector - INFO - 13 +2022-11-07 13:31:04,325 - migrateData - INFO - 13 item +2022-11-07 13:31:04,326 - pgConnector - INFO - 14 +2022-11-07 13:31:04,327 - migrateData - INFO - 14 item +2022-11-07 13:31:04,328 - pgConnector - INFO - 15 +2022-11-07 13:31:04,329 - migrateData - INFO - 15 item +2022-11-07 13:31:04,331 - pgConnector - INFO - 16 +2022-11-07 13:31:04,331 - migrateData - INFO - 16 item +2022-11-07 13:31:04,333 - pgConnector - INFO - 17 +2022-11-07 13:31:04,333 - migrateData - INFO - 17 item +2022-11-07 13:31:04,335 - pgConnector - INFO - 18 +2022-11-07 13:31:04,335 - migrateData - INFO - 18 item +2022-11-07 13:31:04,336 - pgConnector - INFO - 19 +2022-11-07 13:31:04,337 - migrateData - INFO - 19 item +2022-11-07 13:31:04,339 - pgConnector - INFO - 20 +2022-11-07 13:31:04,339 - migrateData - INFO - 20 item +2022-11-07 13:31:04,340 - pgConnector - INFO - 21 +2022-11-07 13:31:04,341 - migrateData - INFO - 21 item +2022-11-07 13:31:04,343 - pgConnector - INFO - 22 +2022-11-07 13:31:04,344 - migrateData - INFO - 22 item +2022-11-07 13:31:04,345 - pgConnector - INFO - 23 +2022-11-07 13:31:04,345 - migrateData - INFO - 23 item +2022-11-07 13:31:04,347 - pgConnector - INFO - 24 +2022-11-07 13:31:04,347 - migrateData - INFO - 24 item +2022-11-07 13:31:04,348 - pgConnector - INFO - 25 +2022-11-07 13:31:04,349 - migrateData - INFO - 25 item +2022-11-07 13:31:04,350 - pgConnector - INFO - 26 +2022-11-07 13:31:04,350 - migrateData - INFO - 26 item +2022-11-07 13:31:04,352 - pgConnector - INFO - 27 +2022-11-07 13:31:04,352 - migrateData - INFO - 27 item +2022-11-07 13:31:04,355 - pgConnector - INFO - 28 +2022-11-07 13:31:04,355 - migrateData - INFO - 28 item +2022-11-07 13:31:04,357 - pgConnector - INFO - 29 +2022-11-07 13:31:04,357 - migrateData - INFO - 29 item +2022-11-07 13:31:04,359 - pgConnector - INFO - 30 +2022-11-07 13:31:04,359 - migrateData - INFO - 30 item +2022-11-07 13:31:04,360 - migrateData - INFO - 28 vos created +2022-11-07 13:42:33,130 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 +2022-11-07 13:42:33,131 - migrateData - INFO - Vo name WP5-all with id 7 +2022-11-07 13:42:33,131 - migrateData - INFO - Vo name WP5 with id 8 +2022-11-07 13:42:33,132 - migrateData - INFO - Vo name WP5 with id 8 +2022-11-07 13:42:33,132 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 +2022-11-07 13:42:33,133 - migrateData - INFO - Vo name goc.egi.eu with id 25 +2022-11-07 13:42:33,133 - migrateData - INFO - Vo name AMB with id 11 +2022-11-07 13:42:33,134 - migrateData - INFO - Vo name WP5-all with id 7 +2022-11-07 13:42:33,134 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,134 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,135 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,135 - migrateData - INFO - Vo name vo.geoss.eu with id 3 +2022-11-07 13:42:33,136 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,136 - migrateData - INFO - Vo name onboarding.egi.eu with id 29 +2022-11-07 13:42:33,137 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,139 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,140 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,141 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,141 - migrateData - INFO - Vo name vo.access.egi.eu with id 28 +2022-11-07 13:42:33,141 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,142 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,142 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,143 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 +2022-11-07 13:42:33,143 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,144 - migrateData - INFO - Vo name vo.dariah.eu with id 4 +2022-11-07 13:42:33,144 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,145 - migrateData - INFO - Vo name rcauth.eu with id 17 +2022-11-07 13:42:33,145 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,146 - migrateData - INFO - Vo name eiscat.se with id 26 +2022-11-07 13:42:33,146 - migrateData - INFO - Vo name WP5-all with id 7 +2022-11-07 13:42:33,147 - migrateData - INFO - Vo name vo.geoss.eu with id 3 +2022-11-07 13:42:33,147 - migrateData - INFO - Vo name test-sso-confluence with id 13 +2022-11-07 13:42:33,147 - migrateData - INFO - Vo name test-sso-mailman with id 12 +2022-11-07 13:42:33,148 - migrateData - INFO - Vo name test-sso-confluence with id 13 +2022-11-07 13:42:33,148 - migrateData - INFO - Vo name test-sso-mailman with id 12 +2022-11-07 13:42:33,148 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,149 - migrateData - INFO - Vo name rcauth.eu with id 17 +2022-11-07 13:42:33,149 - migrateData - INFO - Vo name vo.geoss.eu with id 3 +2022-11-07 13:42:33,149 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,150 - migrateData - INFO - Vo name cloud.grnet.gr with id 15 +2022-11-07 13:42:33,150 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 +2022-11-07 13:42:33,151 - migrateData - INFO - Vo name cloud.grnet.gr with id 15 +2022-11-07 13:42:33,151 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 16 +2022-11-07 13:42:33,152 - migrateData - INFO - Vo name AMB with id 11 +2022-11-07 13:42:33,152 - migrateData - INFO - Vo name goc.egi.eu with id 25 +2022-11-07 13:42:33,152 - migrateData - INFO - Vo name vo.parent.example.eu with id 18 +2022-11-07 13:42:33,153 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,153 - migrateData - INFO - Vo name vo.geoss.eu with id 3 +2022-11-07 13:42:33,154 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,154 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,154 - migrateData - INFO - Vo name vo.dariah.eu with id 4 +2022-11-07 13:42:33,155 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,157 - migrateData - INFO - Vo name vo.dariah.eu with id 4 +2022-11-07 13:42:33,158 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,158 - migrateData - INFO - Vo name vo.geoss.eu with id 3 +2022-11-07 13:42:33,159 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,159 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,159 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 16 +2022-11-07 13:42:33,160 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,160 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,161 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,161 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,161 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,162 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,162 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,163 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,164 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,164 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,165 - migrateData - INFO - Vo name radio-observatory with id 23 +2022-11-07 13:42:33,166 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,166 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,166 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,167 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,167 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,167 - migrateData - INFO - Vo name vo.dariah.eu with id 4 +2022-11-07 13:42:33,167 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,168 - migrateData - INFO - Vo name goc.egi.eu with id 25 +2022-11-07 13:42:33,168 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,168 - migrateData - INFO - Vo name training.egi.eu with id 6 +2022-11-07 13:42:33,169 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,170 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,170 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,171 - migrateData - INFO - Vo name cloud.grnet.gr with id 15 +2022-11-07 13:42:33,172 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 +2022-11-07 13:42:33,172 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 +2022-11-07 13:42:33,173 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 +2022-11-07 13:42:33,173 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 +2022-11-07 13:42:33,174 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,174 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 +2022-11-07 13:42:33,175 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,175 - migrateData - INFO - Vo name test-TRIPLE with id 19 +2022-11-07 13:42:33,176 - migrateData - INFO - Vo name openEO_test with id 30 +2022-11-07 13:42:33,176 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 20 +2022-11-07 13:42:33,177 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,177 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,178 - migrateData - INFO - Vo name checkin-integration with id 5 +2022-11-07 13:42:33,178 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,178 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,179 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,179 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,180 - migrateData - INFO - Vo name eosc-synergy.eu with id 22 +2022-11-07 13:42:33,181 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 +2022-11-07 13:42:33,182 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 +2022-11-07 13:42:33,182 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,182 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,183 - migrateData - INFO - Vo name vo.access.egi.eu with id 28 +2022-11-07 13:42:33,183 - migrateData - INFO - Vo name vo.access.egi.eu with id 28 +2022-11-07 13:42:33,183 - migrateData - INFO - Vo name vo.access.egi.eu with id 28 +2022-11-07 13:42:33,184 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,184 - migrateData - INFO - Vo name goc.egi.eu with id 25 +2022-11-07 13:42:33,185 - migrateData - INFO - Vo name AMB with id 11 +2022-11-07 13:42:33,185 - migrateData - INFO - Vo name goc.egi.eu with id 25 +2022-11-07 13:42:33,186 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 +2022-11-07 13:42:33,186 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 +2022-11-07 13:42:33,187 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,187 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,188 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,188 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,189 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 +2022-11-07 13:42:33,189 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 +2022-11-07 13:42:33,190 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 +2022-11-07 13:42:33,191 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 +2022-11-07 13:42:33,192 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 +2022-11-07 13:42:33,192 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 +2022-11-07 13:42:33,193 - migrateData - INFO - Vo name goc.egi.eu with id 25 +2022-11-07 13:42:33,193 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 +2022-11-07 13:42:33,194 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 +2022-11-07 13:42:33,194 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,194 - migrateData - INFO - Vo name openEO_test with id 30 +2022-11-07 13:42:33,195 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,195 - migrateData - INFO - Vo name openEO_test with id 30 +2022-11-07 13:42:33,195 - migrateData - INFO - Vo name vo.example.org with id 24 +2022-11-07 13:42:33,196 - migrateData - INFO - Vo name openEO_test with id 30 diff --git a/data_migrations/log/metricsMigrate.log.2022-11-08 b/data_migrations/log/metricsMigrate.log.2022-11-08 new file mode 100644 index 0000000..a5cb42c --- /dev/null +++ b/data_migrations/log/metricsMigrate.log.2022-11-08 @@ -0,0 +1,191 @@ +2022-11-08 16:30:44,384 - pgConnector - ERROR - FATAL: password authentication failed for user "rciam" +2022-11-08 16:36:28,497 - pgConnector - INFO - 1 +2022-11-08 16:36:28,497 - migrateData - INFO - 1 item +2022-11-08 16:36:28,500 - pgConnector - INFO - 2 +2022-11-08 16:36:28,500 - migrateData - INFO - 2 item +2022-11-08 16:36:28,502 - pgConnector - INFO - 3 +2022-11-08 16:36:28,502 - migrateData - INFO - 3 item +2022-11-08 16:36:28,505 - pgConnector - INFO - 4 +2022-11-08 16:36:28,505 - migrateData - INFO - 4 item +2022-11-08 16:36:28,507 - pgConnector - INFO - 5 +2022-11-08 16:36:28,508 - migrateData - INFO - 5 item +2022-11-08 16:36:28,509 - pgConnector - INFO - 6 +2022-11-08 16:36:28,510 - migrateData - INFO - 6 item +2022-11-08 16:36:28,511 - pgConnector - INFO - 7 +2022-11-08 16:36:28,512 - migrateData - INFO - 7 item +2022-11-08 16:36:28,514 - pgConnector - INFO - 8 +2022-11-08 16:36:28,514 - migrateData - INFO - 8 item +2022-11-08 16:36:28,515 - pgConnector - INFO - 9 +2022-11-08 16:36:28,516 - migrateData - INFO - 9 item +2022-11-08 16:36:28,518 - pgConnector - INFO - 10 +2022-11-08 16:36:28,518 - migrateData - INFO - 10 item +2022-11-08 16:36:28,521 - pgConnector - INFO - 11 +2022-11-08 16:36:28,521 - migrateData - INFO - 11 item +2022-11-08 16:36:28,522 - pgConnector - INFO - 12 +2022-11-08 16:36:28,523 - migrateData - INFO - 12 item +2022-11-08 16:36:28,524 - pgConnector - INFO - 13 +2022-11-08 16:36:28,525 - migrateData - INFO - 13 item +2022-11-08 16:36:28,528 - pgConnector - INFO - 14 +2022-11-08 16:36:28,528 - migrateData - INFO - 14 item +2022-11-08 16:36:28,530 - pgConnector - INFO - 15 +2022-11-08 16:36:28,530 - migrateData - INFO - 15 item +2022-11-08 16:36:28,532 - pgConnector - INFO - 16 +2022-11-08 16:36:28,533 - migrateData - INFO - 16 item +2022-11-08 16:36:28,534 - pgConnector - INFO - 17 +2022-11-08 16:36:28,534 - migrateData - INFO - 17 item +2022-11-08 16:36:28,536 - pgConnector - INFO - 18 +2022-11-08 16:36:28,536 - migrateData - INFO - 18 item +2022-11-08 16:36:28,538 - pgConnector - INFO - 19 +2022-11-08 16:36:28,539 - migrateData - INFO - 19 item +2022-11-08 16:36:28,542 - pgConnector - INFO - 20 +2022-11-08 16:36:28,542 - migrateData - INFO - 20 item +2022-11-08 16:36:28,544 - pgConnector - INFO - 21 +2022-11-08 16:36:28,544 - migrateData - INFO - 21 item +2022-11-08 16:36:28,546 - pgConnector - INFO - 22 +2022-11-08 16:36:28,547 - migrateData - INFO - 22 item +2022-11-08 16:36:28,549 - pgConnector - INFO - 23 +2022-11-08 16:36:28,549 - migrateData - INFO - 23 item +2022-11-08 16:36:28,551 - pgConnector - INFO - 24 +2022-11-08 16:36:28,552 - migrateData - INFO - 24 item +2022-11-08 16:36:28,554 - pgConnector - INFO - 25 +2022-11-08 16:36:28,554 - migrateData - INFO - 25 item +2022-11-08 16:36:28,557 - pgConnector - INFO - 26 +2022-11-08 16:36:28,557 - migrateData - INFO - 26 item +2022-11-08 16:36:28,559 - pgConnector - INFO - 27 +2022-11-08 16:36:28,559 - migrateData - INFO - 27 item +2022-11-08 16:36:28,562 - pgConnector - INFO - 28 +2022-11-08 16:36:28,562 - migrateData - INFO - 28 item +2022-11-08 16:36:28,563 - migrateData - INFO - 28 vos created +2022-11-08 16:36:38,736 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-08 16:36:38,736 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-08 16:36:38,737 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-08 16:36:38,737 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-08 16:36:38,738 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-08 16:36:38,739 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-08 16:36:38,739 - migrateData - INFO - Vo name AMB with id 9 +2022-11-08 16:36:38,740 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-08 16:36:38,741 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,742 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,742 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,743 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-08 16:36:38,744 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,744 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-08 16:36:38,745 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,745 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,746 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,746 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,747 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-08 16:36:38,747 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,747 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,748 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,748 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-08 16:36:38,749 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,749 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-08 16:36:38,750 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,750 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-08 16:36:38,751 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,752 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-08 16:36:38,752 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-08 16:36:38,753 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-08 16:36:38,754 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-08 16:36:38,754 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-08 16:36:38,755 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-08 16:36:38,755 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-08 16:36:38,756 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,756 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-08 16:36:38,757 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-08 16:36:38,758 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,758 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-08 16:36:38,759 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-08 16:36:38,760 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-08 16:36:38,760 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-08 16:36:38,761 - migrateData - INFO - Vo name AMB with id 9 +2022-11-08 16:36:38,761 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-08 16:36:38,762 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-08 16:36:38,763 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,763 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-08 16:36:38,764 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,764 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,765 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-08 16:36:38,766 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,766 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-08 16:36:38,767 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,767 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-08 16:36:38,768 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,768 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,769 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-08 16:36:38,769 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,770 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,770 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,771 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,772 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,772 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,773 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,774 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,774 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,775 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,775 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-08 16:36:38,776 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,776 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,777 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,777 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,778 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,778 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-08 16:36:38,779 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,779 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-08 16:36:38,780 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,780 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-08 16:36:38,780 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,781 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,782 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,782 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-08 16:36:38,783 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-08 16:36:38,783 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-08 16:36:38,784 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-08 16:36:38,784 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-08 16:36:38,786 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,787 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-08 16:36:38,788 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,788 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-08 16:36:38,789 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-08 16:36:38,789 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-08 16:36:38,790 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,791 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,791 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-08 16:36:38,792 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,792 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,793 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,793 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,794 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-08 16:36:38,794 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-08 16:36:38,795 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-08 16:36:38,795 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,796 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,796 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-08 16:36:38,798 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-08 16:36:38,799 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-08 16:36:38,800 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,801 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-08 16:36:38,802 - migrateData - INFO - Vo name AMB with id 9 +2022-11-08 16:36:38,802 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-08 16:36:38,803 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-08 16:36:38,803 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-08 16:36:38,804 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,804 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,805 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,806 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,807 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-08 16:36:38,808 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-08 16:36:38,809 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-08 16:36:38,810 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-08 16:36:38,812 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-08 16:36:38,813 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-08 16:36:38,814 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-08 16:36:38,815 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-08 16:36:38,816 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-08 16:36:38,817 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,818 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-08 16:36:38,819 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,820 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-08 16:36:38,820 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-08 16:36:38,821 - migrateData - INFO - Vo name openEO_test with id 28 diff --git a/data_migrations/log/metricsMigrate.log.2022-11-09 b/data_migrations/log/metricsMigrate.log.2022-11-09 new file mode 100644 index 0000000..88fa762 --- /dev/null +++ b/data_migrations/log/metricsMigrate.log.2022-11-09 @@ -0,0 +1,324 @@ +2022-11-09 12:09:14,465 - migrateData - INFO - No new data found +2022-11-09 12:09:14,511 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:09:14,512 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-09 12:09:14,512 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-09 12:09:14,512 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-09 12:09:14,513 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:09:14,513 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:09:14,513 - migrateData - INFO - Vo name AMB with id 9 +2022-11-09 12:09:14,514 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-09 12:09:14,514 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,514 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,514 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,514 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:09:14,515 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,515 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-09 12:09:14,516 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,516 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,517 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,517 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,518 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-09 12:09:14,518 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,519 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,519 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,519 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:09:14,520 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,520 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-09 12:09:14,520 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,521 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-09 12:09:14,521 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,522 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-09 12:09:14,523 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-09 12:09:14,523 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:09:14,524 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-09 12:09:14,524 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-09 12:09:14,525 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-09 12:09:14,525 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-09 12:09:14,526 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,526 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-09 12:09:14,527 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:09:14,527 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,528 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-09 12:09:14,528 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:09:14,529 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-09 12:09:14,529 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-09 12:09:14,529 - migrateData - INFO - Vo name AMB with id 9 +2022-11-09 12:09:14,530 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:09:14,530 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-09 12:09:14,531 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,531 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:09:14,531 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,532 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,532 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-09 12:09:14,533 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,534 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-09 12:09:14,534 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,535 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:09:14,536 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,536 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,537 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-09 12:09:14,538 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,539 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,540 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,541 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,541 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,543 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,543 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,546 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,546 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,550 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,551 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:09:14,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,553 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,553 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-09 12:09:14,553 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,553 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:09:14,553 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,554 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:09:14,554 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,557 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-09 12:09:14,558 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:09:14,558 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:09:14,559 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:09:14,559 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:09:14,560 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,560 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:09:14,560 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,561 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-09 12:09:14,561 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-09 12:09:14,561 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-09 12:09:14,562 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,562 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,562 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:09:14,562 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,563 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,563 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,563 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,563 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-09 12:09:14,564 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:09:14,564 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:09:14,564 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,564 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,565 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-09 12:09:14,565 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-09 12:09:14,565 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-09 12:09:14,566 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,566 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:09:14,566 - migrateData - INFO - Vo name AMB with id 9 +2022-11-09 12:09:14,567 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:09:14,567 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:09:14,567 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:09:14,567 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,568 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,569 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,570 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,570 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:09:14,571 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:09:14,571 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:09:14,573 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:09:14,573 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:09:14,574 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:09:14,574 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:09:14,575 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:09:14,576 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:09:14,577 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,577 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-09 12:09:14,578 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,578 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-09 12:09:14,578 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:09:14,579 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-09 12:13:36,294 - pgConnector - INFO - 1 +2022-11-09 12:13:36,294 - migrateData - INFO - 1 item +2022-11-09 12:13:36,297 - pgConnector - INFO - 2 +2022-11-09 12:13:36,297 - migrateData - INFO - 2 item +2022-11-09 12:13:36,309 - pgConnector - INFO - 3 +2022-11-09 12:13:36,310 - migrateData - INFO - 3 item +2022-11-09 12:13:36,314 - pgConnector - INFO - 4 +2022-11-09 12:13:36,314 - migrateData - INFO - 4 item +2022-11-09 12:13:36,316 - pgConnector - INFO - 5 +2022-11-09 12:13:36,317 - migrateData - INFO - 5 item +2022-11-09 12:13:36,322 - pgConnector - INFO - 6 +2022-11-09 12:13:36,323 - migrateData - INFO - 6 item +2022-11-09 12:13:36,326 - pgConnector - INFO - 7 +2022-11-09 12:13:36,326 - migrateData - INFO - 7 item +2022-11-09 12:13:36,329 - pgConnector - INFO - 8 +2022-11-09 12:13:36,329 - migrateData - INFO - 8 item +2022-11-09 12:13:36,332 - pgConnector - INFO - 9 +2022-11-09 12:13:36,335 - migrateData - INFO - 9 item +2022-11-09 12:13:36,337 - pgConnector - INFO - 10 +2022-11-09 12:13:36,338 - migrateData - INFO - 10 item +2022-11-09 12:13:36,341 - pgConnector - INFO - 11 +2022-11-09 12:13:36,343 - migrateData - INFO - 11 item +2022-11-09 12:13:36,347 - pgConnector - INFO - 12 +2022-11-09 12:13:36,348 - migrateData - INFO - 12 item +2022-11-09 12:13:36,352 - pgConnector - INFO - 13 +2022-11-09 12:13:36,352 - migrateData - INFO - 13 item +2022-11-09 12:13:36,355 - pgConnector - INFO - 14 +2022-11-09 12:13:36,356 - migrateData - INFO - 14 item +2022-11-09 12:13:36,361 - pgConnector - INFO - 15 +2022-11-09 12:13:36,362 - migrateData - INFO - 15 item +2022-11-09 12:13:36,366 - pgConnector - INFO - 16 +2022-11-09 12:13:36,367 - migrateData - INFO - 16 item +2022-11-09 12:13:36,370 - pgConnector - INFO - 17 +2022-11-09 12:13:36,372 - migrateData - INFO - 17 item +2022-11-09 12:13:36,375 - pgConnector - INFO - 18 +2022-11-09 12:13:36,385 - migrateData - INFO - 18 item +2022-11-09 12:13:36,389 - pgConnector - INFO - 19 +2022-11-09 12:13:36,390 - migrateData - INFO - 19 item +2022-11-09 12:13:36,392 - pgConnector - INFO - 20 +2022-11-09 12:13:36,393 - migrateData - INFO - 20 item +2022-11-09 12:13:36,398 - pgConnector - INFO - 21 +2022-11-09 12:13:36,399 - migrateData - INFO - 21 item +2022-11-09 12:13:36,402 - pgConnector - INFO - 22 +2022-11-09 12:13:36,404 - migrateData - INFO - 22 item +2022-11-09 12:13:36,407 - pgConnector - INFO - 23 +2022-11-09 12:13:36,408 - migrateData - INFO - 23 item +2022-11-09 12:13:36,412 - pgConnector - INFO - 24 +2022-11-09 12:13:36,414 - migrateData - INFO - 24 item +2022-11-09 12:13:36,417 - pgConnector - INFO - 25 +2022-11-09 12:13:36,418 - migrateData - INFO - 25 item +2022-11-09 12:13:36,420 - pgConnector - INFO - 26 +2022-11-09 12:13:36,422 - migrateData - INFO - 26 item +2022-11-09 12:13:36,424 - pgConnector - INFO - 27 +2022-11-09 12:13:36,425 - migrateData - INFO - 27 item +2022-11-09 12:13:36,429 - pgConnector - INFO - 28 +2022-11-09 12:13:36,431 - migrateData - INFO - 28 item +2022-11-09 12:13:36,433 - migrateData - INFO - 28 vos created +2022-11-09 12:13:36,442 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:13:36,444 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-09 12:13:36,445 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-09 12:13:36,450 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-09 12:13:36,452 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:13:36,458 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:13:36,462 - migrateData - INFO - Vo name AMB with id 9 +2022-11-09 12:13:36,463 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-09 12:13:36,463 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,464 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,464 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,464 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:13:36,465 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,466 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-09 12:13:36,466 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,466 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,467 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,467 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,467 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-09 12:13:36,468 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,469 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,469 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,471 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:13:36,471 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,473 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-09 12:13:36,474 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,475 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-09 12:13:36,476 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,477 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-09 12:13:36,479 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-09 12:13:36,480 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:13:36,482 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-09 12:13:36,483 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-09 12:13:36,485 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-09 12:13:36,487 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-09 12:13:36,488 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,490 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-09 12:13:36,493 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:13:36,493 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,494 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-09 12:13:36,495 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:13:36,496 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-09 12:13:36,497 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-09 12:13:36,498 - migrateData - INFO - Vo name AMB with id 9 +2022-11-09 12:13:36,499 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:13:36,500 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-09 12:13:36,501 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,502 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:13:36,503 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,503 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,503 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-09 12:13:36,504 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,504 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-09 12:13:36,504 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,504 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-09 12:13:36,504 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,505 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,505 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-09 12:13:36,505 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,505 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,506 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,506 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,507 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,507 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,507 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,508 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,508 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,508 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,509 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-09 12:13:36,509 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,509 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,509 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,510 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,511 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,513 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-09 12:13:36,514 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,514 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:13:36,515 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,516 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-09 12:13:36,516 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,519 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,520 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,521 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-09 12:13:36,522 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:13:36,523 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:13:36,524 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:13:36,524 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:13:36,525 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,526 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:13:36,526 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,527 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-09 12:13:36,528 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-09 12:13:36,528 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-09 12:13:36,529 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,529 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,529 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-09 12:13:36,530 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,530 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,531 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,531 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,531 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-09 12:13:36,532 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:13:36,532 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-09 12:13:36,533 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,533 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,533 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-09 12:13:36,534 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-09 12:13:36,534 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-09 12:13:36,535 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,535 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:13:36,536 - migrateData - INFO - Vo name AMB with id 9 +2022-11-09 12:13:36,537 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:13:36,537 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:13:36,537 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:13:36,538 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,538 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,539 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,539 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,540 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:13:36,540 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:13:36,541 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:13:36,542 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:13:36,543 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-09 12:13:36,544 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:13:36,544 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-09 12:13:36,545 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:13:36,546 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-09 12:13:36,546 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,547 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-09 12:13:36,547 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,547 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-09 12:13:36,548 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-09 12:13:36,549 - migrateData - INFO - Vo name openEO_test with id 28 diff --git a/data_migrations/log/metricsMigrate.log.2022-11-28 b/data_migrations/log/metricsMigrate.log.2022-11-28 new file mode 100644 index 0000000..4a9172c --- /dev/null +++ b/data_migrations/log/metricsMigrate.log.2022-11-28 @@ -0,0 +1,1497 @@ +2022-11-28 10:01:36,834 - pgConnector - ERROR - syntax error at or near "CREATE" +LINE 118: CREATE UNIQUE INDEX IF NOT EXISTS idx_users ON users(hashedu... + ^ +2022-11-28 10:03:23,348 - pgConnector - ERROR - syntax error at or near ")" +LINE 137: ); + ^ +2022-11-28 10:48:56,232 - migrateData - INFO - No new data found +2022-11-28 10:48:56,266 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:48:56,267 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:48:56,267 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 10:48:56,267 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 10:48:56,268 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:48:56,269 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:48:56,270 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:48:56,270 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:48:56,270 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,271 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,272 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,273 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:48:56,275 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,276 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 10:48:56,277 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,278 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,279 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,280 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,281 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:48:56,283 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,284 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,285 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,287 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:48:56,287 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,289 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:48:56,290 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,291 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 10:48:56,291 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,292 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 10:48:56,295 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:48:56,296 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:48:56,297 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 10:48:56,297 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 10:48:56,298 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 10:48:56,299 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 10:48:56,299 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,301 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 10:48:56,302 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:48:56,303 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,304 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:48:56,305 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:48:56,307 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:48:56,307 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 10:48:56,308 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:48:56,309 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:48:56,310 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 10:48:56,311 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,313 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:48:56,317 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,318 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,318 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:48:56,319 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,320 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:48:56,322 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,328 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:48:56,330 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,334 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,342 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 10:48:56,346 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,348 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,355 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,358 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,359 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,364 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,366 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,371 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,372 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,373 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,373 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:48:56,374 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,375 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,376 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,377 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,377 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,378 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:48:56,378 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,379 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:48:56,379 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,380 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:48:56,380 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,381 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,382 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,382 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:48:56,387 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:48:56,388 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:48:56,392 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:48:56,392 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:48:56,393 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,394 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:48:56,395 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,395 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 10:48:56,395 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:48:56,396 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 10:48:56,396 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,396 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,396 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:48:56,397 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,397 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,397 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,398 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,398 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 10:48:56,398 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:48:56,398 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:48:56,399 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,399 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,399 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:48:56,407 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:48:56,409 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:48:56,414 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,415 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:48:56,416 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:48:56,417 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:48:56,417 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:48:56,417 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:48:56,418 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,418 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,418 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,419 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,421 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:48:56,422 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:48:56,422 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:48:56,423 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:48:56,423 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:48:56,424 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:48:56,424 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:48:56,424 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:48:56,425 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:48:56,425 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,425 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:48:56,426 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,426 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:48:56,426 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:48:56,427 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:13,885 - migrateData - INFO - No new data found +2022-11-28 10:51:13,890 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:13,890 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:13,890 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 10:51:13,891 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 10:51:13,893 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:13,894 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:13,894 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:13,895 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:13,895 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,895 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,896 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,896 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:13,897 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,897 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 10:51:13,897 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,898 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,898 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,898 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,899 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:13,899 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,899 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,900 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,900 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:13,900 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,900 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:13,901 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,901 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 10:51:13,901 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,904 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 10:51:13,905 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:13,906 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:13,907 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 10:51:13,907 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 10:51:13,907 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 10:51:13,907 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 10:51:13,908 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,908 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 10:51:13,908 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:13,909 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,909 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:13,909 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:13,909 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:13,909 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 10:51:13,910 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:13,910 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:13,910 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 10:51:13,910 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,911 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:13,911 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,911 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,911 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:13,912 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,913 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:13,913 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,914 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:13,914 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,915 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,916 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 10:51:13,917 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,917 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,918 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,918 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,919 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,919 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,919 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,920 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,920 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,921 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,921 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:13,921 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,922 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,922 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,923 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,924 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,925 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:13,926 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,927 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:13,928 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,928 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:13,928 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,931 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,932 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,932 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:13,933 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:13,933 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:13,933 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:13,934 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:13,934 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,935 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:13,935 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,935 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 10:51:13,936 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:13,936 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 10:51:13,936 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,937 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,937 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:13,937 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,938 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,938 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,938 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,939 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 10:51:13,940 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:13,940 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:13,940 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,940 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,941 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:13,941 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:13,942 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:13,943 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,943 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:13,943 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:13,944 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:13,944 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:13,945 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:13,945 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,945 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,946 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,946 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,947 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:13,951 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:13,952 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:13,953 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:13,953 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:13,955 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:13,955 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:13,955 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:13,956 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:13,956 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,956 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:13,957 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,957 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:13,957 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:13,957 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:33,122 - migrateData - INFO - No new data found +2022-11-28 10:51:33,128 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:33,128 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:33,129 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 10:51:33,129 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 10:51:33,129 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:33,130 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:33,131 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:33,131 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:33,132 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,132 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,133 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,133 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:33,134 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,134 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 10:51:33,135 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,136 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,136 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,136 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,136 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:33,137 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,137 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,137 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,137 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:33,138 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,138 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:33,139 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,140 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 10:51:33,141 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,141 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 10:51:33,141 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:33,142 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:33,142 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 10:51:33,142 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 10:51:33,143 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 10:51:33,143 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 10:51:33,143 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,143 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 10:51:33,144 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:33,144 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,144 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:33,147 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:33,147 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:33,148 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 10:51:33,148 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:33,149 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:33,149 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 10:51:33,150 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,151 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:33,151 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,152 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,152 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:33,152 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,152 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:33,156 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,157 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:33,157 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,157 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,158 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 10:51:33,158 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,158 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,159 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,160 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,160 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,161 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,161 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,162 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,163 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,163 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,164 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:33,164 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,164 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,165 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,165 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,166 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,166 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:33,166 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,166 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:33,167 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,167 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:33,167 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,168 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,168 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,168 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:33,169 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:33,169 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:33,170 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:33,170 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:33,170 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,171 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:33,171 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,172 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 10:51:33,172 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:33,173 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 10:51:33,173 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,174 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,174 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:33,175 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,175 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,175 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,176 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,176 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 10:51:33,176 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:33,177 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:33,177 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,177 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,177 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:33,178 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:33,178 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:33,178 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,178 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:33,179 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:33,179 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:33,179 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:33,180 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:33,180 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,181 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,181 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,181 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,182 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:33,185 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:33,186 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:33,187 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:33,187 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:33,187 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:33,188 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:33,189 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:33,191 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:33,199 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,199 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:33,200 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,200 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:33,200 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:33,201 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:57,493 - migrateData - INFO - No new data found +2022-11-28 10:51:57,499 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:57,500 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:57,502 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 10:51:57,505 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 10:51:57,507 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:57,509 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:57,511 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:57,512 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:57,514 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,515 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,516 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,516 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:57,517 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,518 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 10:51:57,519 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,520 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,520 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,525 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,526 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:57,527 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,530 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,531 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,532 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:57,532 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,533 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:57,535 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,536 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 10:51:57,536 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,537 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 10:51:57,538 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 10:51:57,538 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:57,542 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 10:51:57,543 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 10:51:57,544 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 10:51:57,544 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 10:51:57,545 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,546 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 10:51:57,546 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:57,547 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,547 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:57,547 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:57,547 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:57,549 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 10:51:57,553 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:57,554 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:57,555 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 10:51:57,557 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,558 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:57,558 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,559 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,560 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:57,560 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,561 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:57,562 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,562 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 10:51:57,562 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,563 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,563 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 10:51:57,563 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,564 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,564 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,565 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,565 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,565 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,565 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,566 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,566 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,567 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,567 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 10:51:57,567 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,568 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,568 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,568 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,569 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,569 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 10:51:57,569 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,570 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:57,570 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,570 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 10:51:57,571 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,571 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,572 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,572 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 10:51:57,572 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:57,573 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:57,573 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:57,573 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:57,574 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,574 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:57,575 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,576 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 10:51:57,577 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:57,578 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 10:51:57,579 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,580 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,580 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 10:51:57,581 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,582 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,583 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,584 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,585 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 10:51:57,586 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:57,587 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 10:51:57,588 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,589 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,590 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:57,591 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:57,591 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 10:51:57,592 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,592 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:57,593 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 10:51:57,593 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:57,595 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:57,596 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:57,596 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,597 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,598 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,599 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,600 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:57,603 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:57,603 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:57,605 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:57,605 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 10:51:57,606 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:57,607 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 10:51:57,607 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:57,609 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 10:51:57,609 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,609 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:57,610 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,610 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:57,611 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 10:51:57,612 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 10:51:57,681 - migrateData - INFO - 24 Idps created +2022-11-28 11:02:00,209 - migrateData - INFO - No new data found +2022-11-28 11:02:00,214 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:00,215 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:02:00,215 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 11:02:00,215 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 11:02:00,215 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:00,216 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:00,216 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:02:00,216 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:02:00,216 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,217 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,217 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,217 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:00,218 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,218 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 11:02:00,218 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,218 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,219 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,219 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,219 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:02:00,220 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,220 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,220 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,220 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:00,221 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,221 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:02:00,221 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,221 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 11:02:00,222 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,222 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 11:02:00,222 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:02:00,223 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:00,223 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 11:02:00,223 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 11:02:00,223 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 11:02:00,224 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 11:02:00,224 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,224 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 11:02:00,225 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:00,225 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,225 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:02:00,226 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:00,226 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:02:00,226 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 11:02:00,226 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:02:00,227 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:00,227 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 11:02:00,227 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,228 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:00,228 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,228 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,229 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:02:00,229 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,229 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:02:00,229 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,230 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:00,231 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,231 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,232 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 11:02:00,233 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,233 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,234 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,235 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,236 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,236 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,237 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,238 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,239 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,239 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,240 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:00,241 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,241 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,242 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,242 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,243 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,243 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:02:00,244 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,245 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:00,245 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,246 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:00,247 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,248 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,249 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,250 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:02:00,251 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:00,252 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:00,253 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:00,255 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:00,256 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,257 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:00,258 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,260 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 11:02:00,261 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:02:00,262 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 11:02:00,263 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,264 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,265 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:00,266 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,267 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,268 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,269 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,270 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 11:02:00,271 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:00,272 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:00,274 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,275 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,276 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:02:00,277 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:02:00,278 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:02:00,279 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,280 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:00,282 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:02:00,284 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:00,284 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:00,285 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:00,286 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,288 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,289 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,291 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,292 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:00,295 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:00,296 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:00,298 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:00,299 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:00,301 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:00,301 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:00,302 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:00,303 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:00,304 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,305 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:02:00,306 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,307 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:02:00,307 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:00,308 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:02:00,350 - migrateData - INFO - 24 Idps created +2022-11-28 11:02:29,482 - migrateData - INFO - No new data found +2022-11-28 11:02:29,487 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:29,489 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:02:29,490 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 11:02:29,491 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 11:02:29,491 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:29,492 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:29,493 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:02:29,494 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:02:29,495 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,496 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,509 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,509 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:29,510 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,511 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 11:02:29,512 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,512 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,513 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,514 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,515 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:02:29,515 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,516 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,518 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,519 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:29,519 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,519 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:02:29,520 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,520 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 11:02:29,520 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,520 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 11:02:29,521 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:02:29,521 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:29,521 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 11:02:29,521 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 11:02:29,522 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 11:02:29,522 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 11:02:29,522 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,525 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 11:02:29,526 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:29,527 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,528 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:02:29,529 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:29,538 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:02:29,538 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 11:02:29,538 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:02:29,539 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:29,539 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 11:02:29,540 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,540 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:29,541 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,541 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,542 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:02:29,542 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,543 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:02:29,543 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,544 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:02:29,544 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,545 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,545 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 11:02:29,546 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,546 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,547 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,548 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,549 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,550 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,550 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,552 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,553 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,554 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,554 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:02:29,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,556 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,557 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,557 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:02:29,558 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,558 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:29,558 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,559 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:02:29,559 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,559 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,560 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,560 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:02:29,560 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:29,561 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:29,561 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:29,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:29,565 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,566 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:29,567 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,570 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 11:02:29,570 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:02:29,570 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 11:02:29,571 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,571 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,572 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:02:29,572 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,572 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,573 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,573 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,573 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 11:02:29,574 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:29,574 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:02:29,577 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,578 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,579 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:02:29,579 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:02:29,582 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:02:29,583 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,583 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:29,584 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:02:29,584 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:29,584 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:29,585 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:29,585 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,585 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,586 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,586 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,587 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:29,587 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:29,588 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:29,588 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:29,589 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:02:29,590 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:29,591 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:02:29,591 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:29,592 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:02:29,593 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,594 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:02:29,594 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,595 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:02:29,596 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:02:29,596 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:02:29,628 - migrateData - INFO - 24 Idps created +2022-11-28 11:02:29,669 - pgConnectorProxy - ERROR - syntax error at or near "s" +LINE 1: ...'980f1863-3a72-42c5-8cf8-565ed83aac68', 'Cyfronet's EGI fedc... + ^ +2022-11-28 11:43:19,386 - migrateData - INFO - No new data found +2022-11-28 11:43:19,390 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:43:19,391 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:43:19,392 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 11:43:19,392 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 11:43:19,392 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:43:19,393 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:43:19,394 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:43:19,394 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:43:19,395 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,396 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,396 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,396 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:43:19,397 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,397 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 11:43:19,398 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,398 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,399 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,399 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,400 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:43:19,400 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,400 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,406 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,407 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:43:19,407 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,408 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:43:19,408 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,408 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 11:43:19,408 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,409 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 11:43:19,410 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 11:43:19,411 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:43:19,412 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 11:43:19,412 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 11:43:19,413 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 11:43:19,413 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 11:43:19,413 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,414 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 11:43:19,415 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:43:19,415 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,415 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:43:19,416 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:43:19,416 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:43:19,416 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 11:43:19,417 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:43:19,417 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:43:19,418 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 11:43:19,419 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,419 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:43:19,419 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,420 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,420 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:43:19,420 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,421 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:43:19,421 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,421 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 11:43:19,422 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,422 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,423 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 11:43:19,423 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,423 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,424 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,424 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,425 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,425 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,426 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,427 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,427 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,428 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,428 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 11:43:19,428 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 11:43:19,430 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,430 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:43:19,430 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,430 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 11:43:19,430 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,431 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,432 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,433 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 11:43:19,434 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:43:19,435 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:43:19,436 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:43:19,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:43:19,437 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,437 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:43:19,438 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,439 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 11:43:19,440 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:43:19,440 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 11:43:19,441 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,442 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,442 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 11:43:19,442 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,443 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,443 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,444 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,444 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 11:43:19,445 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:43:19,445 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 11:43:19,445 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,446 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,446 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:43:19,446 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:43:19,447 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 11:43:19,449 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,450 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:43:19,450 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 11:43:19,451 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:43:19,452 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:43:19,452 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:43:19,453 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,453 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,454 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,454 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,456 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:43:19,456 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:43:19,457 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:43:19,458 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:43:19,460 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 11:43:19,460 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:43:19,461 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 11:43:19,461 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:43:19,461 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 11:43:19,462 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,462 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:43:19,462 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,463 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:43:19,463 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 11:43:19,463 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 11:43:19,501 - migrateData - INFO - 24 Idps created +2022-11-28 11:43:19,756 - migrateData - INFO - 409 Idps created +2022-11-28 12:46:25,575 - migrateData - INFO - No new data found +2022-11-28 12:46:25,580 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 12:46:25,582 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 12:46:25,582 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 12:46:25,584 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 12:46:25,586 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 12:46:25,587 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 12:46:25,590 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 12:46:25,591 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 12:46:25,591 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,591 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,592 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,592 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 12:46:25,593 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,593 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 12:46:25,593 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,594 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,594 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,594 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,595 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 12:46:25,595 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,596 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,596 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,596 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 12:46:25,596 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,597 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 12:46:25,597 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,597 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 12:46:25,598 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,598 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 12:46:25,598 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 12:46:25,599 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 12:46:25,599 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 12:46:25,599 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 12:46:25,600 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 12:46:25,600 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 12:46:25,600 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,601 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 12:46:25,601 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 12:46:25,601 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,602 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 12:46:25,602 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 12:46:25,603 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 12:46:25,603 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 12:46:25,603 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 12:46:25,603 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 12:46:25,604 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 12:46:25,608 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,609 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 12:46:25,610 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,610 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,611 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 12:46:25,611 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,612 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 12:46:25,612 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,613 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 12:46:25,613 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,614 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,615 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 12:46:25,615 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,615 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,616 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,617 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,617 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,618 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,618 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,619 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,619 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,620 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,621 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 12:46:25,621 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,621 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,622 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,623 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,623 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,623 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 12:46:25,624 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,624 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 12:46:25,624 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,624 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 12:46:25,625 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,625 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,626 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,626 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 12:46:25,627 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 12:46:25,627 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 12:46:25,627 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 12:46:25,628 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 12:46:25,628 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,628 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 12:46:25,629 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,629 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 12:46:25,629 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 12:46:25,630 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 12:46:25,630 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,630 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,631 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 12:46:25,631 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,631 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,632 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,632 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,632 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 12:46:25,633 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 12:46:25,633 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 12:46:25,634 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,634 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,634 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 12:46:25,635 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 12:46:25,635 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 12:46:25,635 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,636 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 12:46:25,636 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 12:46:25,636 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 12:46:25,637 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 12:46:25,637 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 12:46:25,638 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,638 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,638 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,639 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,639 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 12:46:25,639 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 12:46:25,640 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 12:46:25,640 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 12:46:25,641 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 12:46:25,641 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 12:46:25,641 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 12:46:25,642 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 12:46:25,642 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 12:46:25,643 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,643 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 12:46:25,643 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,643 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 12:46:25,643 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 12:46:25,644 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 12:46:25,679 - migrateData - INFO - 24 Idps created +2022-11-28 12:46:25,752 - migrateData - INFO - 409 Sps created +2022-11-28 13:39:55,514 - migrateData - INFO - No new data found +2022-11-28 13:39:55,519 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:39:55,522 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:39:55,523 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 13:39:55,523 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 13:39:55,523 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:39:55,524 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:39:55,524 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:39:55,525 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:39:55,525 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,525 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,525 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,526 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:39:55,526 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,527 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 13:39:55,527 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,527 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,528 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,528 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,528 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:39:55,529 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,529 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,529 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,529 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:39:55,530 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,530 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:39:55,530 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,531 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 13:39:55,531 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,531 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 13:39:55,532 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:39:55,532 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:39:55,532 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 13:39:55,533 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 13:39:55,533 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 13:39:55,533 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 13:39:55,534 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,534 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 13:39:55,534 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:39:55,534 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,535 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:39:55,535 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:39:55,535 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:39:55,536 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 13:39:55,536 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:39:55,536 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:39:55,537 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 13:39:55,537 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,537 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:39:55,538 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,538 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,538 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:39:55,538 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,539 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:39:55,539 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,539 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:39:55,540 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,540 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,540 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 13:39:55,540 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,541 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,541 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,542 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,542 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,542 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,542 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,543 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,543 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,544 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,544 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:39:55,544 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,545 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,545 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,545 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,545 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,546 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:39:55,546 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,546 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:39:55,546 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,547 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:39:55,547 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,548 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,548 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,548 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:39:55,549 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:39:55,549 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:39:55,549 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:39:55,549 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:39:55,550 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,550 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:39:55,550 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,551 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 13:39:55,551 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:39:55,551 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 13:39:55,551 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,552 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:39:55,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,553 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,553 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,553 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 13:39:55,553 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:39:55,554 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:39:55,554 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,554 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,555 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:39:55,555 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:39:55,555 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:39:55,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,556 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:39:55,556 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:39:55,556 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:39:55,557 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:39:55,557 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:39:55,557 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,557 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,558 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,558 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,558 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:39:55,559 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:39:55,559 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:39:55,560 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:39:55,560 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:39:55,561 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:39:55,561 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:39:55,561 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:39:55,564 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:39:55,564 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,564 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:39:55,565 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,565 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:39:55,565 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:39:55,565 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:39:55,633 - migrateData - INFO - 24 Idps created +2022-11-28 13:39:55,731 - migrateData - INFO - 409 Sps created +2022-11-28 13:40:23,191 - migrateData - INFO - No new data found +2022-11-28 13:40:23,196 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:40:23,196 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:40:23,196 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 13:40:23,197 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 13:40:23,197 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:40:23,198 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:40:23,198 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:40:23,198 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:40:23,199 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,199 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,199 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,200 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:40:23,200 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,200 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 13:40:23,201 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,201 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,201 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,201 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,202 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:40:23,202 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,202 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,203 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,203 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:40:23,203 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,203 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:40:23,204 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,204 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 13:40:23,204 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,205 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 13:40:23,205 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:40:23,205 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:40:23,205 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 13:40:23,206 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 13:40:23,206 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 13:40:23,206 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 13:40:23,207 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,207 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 13:40:23,207 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:40:23,207 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,208 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:40:23,208 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:40:23,209 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:40:23,210 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 13:40:23,210 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:40:23,211 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:40:23,211 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 13:40:23,212 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,212 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:40:23,213 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,214 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,215 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:40:23,216 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,218 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:40:23,219 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,219 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:40:23,220 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,221 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,222 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 13:40:23,223 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,224 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,226 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,228 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,229 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,229 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,230 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,231 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,232 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,233 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,233 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:40:23,234 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,236 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,242 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,243 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,244 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,245 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:40:23,245 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,246 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:40:23,247 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,247 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:40:23,248 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,249 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,250 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,251 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:40:23,251 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:40:23,254 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:40:23,254 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:40:23,255 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:40:23,255 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,255 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:40:23,256 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,257 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 13:40:23,257 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:40:23,258 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 13:40:23,258 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,259 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,259 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:40:23,260 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,260 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,261 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,261 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,262 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 13:40:23,262 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:40:23,263 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:40:23,263 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,264 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,265 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:40:23,266 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:40:23,266 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:40:23,267 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,267 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:40:23,268 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:40:23,268 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:40:23,269 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:40:23,270 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:40:23,271 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,272 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,273 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,274 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,275 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:40:23,276 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:40:23,277 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:40:23,279 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:40:23,281 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:40:23,283 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:40:23,284 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:40:23,284 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:40:23,285 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:40:23,285 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,285 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:40:23,286 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,286 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:40:23,286 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:40:23,287 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:40:23,320 - migrateData - INFO - 24 Idps created +2022-11-28 13:40:23,407 - migrateData - INFO - 409 Sps created +2022-11-28 13:43:20,767 - migrateData - INFO - No new data found +2022-11-28 13:43:20,772 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:43:20,774 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:43:20,774 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 13:43:20,776 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-28 13:43:20,777 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:43:20,777 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:43:20,777 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:43:20,778 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:43:20,778 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,778 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,778 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,778 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:43:20,779 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,779 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-28 13:43:20,780 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,780 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,780 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,780 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,780 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:43:20,781 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,781 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,781 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,781 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:43:20,782 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,782 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:43:20,782 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,782 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 13:43:20,783 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,783 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-28 13:43:20,783 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-28 13:43:20,784 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:43:20,784 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 13:43:20,784 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 13:43:20,784 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-28 13:43:20,784 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-28 13:43:20,785 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,785 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-28 13:43:20,785 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:43:20,786 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,786 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:43:20,786 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:43:20,786 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:43:20,788 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 13:43:20,791 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:43:20,791 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:43:20,791 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-28 13:43:20,792 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,792 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:43:20,792 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,792 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,793 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:43:20,793 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,793 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:43:20,793 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,794 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-28 13:43:20,794 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,794 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,794 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-28 13:43:20,795 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,795 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,796 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,796 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,796 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,797 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,797 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,797 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,798 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,798 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,798 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-28 13:43:20,799 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,799 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,799 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,800 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,800 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,800 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-28 13:43:20,801 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,801 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:43:20,801 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,802 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-28 13:43:20,802 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,802 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,803 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,803 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-28 13:43:20,803 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:43:20,804 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:43:20,804 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:43:20,804 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:43:20,805 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,805 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:43:20,805 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,806 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-28 13:43:20,806 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:43:20,806 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-28 13:43:20,806 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,807 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,807 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-28 13:43:20,807 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,808 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,808 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,808 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,808 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-28 13:43:20,809 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:43:20,809 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-28 13:43:20,809 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,809 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,810 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:43:20,810 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:43:20,810 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-28 13:43:20,810 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,810 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:43:20,811 - migrateData - INFO - Vo name AMB with id 9 +2022-11-28 13:43:20,811 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:43:20,811 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:43:20,812 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:43:20,812 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,812 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,812 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,813 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,813 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:43:20,813 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:43:20,814 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:43:20,815 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:43:20,815 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-28 13:43:20,816 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:43:20,816 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-28 13:43:20,816 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:43:20,817 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-28 13:43:20,817 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,817 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:43:20,818 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,818 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:43:20,818 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-28 13:43:20,818 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-28 13:43:20,849 - migrateData - INFO - 24 Idps created +2022-11-28 13:43:20,929 - migrateData - INFO - 409 Sps created +2022-11-28 13:43:20,949 - migrateData - INFO - 3612 Country Stats created diff --git a/data_migrations/log/metricsMigrate.log.2022-11-29 b/data_migrations/log/metricsMigrate.log.2022-11-29 new file mode 100644 index 0000000..8aee328 --- /dev/null +++ b/data_migrations/log/metricsMigrate.log.2022-11-29 @@ -0,0 +1,29840 @@ +2022-11-29 09:45:14,264 - migrateData - INFO - No new data found +2022-11-29 09:45:14,269 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:45:14,270 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:45:14,274 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:45:14,276 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:45:14,276 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:45:14,276 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:45:14,277 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:45:14,277 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:45:14,277 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,278 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,278 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,279 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:45:14,281 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,282 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 09:45:14,283 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,285 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,286 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,287 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,288 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:45:14,288 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,289 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,299 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,299 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:45:14,301 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,302 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:45:14,302 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,303 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:45:14,304 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,305 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 09:45:14,305 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:45:14,306 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:45:14,308 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:45:14,309 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:45:14,309 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:45:14,310 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:45:14,311 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,311 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:45:14,312 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:45:14,312 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,313 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:45:14,313 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:45:14,314 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:45:14,314 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:45:14,315 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:45:14,316 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:45:14,317 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 09:45:14,318 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,318 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:45:14,319 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,320 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,320 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:45:14,320 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,322 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:45:14,322 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,322 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:45:14,323 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,323 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,323 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:45:14,324 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,324 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,324 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,325 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,325 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,325 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,326 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,326 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,327 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,327 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,327 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:45:14,328 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,328 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,328 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,328 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,329 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,329 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:45:14,329 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,331 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:45:14,332 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,332 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:45:14,333 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,333 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,333 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,334 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:45:14,334 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:45:14,334 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:45:14,334 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:45:14,335 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:45:14,335 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,335 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:45:14,335 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,336 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 09:45:14,336 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:45:14,336 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 09:45:14,337 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,337 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,337 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:45:14,337 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,338 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,338 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,338 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,338 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 09:45:14,338 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:45:14,339 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:45:14,339 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,339 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,339 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:45:14,340 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:45:14,340 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:45:14,340 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,340 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:45:14,341 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:45:14,341 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:45:14,341 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:45:14,342 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:45:14,342 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,342 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,343 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,344 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,344 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:45:14,345 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:45:14,345 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:45:14,346 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:45:14,346 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:45:14,347 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:45:14,347 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:45:14,347 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:45:14,348 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:45:14,348 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,349 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:45:14,349 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,349 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:45:14,350 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:45:14,350 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:45:14,384 - migrateData - INFO - 24 Idps created +2022-11-29 09:45:14,523 - migrateData - INFO - 409 Sps created +2022-11-29 09:45:14,536 - migrateData - INFO - 3612 Country Stats created +2022-11-29 09:55:10,874 - migrateData - INFO - No new data found +2022-11-29 09:55:10,879 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:55:10,880 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:55:10,881 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:55:10,882 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:55:10,885 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:55:10,886 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:55:10,888 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:55:10,889 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:55:10,889 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,890 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,890 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,892 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:55:10,894 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,894 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 09:55:10,894 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,894 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,895 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,895 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,895 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:55:10,896 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,896 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,896 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,896 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:55:10,896 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,897 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:55:10,897 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,897 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:55:10,897 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,897 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 09:55:10,898 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:55:10,898 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:55:10,898 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:55:10,898 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:55:10,898 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:55:10,899 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:55:10,899 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,899 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:55:10,899 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:55:10,899 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,900 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:55:10,900 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:55:10,901 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:55:10,902 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:55:10,903 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:55:10,903 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:55:10,904 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 09:55:10,904 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,904 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:55:10,905 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,905 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,905 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:55:10,906 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,906 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:55:10,906 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,906 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:55:10,907 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,907 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,907 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:55:10,907 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,908 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,908 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,909 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,909 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,910 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,910 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,911 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,911 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,912 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,913 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:55:10,913 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,914 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,915 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,915 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,915 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,916 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:55:10,916 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,916 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:55:10,916 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,917 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:55:10,917 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,917 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,918 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,918 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:55:10,918 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:55:10,918 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:55:10,919 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:55:10,919 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:55:10,919 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,919 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:55:10,919 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,920 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 09:55:10,920 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:55:10,920 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 09:55:10,920 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,921 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,921 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:55:10,921 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,921 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,921 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,922 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,922 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 09:55:10,922 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:55:10,922 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:55:10,924 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,924 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,925 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:55:10,925 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:55:10,926 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:55:10,932 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,934 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:55:10,936 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:55:10,937 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:55:10,938 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:55:10,939 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:55:10,939 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,939 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,940 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,941 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,942 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:55:10,943 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:55:10,943 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:55:10,945 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:55:10,946 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:55:10,948 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:55:10,949 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:55:10,951 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:55:10,952 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:55:10,953 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,954 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:55:10,955 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,956 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:55:10,956 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:55:10,957 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:55:10,983 - migrateData - INFO - 24 Idps created +2022-11-29 09:55:11,096 - migrateData - INFO - 409 Sps created +2022-11-29 09:55:11,107 - migrateData - INFO - 3612 Country Stats created +2022-11-29 09:57:41,636 - migrateData - INFO - No new data found +2022-11-29 09:57:41,646 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:41,646 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:57:41,647 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:57:41,648 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:57:41,648 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:41,648 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:41,649 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:57:41,649 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:57:41,649 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,650 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,650 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,651 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:41,652 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,652 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 09:57:41,652 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,653 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,653 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,653 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,654 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:57:41,654 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,655 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,657 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,657 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:41,658 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,658 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:57:41,659 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,659 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:57:41,659 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,660 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 09:57:41,660 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:57:41,660 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:41,661 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:57:41,661 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:57:41,661 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:57:41,662 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:57:41,662 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,662 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:57:41,663 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:41,663 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,663 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:57:41,664 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:41,664 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:57:41,666 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:57:41,668 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:57:41,668 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:41,669 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 09:57:41,670 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,671 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:41,672 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,672 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,673 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:57:41,674 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,674 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:57:41,675 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,676 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:41,676 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,677 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,677 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:57:41,677 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,677 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,678 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,678 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,679 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,679 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,679 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,680 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,680 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,681 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,682 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:41,683 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,683 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,683 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,683 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,684 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,684 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:57:41,684 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,685 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:41,685 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,685 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:41,685 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,686 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,686 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,687 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:57:41,687 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:41,688 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:41,688 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:41,688 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:41,688 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,688 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:41,689 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,690 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 09:57:41,690 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:57:41,690 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 09:57:41,691 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,692 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,692 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:41,692 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,693 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,693 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,693 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,694 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 09:57:41,694 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:41,694 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:41,695 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,695 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,696 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:57:41,696 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:57:41,697 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:57:41,697 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,698 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:41,699 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:57:41,699 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:41,699 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:41,700 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:41,700 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,700 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,701 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,701 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,702 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:41,703 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:41,704 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:41,705 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:41,705 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:41,706 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:41,707 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:41,707 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:41,709 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:41,709 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,709 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:57:41,710 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,711 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:57:41,712 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:41,712 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:57:41,738 - migrateData - INFO - 24 Idps created +2022-11-29 09:57:41,826 - migrateData - INFO - 409 Sps created +2022-11-29 09:57:41,840 - migrateData - INFO - 3612 Country Stats created +2022-11-29 09:57:59,693 - migrateData - INFO - No new data found +2022-11-29 09:57:59,707 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:59,709 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:57:59,711 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:57:59,711 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:57:59,712 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:59,714 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:59,715 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:57:59,715 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:57:59,716 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,717 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,720 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,721 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:59,723 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,724 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 09:57:59,726 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,728 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,730 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,730 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,732 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:57:59,733 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,734 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,735 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,738 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:59,738 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,738 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:57:59,739 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,740 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:57:59,740 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,741 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 09:57:59,742 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:57:59,743 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:59,743 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:57:59,744 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:57:59,744 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:57:59,744 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:57:59,745 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,745 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:57:59,745 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:59,746 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,747 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:57:59,747 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:59,747 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:57:59,748 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:57:59,748 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:57:59,751 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:59,754 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 09:57:59,756 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,757 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:59,758 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,760 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,761 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:57:59,762 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,762 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:57:59,763 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,764 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:57:59,765 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,766 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,767 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:57:59,767 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,768 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,769 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,771 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,772 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,774 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,775 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,777 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,778 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,780 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,781 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:57:59,782 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,783 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,784 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,786 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,787 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,788 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:57:59,789 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,789 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:59,790 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,791 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:57:59,791 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,793 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,793 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,794 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:57:59,795 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:59,796 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:59,797 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:59,798 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:59,799 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,800 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:59,800 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,802 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 09:57:59,803 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:57:59,804 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 09:57:59,807 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,809 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,821 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:57:59,822 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,823 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,824 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,825 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,826 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 09:57:59,827 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:59,828 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:57:59,829 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,830 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,830 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:57:59,831 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:57:59,831 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:57:59,832 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,832 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:59,834 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:57:59,834 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:59,835 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:59,836 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:59,837 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,838 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,839 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,839 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,840 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:59,841 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:59,845 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:59,849 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:59,850 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:57:59,851 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:59,852 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:57:59,853 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:59,854 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:57:59,859 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,860 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:57:59,861 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,862 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:57:59,862 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:57:59,863 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:57:59,891 - migrateData - INFO - 24 Idps created +2022-11-29 09:57:59,993 - migrateData - INFO - 409 Sps created +2022-11-29 09:58:47,659 - migrateData - INFO - No new data found +2022-11-29 09:58:47,663 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:58:47,664 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:58:47,665 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:58:47,668 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:58:47,669 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:58:47,669 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:58:47,670 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:58:47,670 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:58:47,671 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,671 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,672 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,672 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:58:47,673 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,673 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 09:58:47,674 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,675 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,675 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,676 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,676 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:58:47,676 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,676 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,676 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,677 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:58:47,677 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,677 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:58:47,678 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,678 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:58:47,678 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,679 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 09:58:47,679 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:58:47,680 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:58:47,680 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:58:47,680 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:58:47,681 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:58:47,681 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:58:47,681 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,682 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:58:47,682 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:58:47,684 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,684 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:58:47,685 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:58:47,685 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:58:47,686 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:58:47,686 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:58:47,687 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:58:47,687 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 09:58:47,688 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,688 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:58:47,688 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,689 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,689 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:58:47,689 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,689 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:58:47,690 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,690 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:58:47,692 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,693 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,693 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:58:47,694 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,694 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,695 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,695 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,695 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,696 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,696 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,697 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,697 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,698 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,698 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:58:47,698 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,699 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,699 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,699 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,700 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,700 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:58:47,700 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,700 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:58:47,701 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,701 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:58:47,701 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,702 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,702 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,702 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:58:47,703 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:58:47,703 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:58:47,703 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:58:47,704 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:58:47,704 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,704 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:58:47,704 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,705 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 09:58:47,705 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:58:47,706 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 09:58:47,706 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,706 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,707 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:58:47,707 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,707 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,708 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,708 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,708 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 09:58:47,709 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:58:47,711 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:58:47,712 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,712 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,712 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:58:47,712 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:58:47,713 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:58:47,713 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,713 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:58:47,714 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:58:47,714 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:58:47,718 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:58:47,718 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:58:47,719 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,719 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,720 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,720 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,721 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:58:47,721 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:58:47,722 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:58:47,726 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:58:47,727 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:58:47,727 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:58:47,728 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:58:47,728 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:58:47,730 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:58:47,731 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,732 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:58:47,732 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,733 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:58:47,734 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:58:47,735 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:58:47,763 - migrateData - INFO - 24 Idps created +2022-11-29 09:58:47,853 - migrateData - INFO - 409 Sps created +2022-11-29 09:58:47,865 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,865 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:47,866 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,866 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:47,867 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,867 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,868 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,868 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,868 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,868 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(418,)] +2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:47,870 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:47,870 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,870 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,872 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,873 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,874 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,875 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:47,876 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,876 - statisticsCountryHashedController - INFO - [(430,)] +2022-11-29 09:58:47,877 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,877 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,878 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,878 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,878 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,879 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,880 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,881 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,881 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,881 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,881 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,882 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,882 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,882 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,882 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:47,883 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,883 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,883 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,883 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(374,)] +2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,889 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,889 - statisticsCountryHashedController - INFO - [(218,)] +2022-11-29 09:58:47,889 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,890 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:47,890 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,891 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,891 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,891 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:47,892 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:47,892 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,892 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,892 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,894 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,894 - statisticsCountryHashedController - INFO - [(374,)] +2022-11-29 09:58:47,894 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,894 - statisticsCountryHashedController - INFO - [(447,)] +2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [(447,)] +2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,898 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,898 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:47,899 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,899 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,900 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,900 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,901 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:47,902 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:47,902 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:47,903 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,903 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:47,904 - statisticsCountryHashedController - INFO - [(447,)] +2022-11-29 09:58:47,904 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,905 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,905 - statisticsCountryHashedController - INFO - [(374,)] +2022-11-29 09:58:47,906 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,906 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,906 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,907 - statisticsCountryHashedController - INFO - [(447,)] +2022-11-29 09:58:47,907 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,908 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:47,908 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,909 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,909 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,910 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,910 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:47,910 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,911 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,911 - statisticsCountryHashedController - INFO - [(451,)] +2022-11-29 09:58:47,912 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,912 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,913 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,913 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,914 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,915 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,915 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,916 - statisticsCountryHashedController - INFO - [(243,)] +2022-11-29 09:58:47,916 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:47,917 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,917 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,917 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,917 - statisticsCountryHashedController - INFO - [(451,)] +2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [(451,)] +2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [(451,)] +2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,921 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,921 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,921 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,921 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [(447,)] +2022-11-29 09:58:47,923 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:47,923 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,923 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,923 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [(451,)] +2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,925 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,926 - statisticsCountryHashedController - INFO - [(374,)] +2022-11-29 09:58:47,927 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,927 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,928 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,929 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,929 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:47,929 - statisticsCountryHashedController - INFO - [(451,)] +2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [(243,)] +2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,931 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,934 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,934 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,934 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:47,934 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:47,937 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,938 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,939 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:47,939 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,940 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,940 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:47,941 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:47,942 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,943 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,944 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,945 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,945 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,946 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:47,946 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,947 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,947 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,948 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,949 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,949 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,950 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,951 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,951 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,951 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,952 - statisticsCountryHashedController - INFO - [(243,)] +2022-11-29 09:58:47,953 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,954 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,955 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,956 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:47,957 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:47,958 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:47,959 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,959 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,960 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,961 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:47,961 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,962 - statisticsCountryHashedController - INFO - [(243,)] +2022-11-29 09:58:47,962 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,963 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,963 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,964 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:47,965 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,966 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,966 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,966 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,967 - statisticsCountryHashedController - INFO - [(243,)] +2022-11-29 09:58:47,967 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,967 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,968 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,968 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:47,968 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,969 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,969 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,969 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,970 - statisticsCountryHashedController - INFO - [(243,)] +2022-11-29 09:58:47,970 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:47,971 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,971 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,971 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,971 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:47,972 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:47,972 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,972 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:47,973 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,973 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,974 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:47,974 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:47,974 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:47,975 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,975 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,975 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,975 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,976 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,976 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,976 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,977 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,977 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,977 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,978 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,979 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:47,979 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,979 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,980 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:47,980 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,981 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,981 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,982 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,982 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,983 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,984 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:47,984 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:47,985 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,985 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,986 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:47,990 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:47,991 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,992 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,992 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,993 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:47,993 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:47,994 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:47,994 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,995 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:47,995 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:47,996 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:47,997 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,002 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:48,003 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,003 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,003 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,004 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,004 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,004 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,004 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [(447,)] +2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [(447,)] +2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,008 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,008 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,008 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,009 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,009 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,009 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,009 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,010 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,010 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,011 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,011 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,011 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,012 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,012 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,013 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,014 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,014 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,015 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,015 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,015 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:48,016 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,018 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,019 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,020 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,021 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,022 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,022 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,022 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,022 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,023 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,023 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,023 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,027 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,028 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,030 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,031 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,032 - statisticsCountryHashedController - INFO - [(460,)] +2022-11-29 09:58:48,034 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,035 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,035 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,036 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,037 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,037 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,038 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,039 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,040 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,041 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,043 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,044 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,054 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,054 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,054 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,054 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,056 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,056 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,056 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,056 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,074 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,074 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,074 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,074 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,075 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,076 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,076 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,078 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,078 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,078 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,078 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,079 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,079 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,079 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,080 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,080 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,080 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,081 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,081 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,081 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,082 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,082 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,082 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(368,)] +2022-11-29 09:58:48,084 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,084 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,084 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,085 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,085 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,085 - statisticsCountryHashedController - INFO - [(380,)] +2022-11-29 09:58:48,086 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,086 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:48,086 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,086 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,087 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,087 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,088 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,088 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,089 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,089 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,089 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,090 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,090 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,090 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,091 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,091 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,091 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,092 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,092 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,092 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,092 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,093 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,093 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,093 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,094 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,094 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,094 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,095 - statisticsCountryHashedController - INFO - [(380,)] +2022-11-29 09:58:48,095 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,095 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,095 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [(218,)] +2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,097 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,097 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,097 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,107 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,108 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,108 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,109 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,109 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,110 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,110 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,110 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,111 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,111 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,112 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,114 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,114 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,115 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,115 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,117 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,118 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(368,)] +2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,121 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,122 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,122 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,122 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,122 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,123 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,123 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,123 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,123 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [(380,)] +2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(368,)] +2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(380,)] +2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(374,)] +2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(374,)] +2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,134 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,134 - statisticsCountryHashedController - INFO - [(142,)] +2022-11-29 09:58:48,134 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,134 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,139 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,139 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,140 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,140 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,141 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,141 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,141 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,141 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,142 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,142 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,142 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,142 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,143 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,143 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,143 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,144 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,144 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,144 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,144 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,145 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,145 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,145 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,145 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,146 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,146 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,146 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,146 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,147 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,147 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,147 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,148 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,148 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,148 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,149 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,149 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,149 - statisticsCountryHashedController - INFO - [(380,)] +2022-11-29 09:58:48,150 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,150 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,150 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,152 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,152 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,152 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,153 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,153 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,163 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,163 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,164 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,165 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,165 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,165 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,166 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,166 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,167 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,167 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,167 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,170 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,170 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,170 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,170 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,173 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,174 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,174 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,174 - statisticsCountryHashedController - INFO - [(144,)] +2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [(380,)] +2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,180 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,180 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,180 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,184 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,184 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,184 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,184 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,188 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,189 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,189 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,192 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,192 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,193 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,193 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,193 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,194 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,194 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,194 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,195 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,195 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,196 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,197 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,198 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,198 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,198 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(380,)] +2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,200 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,200 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,200 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,200 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,204 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,205 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,205 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,205 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,206 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,206 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,207 - statisticsCountryHashedController - INFO - [(380,)] +2022-11-29 09:58:48,207 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,208 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,208 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:48,208 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,209 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,209 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,209 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,210 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:48,210 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,211 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,211 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,211 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,212 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,212 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,212 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,212 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,213 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,213 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,218 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,219 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,219 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,219 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,220 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:48,220 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,220 - statisticsCountryHashedController - INFO - [(368,)] +2022-11-29 09:58:48,221 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,221 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,221 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,222 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,223 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,223 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,224 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,224 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,224 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,224 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,225 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,225 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,226 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,226 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,227 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,228 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,228 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,228 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,228 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,229 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,229 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,230 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,230 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,230 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,231 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,231 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,232 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,232 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,232 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,233 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,233 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,233 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,233 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,234 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,234 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,234 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,235 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,235 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,235 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,235 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,236 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,238 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,239 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,239 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,240 - statisticsCountryHashedController - INFO - [(329,)] +2022-11-29 09:58:48,240 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,242 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,243 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,243 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,246 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,247 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,247 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,247 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,247 - statisticsCountryHashedController - INFO - [(368,)] +2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [(218,)] +2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,253 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,253 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,253 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,253 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,255 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,255 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,256 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,256 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,257 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,257 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,258 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,259 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,260 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,260 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,261 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,262 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,262 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,262 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,263 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,263 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,263 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,264 - statisticsCountryHashedController - INFO - [(353,)] +2022-11-29 09:58:48,265 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,265 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,266 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,266 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,266 - statisticsCountryHashedController - INFO - [(161,)] +2022-11-29 09:58:48,266 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,267 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,267 - statisticsCountryHashedController - INFO - [(393,)] +2022-11-29 09:58:48,267 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,268 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,269 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,269 - statisticsCountryHashedController - INFO - [(350,)] +2022-11-29 09:58:48,270 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,270 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,271 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,271 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,272 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,273 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,273 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,273 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(376,)] +2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,293 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,296 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,297 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,297 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,298 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,299 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,302 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,302 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,303 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,303 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,304 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,304 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,305 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,305 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,306 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,306 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,307 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,307 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,309 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,309 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,310 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,311 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,312 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,312 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,313 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,313 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,314 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,322 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,323 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,324 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,325 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,326 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,326 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,327 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,328 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,328 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,329 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,329 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,330 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,331 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,334 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,334 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,335 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,335 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,336 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,336 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,337 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,337 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,338 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:48,339 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,339 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,340 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,341 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,341 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,341 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,342 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,342 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,342 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,342 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,343 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,343 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,343 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,344 - statisticsCountryHashedController - INFO - [(368,)] +2022-11-29 09:58:48,344 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,344 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,344 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,345 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,345 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,345 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,346 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,346 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,346 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,347 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,347 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,347 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,348 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,348 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,348 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,349 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,349 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,349 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,350 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,350 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,350 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,351 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,351 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,351 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(396,)] +2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,355 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,357 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,357 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,357 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,358 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,358 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,359 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,360 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,360 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,361 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,361 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:48,369 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,370 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,370 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,370 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,375 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,375 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,375 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,380 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,382 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,383 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,384 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,385 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,386 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,388 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,389 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,390 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,391 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,392 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,392 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,393 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,393 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,394 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,395 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,396 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,398 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,401 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,402 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,403 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,403 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,404 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,405 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,405 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,407 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,408 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:48,409 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,410 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,411 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,412 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,413 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,413 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,414 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,415 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,416 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,416 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,417 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,418 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,419 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,419 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,420 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,421 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,422 - statisticsCountryHashedController - INFO - [(329,)] +2022-11-29 09:58:48,423 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,424 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,425 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,425 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,426 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,427 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:48,427 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,428 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,429 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,430 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,431 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,431 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,432 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,433 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,434 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,434 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,435 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,436 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,437 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,438 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,438 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,439 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,439 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,440 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,442 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [(353,)] +2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,450 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,450 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,451 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,452 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,453 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,454 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,454 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,455 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,458 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,459 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,460 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,460 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,461 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,463 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,463 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,464 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,464 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(205,)] +2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,472 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,474 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,474 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,474 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,474 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(396,)] +2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,479 - statisticsCountryHashedController - INFO - [(329,)] +2022-11-29 09:58:48,479 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,479 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,479 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,480 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,480 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,480 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,480 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,485 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,486 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:48,486 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,487 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,487 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,488 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,488 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,489 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,489 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,490 - statisticsCountryHashedController - INFO - [(368,)] +2022-11-29 09:58:48,490 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,490 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,490 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,491 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,491 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,491 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,491 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,493 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,493 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,493 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,493 - statisticsCountryHashedController - INFO - [(144,)] +2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,495 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,495 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:48,495 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,497 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,497 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,497 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,497 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,498 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,499 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,499 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,499 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,500 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,500 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,501 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,501 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,501 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,502 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,502 - statisticsCountryHashedController - INFO - [(161,)] +2022-11-29 09:58:48,502 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,502 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,503 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:48,503 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,503 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,504 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,504 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,504 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,504 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,505 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,505 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,505 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,505 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,506 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,506 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,506 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,507 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,507 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,508 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:48,508 - statisticsCountryHashedController - INFO - [(188,)] +2022-11-29 09:58:48,509 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,509 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,510 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,510 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,510 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,511 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,511 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:48,512 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,513 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,513 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,513 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,513 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,519 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,519 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,519 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,519 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,520 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,520 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,520 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,520 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,522 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,522 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,524 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,530 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,530 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,530 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,530 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(353,)] +2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,534 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,534 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,534 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,534 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,538 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,538 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,538 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,538 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,543 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,545 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,545 - statisticsCountryHashedController - INFO - [(142,)] +2022-11-29 09:58:48,546 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,546 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,546 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,546 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [(218,)] +2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [(142,)] +2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [(142,)] +2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,555 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,555 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,555 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,555 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,556 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,556 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,557 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:48,557 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,557 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,559 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,559 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,559 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,559 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,562 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,562 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,562 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:48,562 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,564 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:48,564 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,564 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,564 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,565 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:48,566 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(188,)] +2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(375,)] +2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,571 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,571 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,571 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,572 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,572 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,572 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,572 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,573 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,573 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,573 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,573 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,574 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,574 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,574 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,574 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,575 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,575 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,576 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,576 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,576 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,577 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:48,577 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:48,577 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,579 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,579 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,579 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:48,579 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:48,580 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,580 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,580 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:48,580 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,582 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:48,582 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,582 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:48,582 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:48,583 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:48,583 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:48,583 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:48,584 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,012 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,013 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,013 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,013 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,013 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,014 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,014 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:49,014 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,017 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,018 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,018 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,023 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,023 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,023 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,023 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,025 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,025 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,025 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,025 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,026 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,026 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,026 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,028 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,028 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,028 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,029 - statisticsCountryHashedController - INFO - [(375,)] +2022-11-29 09:58:49,029 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,029 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,029 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,030 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,030 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,030 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,032 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,032 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,032 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,032 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,034 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,034 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,034 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,034 - statisticsCountryHashedController - INFO - [(218,)] +2022-11-29 09:58:49,035 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,035 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,035 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:49,035 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,036 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,036 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,036 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,036 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,038 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,038 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,038 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,038 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,041 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,041 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,041 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,041 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,042 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,043 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,043 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:49,044 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,044 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,045 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,045 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,045 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,046 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,046 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,047 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,047 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,048 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,048 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,048 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,063 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,064 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,064 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,065 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,066 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,066 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,066 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,067 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,071 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,071 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,072 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,072 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,072 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,073 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,073 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,078 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,079 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,079 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:49,079 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,080 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,080 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,080 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,080 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,081 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,081 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,082 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,086 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,086 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:49,087 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,087 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,088 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,089 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,090 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,090 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,090 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,091 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,091 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,092 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,092 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,093 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,093 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,094 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,094 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,094 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,094 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,095 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,095 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,095 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,095 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,096 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,096 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,096 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,097 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,097 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,097 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,098 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,099 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,099 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,102 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [(262,)] +2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,106 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,106 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,106 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,106 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,107 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,107 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,109 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,109 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,110 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,110 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,110 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,111 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,111 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,112 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,112 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,113 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,113 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,113 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,114 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,114 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:49,114 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,115 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,115 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,115 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,116 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,116 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,117 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,117 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,117 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,118 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,118 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,118 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,119 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,119 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,119 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,120 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,120 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,121 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,121 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,121 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,122 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,128 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,129 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,129 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,129 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,130 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,131 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,131 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,131 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,132 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,132 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,132 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,133 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,133 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,133 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,134 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,134 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,134 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,135 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,135 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,135 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,136 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,136 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,138 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,138 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,138 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,138 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,140 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,140 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,141 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,141 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,142 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,142 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,142 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,143 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,143 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,143 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,144 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,144 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,144 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,145 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,145 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,146 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,146 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,146 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,146 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(348,)] +2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,151 - statisticsCountryHashedController - INFO - [(144,)] +2022-11-29 09:58:49,151 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,151 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,152 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:49,152 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,152 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,153 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,154 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,154 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,155 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,155 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,156 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,156 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,156 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,157 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,157 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:49,158 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,158 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,159 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,159 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,160 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,160 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,160 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,161 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,161 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,162 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,162 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,163 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,163 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,163 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,164 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,164 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,165 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,165 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,166 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,166 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,166 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,167 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,167 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,168 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,168 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:49,168 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,169 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,169 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,169 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,170 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,170 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,171 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,171 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,171 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,172 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,172 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,173 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,173 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,174 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,174 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:49,175 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,175 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,176 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,176 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,177 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,178 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,178 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,178 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,179 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,179 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,180 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,180 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,180 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,180 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,186 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:49,187 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,188 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:49,188 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,188 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,189 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,189 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,189 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,189 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,190 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,191 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,191 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,192 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,193 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,193 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,194 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,194 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,195 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,196 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,196 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,197 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,197 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,198 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,198 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,199 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,200 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,201 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,201 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,202 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,202 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,203 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,203 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,204 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,204 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,205 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,205 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,206 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,207 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,208 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,209 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,210 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,211 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,211 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,212 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,213 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,214 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,215 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,216 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,217 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,220 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,222 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,222 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,223 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,224 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,224 - statisticsCountryHashedController - INFO - [(218,)] +2022-11-29 09:58:49,225 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,225 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,226 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,226 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,227 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,228 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,228 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,229 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,229 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,230 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,230 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,230 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,231 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,231 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,232 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,233 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,233 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,234 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,234 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,235 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,235 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,236 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,236 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,237 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,237 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,237 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,238 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,238 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,239 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,239 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,240 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,241 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,241 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,241 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,242 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,242 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,243 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,243 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,243 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,243 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,244 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,245 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,246 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,246 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,246 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,247 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,247 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,248 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,248 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,249 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,249 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,249 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,250 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,250 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,250 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,251 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,251 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,251 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,252 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,252 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,252 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,253 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,253 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,253 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,254 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,256 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,257 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,257 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,258 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,258 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,259 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,259 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,259 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,259 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,261 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,261 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,261 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,262 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,263 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,263 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,264 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,264 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,265 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,265 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:49,266 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,267 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,268 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,269 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,270 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,271 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,271 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,272 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,273 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:49,274 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,274 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,275 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,275 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,275 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,276 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,276 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,276 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,278 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,278 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,278 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,279 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,279 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,279 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,280 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,283 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,284 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,284 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,285 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,285 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,286 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,286 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,287 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,287 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,287 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,288 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,288 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,288 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,289 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,289 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,289 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,290 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,290 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,290 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,291 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,291 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,291 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,292 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,292 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,293 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,293 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,293 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,294 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,295 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,295 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,295 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,296 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,296 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,298 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,298 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,299 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,299 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,299 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,299 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,300 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,300 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,300 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,301 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,301 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,301 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,302 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,302 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,302 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,303 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,303 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,303 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,304 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,304 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,305 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,305 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,305 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,306 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,306 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,306 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,307 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,307 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,308 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,308 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,308 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,308 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,310 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,310 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,310 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,310 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,311 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,311 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,311 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,312 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,312 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,313 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,313 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,313 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,314 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,314 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,314 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,314 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,315 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,315 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,315 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,315 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,316 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,316 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,316 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,316 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,317 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,317 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,317 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,317 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,318 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,323 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,324 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:49,324 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,325 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,325 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,326 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,327 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,327 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,327 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,328 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,328 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,328 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,330 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,330 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,332 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,332 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,332 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,333 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,333 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,333 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,333 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,334 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,334 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,334 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,334 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,335 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,335 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,335 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,336 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,336 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,336 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,337 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,337 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,337 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,338 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,338 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,338 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,338 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,340 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,340 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,340 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,340 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,344 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,344 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,344 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,344 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,345 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,345 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,345 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,345 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,346 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,346 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,346 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,347 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,347 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,347 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,348 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,348 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,348 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,349 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,349 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,349 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,350 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,350 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,350 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,350 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,351 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,351 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,351 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,352 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,352 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,352 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,353 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,353 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,353 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,354 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,354 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,354 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,356 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,358 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,360 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,360 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,362 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,362 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,362 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,363 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,363 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,364 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:49,364 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,364 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,364 - statisticsCountryHashedController - INFO - [(216,)] +2022-11-29 09:58:49,365 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,365 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,365 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,365 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,366 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,366 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,367 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,367 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,368 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,368 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,369 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,369 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,369 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,370 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,371 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:49,371 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,371 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,372 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,372 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,373 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,373 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,374 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,375 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,375 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,376 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,377 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,378 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,378 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,379 - statisticsCountryHashedController - INFO - [(326,)] +2022-11-29 09:58:49,380 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,380 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,381 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,382 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,382 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,383 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,384 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,384 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,385 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,386 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,386 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,387 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,388 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,389 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,389 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,390 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,390 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,390 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,391 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,391 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,391 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,391 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,392 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,392 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,393 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,393 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,393 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,394 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,394 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,395 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,395 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,396 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,396 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,397 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,397 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,397 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,398 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,398 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,398 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,399 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,399 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,399 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,400 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,400 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,400 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,400 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,401 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,401 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,401 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,401 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,402 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,402 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,403 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,403 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,403 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,404 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,404 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,404 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,404 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,405 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,405 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,405 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,406 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,406 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,406 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,406 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,407 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,407 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,407 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,408 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,408 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,408 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,408 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,409 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,409 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,409 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,409 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,410 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,410 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,410 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,411 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,411 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,411 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,411 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,412 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,412 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,412 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,412 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,413 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,413 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,413 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,415 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,415 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,415 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,416 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,416 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,416 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,416 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,417 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,417 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,417 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,418 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,418 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,418 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,418 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,419 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,419 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,419 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,420 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,420 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,420 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,421 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,421 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,421 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,421 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,422 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,422 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,422 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,423 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,423 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,423 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,424 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,424 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,424 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,425 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,425 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,425 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,426 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [(142,)] +2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [(15,)] +2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,428 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,428 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,428 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,429 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,429 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,429 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,429 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,430 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,430 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,430 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,431 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,431 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,431 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,431 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,433 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,433 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,433 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,434 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,434 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,434 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,435 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,435 - statisticsCountryHashedController - INFO - [(15,)] +2022-11-29 09:58:49,435 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,435 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,436 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,436 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,436 - statisticsCountryHashedController - INFO - [(329,)] +2022-11-29 09:58:49,437 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,437 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,437 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,437 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,438 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,438 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,439 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,439 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,439 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,441 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,441 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,441 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,443 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,443 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,443 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,444 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,444 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,444 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,446 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,446 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,446 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,446 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,447 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,447 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,447 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,449 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,449 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,449 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,449 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,450 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,450 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,450 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,455 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,455 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,455 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,456 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,456 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,456 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,459 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,459 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,459 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,459 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,463 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,463 - statisticsCountryHashedController - INFO - [(450,)] +2022-11-29 09:58:49,464 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,464 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,464 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,466 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,466 - statisticsCountryHashedController - INFO - [(128,)] +2022-11-29 09:58:49,466 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,471 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,471 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,471 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,474 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,474 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,474 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,474 - statisticsCountryHashedController - INFO - [(353,)] +2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,479 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,479 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,479 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,479 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [(45,)] +2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,484 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,484 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,485 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,486 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,487 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,487 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,487 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,487 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,489 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,489 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,489 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,489 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,490 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,490 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,490 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,491 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,491 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,491 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,491 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,492 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,492 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,492 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,492 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [(205,)] +2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,502 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,502 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,502 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,503 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,503 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,504 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,504 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,504 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [(188,)] +2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [(205,)] +2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(218,)] +2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(339,)] +2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,511 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,511 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,511 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,511 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,871 - statisticsCountryHashedController - INFO - [(15,)] +2022-11-29 09:58:49,871 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,872 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,872 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,872 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,873 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,873 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,873 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,874 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,874 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,875 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,875 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,875 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,875 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,876 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,877 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,877 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,878 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,878 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,879 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,879 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,880 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,880 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,881 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,881 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,882 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,882 - statisticsCountryHashedController - INFO - [(218,)] +2022-11-29 09:58:49,883 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,883 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,884 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,884 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,884 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,885 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,885 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,885 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,885 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,886 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,886 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,886 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,886 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(1,)] +2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,888 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,888 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,889 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,889 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,889 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,890 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,890 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,890 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,891 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,891 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,891 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,892 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,892 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,892 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,893 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,893 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,893 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,894 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,895 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,896 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,896 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,896 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,906 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,907 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,908 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,909 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,909 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,910 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,911 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,911 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,912 - statisticsCountryHashedController - INFO - [(332,)] +2022-11-29 09:58:49,912 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,913 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,913 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,916 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,916 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,916 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,917 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,917 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,917 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,918 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,918 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,919 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,919 - statisticsCountryHashedController - INFO - [(340,)] +2022-11-29 09:58:49,919 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,920 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,920 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,921 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,921 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,921 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,922 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,922 - statisticsCountryHashedController - INFO - [(359,)] +2022-11-29 09:58:49,924 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,925 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,925 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,926 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,927 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,928 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,928 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,929 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,929 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,929 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,929 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,930 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,930 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,931 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,931 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,931 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,932 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,932 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,932 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,933 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,933 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,933 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,933 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,934 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,934 - statisticsCountryHashedController - INFO - [(182,)] +2022-11-29 09:58:49,935 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,935 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,935 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,936 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,936 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,937 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,937 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,938 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,938 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,939 - statisticsCountryHashedController - INFO - [(436,)] +2022-11-29 09:58:49,939 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,939 - statisticsCountryHashedController - INFO - [(240,)] +2022-11-29 09:58:49,940 - statisticsCountryHashedController - INFO - [(177,)] +2022-11-29 09:58:49,940 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,941 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,941 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,941 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,941 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,942 - statisticsCountryHashedController - INFO - [(378,)] +2022-11-29 09:58:49,944 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,951 - statisticsCountryHashedController - INFO - [(120,)] +2022-11-29 09:58:49,952 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,955 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,955 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,955 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,956 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,956 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,956 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,956 - statisticsCountryHashedController - INFO - [(457,)] +2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [(441,)] +2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [(15,)] +2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [(329,)] +2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [(141,)] +2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,961 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,961 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,961 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,961 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,962 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,962 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,963 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,963 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,964 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,964 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,964 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,965 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,965 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,965 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,966 - statisticsCountryHashedController - INFO - [(458,)] +2022-11-29 09:58:49,966 - statisticsCountryHashedController - INFO - [(443,)] +2022-11-29 09:58:49,967 - statisticsCountryHashedController - INFO - [(377,)] +2022-11-29 09:58:49,968 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,968 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,968 - statisticsCountryHashedController - INFO - [(364,)] +2022-11-29 09:58:49,968 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,969 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,969 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,969 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,970 - statisticsCountryHashedController - INFO - [(207,)] +2022-11-29 09:58:49,970 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,970 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,970 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,971 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,971 - statisticsCountryHashedController - INFO - [(140,)] +2022-11-29 09:58:49,971 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,971 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,972 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,972 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,975 - statisticsCountryHashedController - INFO - [(420,)] +2022-11-29 09:58:49,977 - statisticsCountryHashedController - INFO - [] +2022-11-29 09:58:49,978 - statisticsCountryHashedController - INFO - [(345,)] +2022-11-29 09:58:49,978 - migrateData - INFO - 3612 Country Stats created +2022-11-29 09:59:05,712 - migrateData - INFO - No new data found +2022-11-29 09:59:05,716 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:05,718 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:05,719 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:59:05,719 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:59:05,719 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:05,720 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:05,721 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:05,721 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:05,722 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,723 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,723 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,725 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:05,726 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,726 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 09:59:05,726 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,727 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,727 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,727 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,727 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:05,727 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,728 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,728 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,728 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:05,728 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,728 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:05,728 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,729 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:59:05,729 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,729 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 09:59:05,729 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:05,729 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:05,730 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:59:05,730 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:59:05,730 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:59:05,730 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:59:05,731 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,731 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:59:05,732 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:05,732 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,733 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:05,733 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:05,733 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:05,734 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:59:05,734 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:05,735 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:05,735 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 09:59:05,735 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,736 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:05,736 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,736 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,737 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:05,737 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,737 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:05,738 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,738 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:05,738 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,739 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,739 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:59:05,739 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,740 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,740 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,741 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,741 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,741 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,742 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,743 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,744 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,744 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,744 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:05,745 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,745 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,745 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,746 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,746 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,746 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:05,747 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,747 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:05,747 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,747 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:05,747 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,748 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,748 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,749 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:05,749 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:05,750 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:05,750 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:05,751 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:05,751 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,752 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:05,752 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,753 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 09:59:05,754 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:05,754 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 09:59:05,755 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,755 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,755 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:05,756 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,756 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,756 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,756 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,757 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 09:59:05,758 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:05,758 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:05,758 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,760 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,760 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:05,761 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:05,761 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:05,761 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,762 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:05,763 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:05,763 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:05,764 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:05,764 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:05,765 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,765 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,766 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,766 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,766 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:05,768 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:05,768 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:05,769 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:05,770 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:05,771 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:05,771 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:05,771 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:05,772 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:05,773 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,773 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:05,773 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,774 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:05,774 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:05,774 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:05,809 - migrateData - INFO - 24 Idps created +2022-11-29 09:59:05,897 - migrateData - INFO - 409 Sps created +2022-11-29 09:59:25,256 - migrateData - INFO - No new data found +2022-11-29 09:59:25,260 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:25,262 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:25,262 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:59:25,263 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:59:25,264 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:25,264 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:25,265 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:25,265 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:25,266 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,267 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,267 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,267 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:25,268 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,269 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 09:59:25,269 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,269 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,269 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,270 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,270 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:25,271 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,271 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,271 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,272 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:25,272 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,272 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:25,273 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,273 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:59:25,273 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,274 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 09:59:25,274 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:25,274 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:25,275 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:59:25,275 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:59:25,278 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:59:25,278 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:59:25,279 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,279 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:59:25,279 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:25,279 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,280 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:25,280 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:25,280 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:25,280 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:59:25,281 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:25,281 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:25,281 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 09:59:25,282 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,282 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:25,282 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,282 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,283 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:25,283 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,283 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:25,283 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,284 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:25,284 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,284 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,284 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:59:25,285 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,285 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,285 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,286 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,286 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,286 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,287 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,287 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,288 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,288 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,288 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:25,288 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,289 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,289 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,289 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,289 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,290 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:25,290 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,290 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:25,290 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,291 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:25,291 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,292 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,292 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,292 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:25,292 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:25,293 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:25,293 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:25,293 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:25,293 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,294 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:25,294 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,294 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 09:59:25,295 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:25,295 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 09:59:25,295 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,296 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,296 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:25,296 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,296 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,297 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,297 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,297 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 09:59:25,297 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:25,298 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:25,298 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,298 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,298 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:25,299 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:25,299 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:25,299 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,300 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:25,300 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:25,300 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:25,300 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:25,301 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:25,301 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,301 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,301 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,302 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,302 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:25,302 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:25,303 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:25,303 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:25,304 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:25,304 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:25,305 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:25,305 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:25,305 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:25,306 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,306 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:25,306 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,307 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:25,307 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:25,307 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:25,338 - migrateData - INFO - 24 Idps created +2022-11-29 09:59:25,412 - migrateData - INFO - 409 Sps created +2022-11-29 09:59:57,802 - migrateData - INFO - No new data found +2022-11-29 09:59:57,806 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:57,807 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:57,807 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:59:57,808 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 09:59:57,809 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:57,810 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:57,811 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:57,811 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:57,811 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,812 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,812 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,813 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:57,813 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,814 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 09:59:57,815 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,816 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,817 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,817 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,818 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:57,818 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,819 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,819 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,819 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:57,820 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,820 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:57,821 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,822 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:59:57,822 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,824 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 09:59:57,824 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 09:59:57,825 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:57,826 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:59:57,826 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:59:57,827 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 09:59:57,830 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 09:59:57,831 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,832 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 09:59:57,832 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:57,833 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,833 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:57,833 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:57,834 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:57,835 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:59:57,836 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:57,836 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:57,837 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 09:59:57,837 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,838 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:57,838 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,839 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,839 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:57,839 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,840 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:57,840 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,840 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 09:59:57,842 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,843 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,843 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 09:59:57,844 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,844 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,845 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,845 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,845 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,846 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,847 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,848 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,848 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,849 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,850 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 09:59:57,852 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,852 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,853 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,853 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,854 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,855 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 09:59:57,856 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,856 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:57,856 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,857 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 09:59:57,857 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,858 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,859 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,859 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 09:59:57,860 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:57,860 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:57,861 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:57,861 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:57,862 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,862 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:57,862 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,863 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 09:59:57,864 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:57,864 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 09:59:57,864 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,865 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,865 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 09:59:57,865 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,865 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,866 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,866 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,866 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 09:59:57,867 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:57,867 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 09:59:57,867 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,868 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,868 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:57,869 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:57,869 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 09:59:57,869 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,870 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:57,871 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 09:59:57,871 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:57,872 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:57,872 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:57,873 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,873 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,874 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,874 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,874 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:57,876 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:57,876 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:57,883 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:57,884 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 09:59:57,885 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:57,885 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 09:59:57,886 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:57,887 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 09:59:57,888 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,888 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:57,889 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,890 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:57,890 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 09:59:57,890 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 09:59:57,928 - migrateData - INFO - 24 Idps created +2022-11-29 09:59:58,018 - migrateData - INFO - 409 Sps created +2022-11-29 10:00:11,820 - migrateData - INFO - No new data found +2022-11-29 10:00:11,825 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:00:11,827 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:00:11,827 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:00:11,827 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:00:11,828 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:00:11,828 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:00:11,828 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:00:11,829 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:00:11,829 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,830 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,830 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,830 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:00:11,831 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,831 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:00:11,831 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,843 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,844 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,844 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,844 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:00:11,844 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,845 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,845 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,846 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:00:11,846 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,846 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:00:11,847 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,847 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:00:11,847 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,848 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:00:11,848 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:00:11,848 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:00:11,848 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:00:11,849 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:00:11,849 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:00:11,849 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:00:11,849 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,850 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:00:11,850 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:00:11,850 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,851 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:00:11,851 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:00:11,852 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:00:11,852 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:00:11,853 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:00:11,853 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:00:11,854 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:00:11,854 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,855 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:00:11,855 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,855 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,856 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:00:11,856 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,857 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:00:11,857 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,857 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:00:11,857 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,858 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,858 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:00:11,859 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,859 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,859 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,860 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,860 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,860 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,860 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,861 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,861 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,861 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,862 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:00:11,862 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,862 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,862 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,866 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,867 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,867 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:00:11,868 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,868 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:00:11,868 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,869 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:00:11,869 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,869 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,870 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,871 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:00:11,872 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:00:11,873 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:00:11,874 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:00:11,879 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:00:11,881 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,882 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:00:11,884 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,885 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:00:11,886 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:00:11,887 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:00:11,888 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,889 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,889 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:00:11,889 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,890 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,890 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,890 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,890 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:00:11,891 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:00:11,891 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:00:11,891 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,891 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,891 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:00:11,892 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:00:11,892 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:00:11,892 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,892 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:00:11,893 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:00:11,894 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:00:11,894 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:00:11,895 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:00:11,896 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,896 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,897 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,898 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,898 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:00:11,902 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:00:11,904 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:00:11,905 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:00:11,910 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:00:11,911 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:00:11,912 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:00:11,912 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:00:11,913 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:00:11,913 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,913 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:00:11,914 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,914 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:00:11,917 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:00:11,918 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:00:11,949 - migrateData - INFO - 24 Idps created +2022-11-29 10:00:12,038 - migrateData - INFO - 409 Sps created +2022-11-29 10:02:13,406 - migrateData - INFO - No new data found +2022-11-29 10:02:13,410 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:13,411 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:13,412 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:02:13,413 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:02:13,413 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:13,414 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:13,415 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:13,415 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:13,416 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,417 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,417 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,418 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:13,418 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,419 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:02:13,419 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,419 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,420 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,420 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,421 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:13,422 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,423 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,424 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,424 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:13,425 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,426 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:13,427 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,428 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:02:13,430 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,433 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:02:13,433 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:13,433 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:13,433 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:02:13,434 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:02:13,434 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:02:13,434 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:02:13,434 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,435 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:02:13,435 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:13,435 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,436 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:13,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:13,436 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:13,436 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:02:13,437 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:13,437 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:13,437 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:02:13,438 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,438 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:13,438 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,438 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,439 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:13,439 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,439 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:13,439 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,440 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:13,440 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,440 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,440 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:02:13,441 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,441 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,441 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,442 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,442 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,442 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,443 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,446 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,446 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,448 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,449 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:13,449 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,450 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,450 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,451 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,454 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,455 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:13,456 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,457 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:13,458 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,459 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:13,459 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,460 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,460 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,461 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:13,462 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:13,462 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:13,463 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:13,463 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:13,466 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,467 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:13,468 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,469 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:02:13,469 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:13,470 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:02:13,470 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,471 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,471 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:13,472 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,472 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,473 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,473 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,474 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:02:13,475 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:13,475 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:13,476 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,477 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,477 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:13,478 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:13,478 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:13,479 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,479 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:13,480 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:13,480 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:13,481 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:13,482 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:13,482 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,483 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,484 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,485 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,486 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:13,486 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:13,488 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:13,489 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:13,490 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:13,490 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:13,491 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:13,492 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:13,493 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:13,495 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,495 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:13,495 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,496 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:13,496 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:13,497 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:13,525 - migrateData - INFO - 24 Idps created +2022-11-29 10:02:13,605 - migrateData - INFO - 409 Sps created +2022-11-29 10:02:19,851 - migrateData - INFO - No new data found +2022-11-29 10:02:19,856 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:19,856 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:19,856 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:02:19,857 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:02:19,857 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:19,857 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:19,858 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:19,858 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:19,859 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,859 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,860 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,860 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:19,861 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,861 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:02:19,861 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,862 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,862 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,862 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,862 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:19,863 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,863 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,863 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,863 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:19,864 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,864 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:19,864 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,865 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:02:19,865 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,866 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:02:19,866 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:19,866 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:19,867 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:02:19,867 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:02:19,867 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:02:19,868 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:02:19,868 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,868 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:02:19,869 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:19,869 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,869 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:19,869 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:19,870 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:19,870 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:02:19,870 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:19,870 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:19,871 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:02:19,871 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,871 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:19,872 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,872 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,872 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:19,873 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,873 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:19,873 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,874 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:19,874 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,874 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,875 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:02:19,875 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,875 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,876 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,876 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,877 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,877 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,878 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,878 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,879 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,879 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,879 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:19,880 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,880 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,880 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,881 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,881 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,881 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:19,882 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,882 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:19,882 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,883 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:19,883 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,883 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,884 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,884 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:19,885 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:19,885 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:19,885 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:19,885 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:19,886 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,886 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:19,886 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,887 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:02:19,887 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:19,887 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:02:19,888 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,888 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,888 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:19,889 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,889 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,889 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,890 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,890 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:02:19,890 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:19,891 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:19,900 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,902 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,902 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:19,903 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:19,903 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:19,904 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,904 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:19,905 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:19,910 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:19,910 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:19,911 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:19,911 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,911 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,912 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,912 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,913 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:19,913 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:19,913 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:19,914 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:19,915 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:19,916 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:19,917 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:19,917 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:19,918 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:19,918 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,918 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:19,918 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,919 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:19,919 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:19,919 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:19,946 - migrateData - INFO - 24 Idps created +2022-11-29 10:02:20,024 - migrateData - INFO - 409 Sps created +2022-11-29 10:02:29,049 - migrateData - INFO - No new data found +2022-11-29 10:02:29,053 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:29,053 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:29,054 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:02:29,054 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:02:29,054 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:29,054 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:29,055 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:29,055 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:29,055 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,055 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,055 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,056 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:29,056 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,056 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:02:29,057 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,057 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,057 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,057 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,057 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:29,057 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,058 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,058 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,058 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:29,058 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,059 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:29,059 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,059 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:02:29,059 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,060 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:02:29,060 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:02:29,060 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:29,062 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:02:29,064 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:02:29,065 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:02:29,067 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:02:29,067 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,068 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:02:29,068 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:29,068 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,068 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:29,069 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:29,069 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:29,069 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:02:29,070 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:29,070 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:29,070 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:02:29,071 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,071 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:29,071 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,072 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,072 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:29,072 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,072 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:29,072 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,073 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:02:29,073 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,073 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,074 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:02:29,074 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,074 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,074 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,075 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,075 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,075 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,076 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,076 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,076 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,077 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,077 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:02:29,077 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,077 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,078 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,078 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,078 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,083 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:02:29,084 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,085 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:29,087 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,088 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:02:29,089 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,091 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,094 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,095 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:02:29,097 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:29,099 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:29,100 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:29,102 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:29,103 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,104 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:29,107 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,108 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:02:29,109 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:29,111 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:02:29,112 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,114 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,115 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:02:29,116 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,117 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,118 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,119 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,119 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:02:29,120 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:29,129 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:02:29,130 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,130 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,131 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:29,131 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:29,131 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:02:29,131 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,132 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:29,132 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:02:29,133 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:29,134 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:29,134 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:29,137 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,138 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,139 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,139 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,140 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:29,140 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:29,141 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:29,143 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:29,143 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:02:29,144 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:29,144 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:02:29,144 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:29,146 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:02:29,146 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,146 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:29,147 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,147 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:29,147 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:02:29,148 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:02:29,174 - migrateData - INFO - 24 Idps created +2022-11-29 10:02:29,243 - migrateData - INFO - 409 Sps created +2022-11-29 10:03:37,081 - migrateData - INFO - No new data found +2022-11-29 10:03:37,086 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:03:37,087 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:03:37,089 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:03:37,090 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:03:37,091 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:03:37,092 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:03:37,093 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:03:37,094 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:03:37,094 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,094 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,095 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,095 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:03:37,096 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,096 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:03:37,097 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,097 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,097 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,098 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,098 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:03:37,098 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,099 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,099 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,099 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:03:37,100 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,100 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:03:37,100 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,101 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:03:37,101 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,102 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:03:37,102 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:03:37,103 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:03:37,103 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:03:37,103 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:03:37,104 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:03:37,104 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:03:37,104 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,105 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:03:37,105 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:03:37,106 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,106 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:03:37,106 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:03:37,107 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:03:37,107 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:03:37,107 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:03:37,108 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:03:37,108 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:03:37,108 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,109 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:03:37,109 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,109 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,110 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:03:37,110 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,110 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:03:37,111 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,111 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:03:37,111 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,112 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,112 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:03:37,112 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,113 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,113 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,114 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,114 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,114 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,115 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,115 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,116 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,116 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,117 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:03:37,117 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,117 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,118 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,118 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,118 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,119 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:03:37,119 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,119 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:03:37,119 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,120 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:03:37,120 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,121 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,121 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,121 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:03:37,122 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:03:37,122 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:03:37,123 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:03:37,123 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:03:37,123 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,123 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:03:37,124 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,124 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:03:37,125 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:03:37,125 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:03:37,125 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,125 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,126 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:03:37,126 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,126 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,127 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,127 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,127 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:03:37,128 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:03:37,128 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:03:37,128 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,128 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,129 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:03:37,129 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:03:37,129 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:03:37,130 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,130 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:03:37,130 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:03:37,131 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:03:37,131 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:03:37,131 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:03:37,132 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,132 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,132 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,133 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,133 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:03:37,134 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:03:37,134 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:03:37,135 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:03:37,135 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:03:37,136 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:03:37,136 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:03:37,137 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:03:37,137 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:03:37,138 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,138 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:03:37,138 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,138 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:03:37,139 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:03:37,139 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:03:37,170 - migrateData - INFO - 24 Idps created +2022-11-29 10:03:37,247 - migrateData - INFO - 409 Sps created +2022-11-29 10:03:37,257 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,258 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,258 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,258 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,259 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,259 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,260 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,260 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,260 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,261 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,261 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,261 - statisticsCountryHashedController - INFO - 418 +2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 430 +2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,266 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,266 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,266 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,267 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,269 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,269 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,269 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,269 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,270 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,271 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,272 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,272 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:03:37,274 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,274 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,274 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,274 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,275 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,275 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,276 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,276 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,276 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,276 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,277 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,277 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,277 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:03:37,277 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,278 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:03:37,278 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,278 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,279 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:03:37,279 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,281 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,281 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,281 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,281 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,282 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,282 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,282 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,283 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,283 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,284 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,284 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,285 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,285 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:03:37,285 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,285 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:03:37,286 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,287 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:03:37,287 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,288 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,288 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,289 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,289 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,290 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,291 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,291 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:03:37,291 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,291 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,292 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,292 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:03:37,292 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,293 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:03:37,293 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,293 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,294 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,294 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,294 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:03:37,295 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:03:37,295 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,295 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,295 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,296 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,296 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,296 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,298 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:03:37,298 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,298 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:03:37,299 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,300 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,300 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,300 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,300 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,301 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:03:37,301 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,301 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,302 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,303 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:03:37,305 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,305 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,305 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,305 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,306 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,306 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,306 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,306 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,307 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,307 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,307 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,307 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,309 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,309 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,309 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,309 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,310 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,310 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,311 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,311 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,311 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,312 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,313 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,313 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,313 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,314 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,314 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,314 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,314 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,316 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,316 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,316 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,317 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,317 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,323 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,323 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,324 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,324 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,325 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,325 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,325 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,326 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,326 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,326 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,326 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,328 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,328 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,328 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,328 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,330 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,330 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,330 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:37,331 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,331 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,331 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,331 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,332 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,332 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:03:37,333 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:03:37,333 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,334 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,334 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,334 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,335 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,335 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,338 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,339 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,339 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,340 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,340 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,341 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,341 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,341 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,341 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,342 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,342 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,343 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,343 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,343 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,346 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,347 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,347 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:37,347 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,347 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,351 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,351 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,351 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,351 - statisticsCountryHashedController - INFO - 460 +2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,353 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,353 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,353 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,353 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,354 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,355 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,355 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,356 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,356 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,357 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,357 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,358 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,358 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,359 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,359 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,360 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,360 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,360 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,360 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,361 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,361 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,361 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,361 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,362 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,363 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,363 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,363 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,363 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,365 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,365 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,378 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,384 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,384 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,384 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,384 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,385 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,387 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,387 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,388 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,388 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,388 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,390 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,390 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,390 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,390 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,391 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,391 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,391 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,391 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,397 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,397 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,397 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,405 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,406 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,407 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,407 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,407 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,408 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,408 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,408 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,410 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,410 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,410 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,411 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,411 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,412 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,413 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,418 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,418 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,419 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,419 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,420 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,420 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,420 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,420 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,421 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,421 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,427 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,427 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:03:37,428 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,428 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,429 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,430 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:03:37,430 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,430 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,431 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,431 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,434 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,441 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,441 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,441 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,442 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,442 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,451 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,452 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,453 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,453 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,454 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,455 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,455 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,455 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,456 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,456 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:03:37,457 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,457 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,457 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,458 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,458 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,458 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,459 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,459 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,459 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,460 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,460 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,460 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,460 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:03:37,461 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,461 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,462 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,463 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,463 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,463 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,463 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,466 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,466 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:03:37,466 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,467 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,467 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,467 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,470 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,470 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,470 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,470 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:03:37,471 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,472 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,472 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,473 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,473 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:03:37,473 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:03:37,474 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,474 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,474 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,474 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,492 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,492 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,492 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,495 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,495 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,496 - statisticsCountryHashedController - INFO - 144 +2022-11-29 10:03:37,496 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,497 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,498 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,499 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,500 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,501 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,502 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,503 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,505 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,506 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,507 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,508 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,509 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,510 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,511 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,512 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,512 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:03:37,515 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,516 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,517 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,518 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,518 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,519 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,519 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,520 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,520 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,521 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,521 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,521 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,521 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,522 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,522 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,522 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,524 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,524 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,524 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,525 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,525 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,525 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,525 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,527 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,527 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,527 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,527 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,528 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,528 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,528 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,528 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,529 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,529 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,530 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,530 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,531 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,531 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,531 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,531 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,532 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,532 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,537 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,538 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,538 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,539 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,539 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,540 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,540 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,540 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,540 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,541 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,541 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,541 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:37,542 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,542 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:03:37,542 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,543 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,543 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,543 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,544 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,544 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,545 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,545 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,545 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,546 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,546 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,547 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,549 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,550 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,550 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,550 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,551 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,551 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,551 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,551 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,553 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,553 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,553 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,554 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,554 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,554 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,554 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,555 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,555 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,555 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,556 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,556 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:03:37,560 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,561 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,561 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,562 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,562 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,563 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,564 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,565 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,565 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,566 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:03:37,566 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,566 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,566 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,573 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,574 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,574 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,576 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,576 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,577 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,577 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,577 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,578 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,578 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,579 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,579 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,581 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,581 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:03:37,581 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,582 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,582 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,582 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,582 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,583 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,583 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,583 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,584 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,585 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,585 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,585 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,586 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,586 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,587 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,587 - statisticsCountryHashedController - INFO - 353 +2022-11-29 10:03:37,587 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,587 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,588 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,588 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,589 - statisticsCountryHashedController - INFO - 161 +2022-11-29 10:03:37,589 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,589 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,589 - statisticsCountryHashedController - INFO - 393 +2022-11-29 10:03:37,590 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,590 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:03:37,592 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,592 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,593 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,594 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,595 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,595 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,595 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,597 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,597 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 376 +2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,604 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,604 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,614 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,616 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,616 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,617 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,618 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,619 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,619 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,620 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,621 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,621 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,622 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,622 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,623 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,623 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,623 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,624 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,624 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,624 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,625 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,625 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,626 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,626 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,626 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,627 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,627 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,627 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,628 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,628 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,629 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,629 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,629 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,630 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,630 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,630 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,631 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,631 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,631 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,632 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,632 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:03:37,632 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,633 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,633 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,633 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,634 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,634 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,634 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,635 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,635 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,635 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,636 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,636 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,637 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,637 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,637 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,638 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,638 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,638 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:37,639 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,639 - statisticsCountryHashedController - INFO - 396 +2022-11-29 10:03:37,645 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,645 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,646 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,647 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,647 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,648 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,648 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,649 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,649 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,649 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,649 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,651 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,652 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,652 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,653 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,654 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,654 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,654 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,655 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,655 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,655 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,656 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,656 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,657 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,672 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,672 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,673 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,674 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,675 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,675 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,675 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,675 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,676 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,676 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,676 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,677 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,677 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,678 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,678 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,678 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,679 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,679 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,680 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,680 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,680 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,681 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,681 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,682 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,682 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,683 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,683 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,684 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,685 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,685 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,685 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,685 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,686 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,686 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,686 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,687 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,687 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,688 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,688 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,689 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,689 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,689 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,690 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,690 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,691 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,691 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,691 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,692 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,692 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,693 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,693 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,694 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,694 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,695 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,696 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:03:37,696 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,697 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,697 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,698 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,699 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:37,699 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,701 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,702 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,703 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,704 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,704 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,705 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,706 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,706 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,707 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,708 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,708 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,709 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,710 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,710 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,711 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,712 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,712 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,713 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,713 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:37,714 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:37,714 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,715 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,715 - statisticsCountryHashedController - INFO - 353 +2022-11-29 10:03:37,716 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,717 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:37,717 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,717 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,717 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,718 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:37,718 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,718 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,718 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,719 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,719 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,719 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,720 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,720 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,720 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,721 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,724 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,735 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,735 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,735 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:37,736 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,737 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,738 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,738 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,738 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,740 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,740 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,740 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,741 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,741 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,742 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,743 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,743 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,743 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,743 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,764 - statisticsCountryHashedController - INFO - 205 +2022-11-29 10:03:37,765 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,765 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,766 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,766 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,767 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,768 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,769 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,773 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,776 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,778 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,780 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,780 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,781 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,782 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,784 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,785 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,785 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,786 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,789 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,790 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,791 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,792 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,793 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,793 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,794 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,795 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:37,796 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,797 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,798 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:37,799 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:37,800 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:37,801 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,802 - statisticsCountryHashedController - INFO - 396 +2022-11-29 10:03:37,803 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,803 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,804 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,804 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,805 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,805 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,806 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,806 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,807 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,807 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:03:37,807 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,808 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,808 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,808 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,809 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,809 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,810 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,810 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,811 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,811 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,811 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,812 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,812 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,812 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,813 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,813 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,814 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,834 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,834 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,834 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:37,835 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,835 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,835 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,839 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,839 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:03:37,840 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,840 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,846 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 144 +2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:37,850 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,850 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,850 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,850 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,853 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,853 - statisticsCountryHashedController - INFO - 161 +2022-11-29 10:03:37,853 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,854 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,854 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,854 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,855 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,856 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,857 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,858 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,859 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,859 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,860 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,860 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,861 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,861 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,862 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,863 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,863 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:37,864 - statisticsCountryHashedController - INFO - 188 +2022-11-29 10:03:37,864 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,865 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,865 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,866 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,867 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,868 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,868 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:37,869 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,870 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,872 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,878 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,882 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,883 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,883 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,883 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,884 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,884 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,884 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,884 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,885 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,885 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,885 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,886 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,886 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,886 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,887 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,887 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,887 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,888 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,888 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,888 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,888 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,889 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,889 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,890 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,890 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,891 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,891 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,892 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,892 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,892 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,892 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,893 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,893 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:37,893 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:37,894 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,894 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,894 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,895 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,895 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,895 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,895 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,896 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,896 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,896 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,897 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,897 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,897 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,898 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,898 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,898 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,898 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,899 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,899 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,900 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,900 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,900 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,901 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,901 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,901 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,902 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,902 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,902 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,902 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,903 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,903 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,903 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,904 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,904 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,904 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,905 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,905 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,906 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,906 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,906 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,906 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:37,907 - statisticsCountryHashedController - INFO - 353 +2022-11-29 10:03:37,907 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,908 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,908 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,908 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,909 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,909 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,909 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,910 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,910 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,910 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,911 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,911 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,912 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,912 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,913 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,913 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:03:37,914 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,914 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,914 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,915 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,915 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,915 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,916 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,916 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,917 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,917 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,917 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,918 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,919 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,919 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,920 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,920 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:03:37,921 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:37,921 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,921 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,922 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:03:37,922 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,922 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:03:37,923 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,924 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,924 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,924 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,925 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,925 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,926 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,926 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,926 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,939 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,939 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,940 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,941 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,941 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,942 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,942 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:37,944 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,944 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:37,945 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,945 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,946 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,949 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,950 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,950 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,950 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,951 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,951 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,952 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,952 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,953 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,953 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:37,954 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,954 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,955 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,955 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,955 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,956 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:37,956 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,956 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,957 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:37,957 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,957 - statisticsCountryHashedController - INFO - 188 +2022-11-29 10:03:37,958 - statisticsCountryHashedController - INFO - 375 +2022-11-29 10:03:37,958 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,958 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:37,959 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,959 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,959 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,960 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,960 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,960 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,961 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,963 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,963 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,964 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,965 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,966 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,967 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,967 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,968 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,969 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,969 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,970 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:37,971 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,971 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,972 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,972 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,974 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,974 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,975 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,975 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,976 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,976 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,977 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:37,977 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,978 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,978 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,979 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,980 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,980 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,981 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,982 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:37,982 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:37,982 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,983 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,983 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,984 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,986 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,987 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,987 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:37,988 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:37,988 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:37,989 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:37,989 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:37,990 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:37,990 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,991 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:37,991 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,992 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:37,992 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:37,993 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:37,993 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:37,994 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,001 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,002 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:38,004 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,004 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,004 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,004 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,005 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,005 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,005 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,006 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,006 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,006 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,006 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,007 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,007 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,007 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,008 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,008 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,008 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:38,008 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,010 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,010 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,010 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,011 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,011 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,012 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,012 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,012 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,012 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,013 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,013 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,014 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,014 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,014 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,014 - statisticsCountryHashedController - INFO - 375 +2022-11-29 10:03:38,015 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,016 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,018 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,019 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,019 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,020 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,020 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,022 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,024 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,024 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,024 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,024 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,030 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,030 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,031 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,031 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,031 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,032 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,032 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,032 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,032 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,034 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,034 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,034 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,034 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,037 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,037 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,037 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,037 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,038 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,038 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,038 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,038 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,039 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,039 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,039 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,040 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,040 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,040 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,042 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,042 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,042 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,042 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,043 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,043 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,043 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,043 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,045 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,045 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,045 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,045 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,046 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,046 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,047 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,056 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,058 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,059 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,066 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,067 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,067 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,067 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,067 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,068 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,068 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,069 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:38,069 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,069 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,070 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,070 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,070 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,071 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,072 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,072 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,073 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,074 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,074 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,075 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,075 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,076 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,077 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,078 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:38,079 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,079 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,082 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:03:38,083 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,083 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,084 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,084 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,085 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,086 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,095 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,096 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,097 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,101 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,102 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,104 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,105 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,106 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,107 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,108 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,108 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,109 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,110 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,111 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,111 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:38,112 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,113 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,113 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,116 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,117 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,118 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,118 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,119 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,120 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,121 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,122 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,123 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,126 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,127 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,128 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,128 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,129 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,130 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,130 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,131 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,132 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,132 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,133 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,133 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,134 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,135 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,136 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,137 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,138 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,138 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,139 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,139 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,140 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,141 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,142 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,142 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,143 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,147 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,148 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,150 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,151 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,151 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,152 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,153 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,154 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,155 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,156 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,157 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,158 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,159 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,161 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,161 - statisticsCountryHashedController - INFO - 348 +2022-11-29 10:03:38,161 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,162 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,163 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,164 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,164 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,164 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,165 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,166 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,166 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,166 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,167 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,167 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,168 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,169 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,170 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,171 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,171 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,172 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,172 - statisticsCountryHashedController - INFO - 144 +2022-11-29 10:03:38,173 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,173 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:38,174 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,174 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,176 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,176 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,176 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:38,176 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,177 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,178 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,178 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,178 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,179 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,179 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,180 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,180 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,181 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,181 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,181 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,182 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,182 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,183 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,183 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,183 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,184 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,184 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,185 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:38,186 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,186 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,187 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,187 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,187 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,188 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,188 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,189 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,189 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,189 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,190 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,191 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,191 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:38,191 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,192 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,192 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,193 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,193 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,194 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,194 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,195 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,196 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,196 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,196 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,197 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,198 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,198 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,199 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,200 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:38,201 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,203 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:38,203 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,203 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,204 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,204 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,204 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,205 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,205 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,205 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,206 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,206 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,206 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,207 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,208 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,208 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,208 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,209 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,209 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,209 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,212 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,213 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,213 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,214 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,215 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,215 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,216 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,218 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,219 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,219 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,220 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,222 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,223 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,224 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,224 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:03:38,225 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,225 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,226 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,226 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,227 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,228 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,229 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,229 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,230 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,231 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,232 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,232 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,232 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,236 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,236 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,236 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,237 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,238 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,238 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,239 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,239 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,239 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,240 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,240 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,241 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,241 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,241 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,242 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,243 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,244 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,244 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,245 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,245 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,246 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,247 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,248 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,248 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,249 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,249 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,249 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,249 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,250 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,250 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,250 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,251 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,251 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,251 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,251 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,252 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,252 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,253 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,254 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,254 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,255 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,255 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,256 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,256 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,257 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:38,257 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,257 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,258 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,258 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,258 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,259 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,259 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,260 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,260 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:38,261 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,261 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,261 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,261 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,262 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,262 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,263 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,263 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,263 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,264 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,264 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,264 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,264 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,265 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,265 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,265 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,265 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,266 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,266 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,266 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:38,267 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,267 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:38,267 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,268 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,268 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:38,268 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,269 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,269 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,269 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,270 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,270 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,270 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,271 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,271 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,273 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,273 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,274 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,274 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,274 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,275 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,275 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,276 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,277 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,277 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,278 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,279 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,279 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,279 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:38,280 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,281 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,281 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,282 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,282 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,282 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,283 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,283 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,284 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,284 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,285 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,285 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,285 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,286 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,287 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,287 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,288 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,290 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,290 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,291 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,291 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,291 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,292 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,292 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,292 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,293 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,294 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,294 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,297 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,299 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,299 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,300 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,301 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,301 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,302 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,303 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,303 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,303 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,304 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,305 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,305 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,305 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,305 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,306 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,307 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,307 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,308 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,308 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,309 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,309 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,309 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,309 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,310 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:38,310 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,310 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,311 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,312 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,312 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,312 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,313 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,313 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,314 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,314 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,314 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,314 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,315 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,315 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,316 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,316 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,317 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,317 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,317 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,318 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,319 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,319 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,319 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,320 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,320 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,321 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,321 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,321 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,322 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,322 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,323 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,323 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,324 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,324 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,325 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,325 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,326 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,327 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,327 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,327 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,327 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,328 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,328 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,328 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,329 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,330 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,330 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,331 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,331 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,333 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,334 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,334 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,334 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,335 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,335 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,335 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,336 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,337 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,337 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,337 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,338 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,338 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,339 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,339 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,339 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,340 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,340 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,341 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,341 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,342 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,342 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,343 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,343 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,343 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,344 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,344 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,344 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,345 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,345 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,345 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,345 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,346 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,346 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,346 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,346 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:38,347 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,347 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,347 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:03:38,347 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,348 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,348 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,348 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,348 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,349 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,349 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,349 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,350 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,350 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,350 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:38,351 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,351 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,352 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,373 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,373 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,377 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,377 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,379 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:03:38,381 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,381 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,383 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,383 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,384 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,385 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,385 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,386 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,387 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,387 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,388 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,389 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,389 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,389 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,391 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,391 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,391 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,393 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,394 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,395 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,397 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,398 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,399 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,403 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,404 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,405 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,406 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,418 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,419 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,419 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,419 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,419 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,422 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,422 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,422 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,422 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,423 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,423 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,423 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,423 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,424 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,425 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,426 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,427 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,427 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,428 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,428 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,429 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,429 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,429 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,430 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,430 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,430 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,431 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,431 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,432 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,432 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,433 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,433 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,433 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:03:38,434 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,434 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:03:38,435 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,436 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,436 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,437 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,438 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,438 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,439 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,439 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,440 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,440 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,441 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,441 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,442 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,442 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,443 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,444 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,444 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,445 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,445 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:03:38,445 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,446 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,446 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,446 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:03:38,447 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,447 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,447 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,448 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,448 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,448 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,448 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,449 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,449 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,449 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,450 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,450 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,450 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,451 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,451 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,451 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,452 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,452 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,452 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,452 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,453 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,453 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,453 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,454 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,454 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,454 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,455 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,456 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,456 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,456 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,456 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,457 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,457 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,457 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,457 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,458 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,458 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,458 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,459 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,459 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,459 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,460 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,460 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,460 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,460 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,461 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,461 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,461 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,461 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,462 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,463 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,463 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,463 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,464 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,464 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,464 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,465 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,465 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,466 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,466 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,466 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,467 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,467 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,467 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,468 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,468 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,469 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,469 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,469 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,470 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,470 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,470 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,471 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,471 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,471 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,474 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,475 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,485 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,485 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,486 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,486 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,486 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:03:38,487 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,487 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,500 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,502 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,503 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,504 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,505 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,505 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,506 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,506 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,507 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:03:38,508 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,508 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,509 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,509 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,510 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,510 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,510 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,511 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,512 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,512 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,513 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,513 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,513 - statisticsCountryHashedController - INFO - 353 +2022-11-29 10:03:38,514 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,514 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,515 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,515 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,516 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,516 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,517 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,517 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,517 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,518 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,519 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,519 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:03:38,520 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,521 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,522 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,523 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,523 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,524 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,524 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,525 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,527 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,527 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,527 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,528 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,528 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,529 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,529 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,530 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,531 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,531 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,532 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,533 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,533 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,534 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,534 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,535 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,535 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,536 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,537 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,537 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,538 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,550 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,552 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,552 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,554 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,555 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,556 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,557 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,558 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,559 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,560 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,560 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,562 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,563 - statisticsCountryHashedController - INFO - 205 +2022-11-29 10:03:38,563 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,564 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,565 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,565 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,565 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,566 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,566 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,567 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,567 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,567 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,568 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,568 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,568 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,569 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,570 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,570 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,570 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,571 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,572 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,572 - statisticsCountryHashedController - INFO - 188 +2022-11-29 10:03:38,572 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,573 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,574 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,574 - statisticsCountryHashedController - INFO - 205 +2022-11-29 10:03:38,575 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,575 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,575 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,576 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,576 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,577 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,577 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,578 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,578 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,579 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:03:38,579 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:03:38,579 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,579 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,580 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,580 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,581 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,581 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,582 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,582 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:03:38,582 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,583 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,583 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,584 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,584 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,584 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,585 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,586 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,587 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,587 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,587 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,588 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,588 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,588 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,590 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,590 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,590 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,590 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,595 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,597 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,598 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,598 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,599 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,599 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,600 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,600 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,600 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:03:38,602 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,602 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,602 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,602 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,605 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,605 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,606 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,606 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:03:38,606 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,607 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,608 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,609 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,610 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:03:38,611 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,613 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,613 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,614 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,614 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,615 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,615 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,616 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,616 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,617 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,617 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,618 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,618 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,619 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,620 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:03:38,620 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,621 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,622 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,623 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,624 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:03:38,625 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:03:38,625 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:03:38,626 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,626 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,627 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,629 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,630 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:03:38,646 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:03:38,647 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,647 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,648 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,649 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:03:38,649 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:03:38,650 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:03:38,651 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,651 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,652 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,653 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:03:38,653 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,655 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,655 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,657 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,659 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,659 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,663 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,663 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,663 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,663 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,664 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:03:38,664 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:03:38,664 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:03:38,664 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:03:38,666 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,666 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:03:38,666 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:03:38,667 - migrateData - INFO - 3612 Country Stats created +2022-11-29 10:07:28,975 - migrateData - INFO - No new data found +2022-11-29 10:07:28,980 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:07:28,982 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:07:28,985 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:07:28,987 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:07:28,988 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:07:28,989 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:07:28,990 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:07:28,990 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:07:28,990 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:28,991 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:28,991 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:28,992 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:07:28,993 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:28,994 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:07:28,994 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:28,994 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:28,995 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:28,995 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:28,995 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:07:28,996 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:28,996 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:28,996 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:28,997 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:07:28,997 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:28,997 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:07:28,998 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:28,998 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:07:28,998 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:28,999 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:07:28,999 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:07:29,000 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:07:29,000 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:07:29,000 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:07:29,000 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:07:29,001 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:07:29,001 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:29,001 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:07:29,002 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:07:29,002 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,002 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:07:29,003 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:07:29,003 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:07:29,003 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:07:29,004 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:07:29,004 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:07:29,004 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:07:29,005 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,005 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:07:29,005 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:29,006 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,006 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:07:29,006 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:29,007 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:07:29,007 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,007 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:07:29,007 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,008 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,008 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:07:29,008 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,009 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,009 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,010 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,010 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:29,010 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,011 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,012 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,012 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,014 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,015 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:07:29,018 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,019 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,019 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,020 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,020 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,021 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:07:29,021 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,024 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:07:29,025 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,027 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:07:29,027 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,028 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,028 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,029 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:07:29,029 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:07:29,030 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:07:29,030 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:07:29,030 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:07:29,031 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:29,031 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:07:29,032 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,032 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:07:29,033 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:07:29,033 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:07:29,034 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:29,034 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,035 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:07:29,035 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,036 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,038 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,041 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,042 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:07:29,043 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:07:29,043 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:07:29,044 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,045 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,046 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:07:29,046 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:07:29,047 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:07:29,048 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,049 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:07:29,049 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:07:29,050 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:07:29,051 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:07:29,051 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:07:29,052 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,053 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,053 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,054 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,055 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:07:29,057 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:07:29,058 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:07:29,059 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:07:29,060 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:07:29,061 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:07:29,062 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:07:29,063 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:07:29,064 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:07:29,065 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,066 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:07:29,067 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,067 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:07:29,068 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:07:29,069 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:07:29,094 - migrateData - INFO - 24 Idps created +2022-11-29 10:07:29,207 - migrateData - INFO - 409 Sps created +2022-11-29 10:08:05,913 - migrateData - INFO - No new data found +2022-11-29 10:08:05,922 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:08:05,922 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:08:05,923 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:08:05,923 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:08:05,923 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:08:05,923 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:08:05,924 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:08:05,924 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:08:05,924 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,925 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,925 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,925 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:08:05,926 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,926 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:08:05,926 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,927 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,927 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,927 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,928 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:08:05,928 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,928 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,928 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,929 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:08:05,929 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,929 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:08:05,929 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,930 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:08:05,930 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,930 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:08:05,931 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:08:05,931 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:08:05,931 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:08:05,932 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:08:05,932 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:08:05,932 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:08:05,932 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,933 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:08:05,933 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:08:05,933 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,933 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:08:05,934 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:08:05,934 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:08:05,934 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:08:05,935 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:08:05,935 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:08:05,935 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:08:05,936 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,936 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:08:05,936 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,936 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,937 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:08:05,937 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,937 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:08:05,937 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,938 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:08:05,938 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,938 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,939 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:08:05,939 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,939 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,940 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,940 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,940 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,941 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,941 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,942 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,942 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,942 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,943 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:08:05,943 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,943 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,943 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,944 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,944 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,944 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:08:05,945 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,945 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:08:05,945 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,945 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:08:05,946 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,946 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,946 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,947 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:08:05,947 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:08:05,947 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:08:05,948 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:08:05,948 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:08:05,948 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,949 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:08:05,949 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,949 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:08:05,950 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:08:05,951 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:08:05,951 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,952 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,952 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:08:05,952 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,953 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,953 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,953 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,953 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:08:05,953 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:08:05,954 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:08:05,954 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,954 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,960 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:08:05,970 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:08:05,970 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:08:05,973 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,974 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:08:05,974 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:08:05,975 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:08:05,975 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:08:05,975 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:08:05,976 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,976 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,977 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,977 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,977 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:08:05,978 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:08:05,978 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:08:05,979 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:08:05,979 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:08:05,979 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:08:05,980 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:08:05,980 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:08:05,981 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:08:05,981 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,981 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:08:05,981 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,984 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:08:05,985 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:08:05,985 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:08:06,016 - migrateData - INFO - 24 Idps created +2022-11-29 10:08:06,097 - migrateData - INFO - 409 Sps created +2022-11-29 10:08:06,108 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,108 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,109 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,109 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,110 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,110 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,110 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:06,111 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,111 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,111 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,111 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,114 - statisticsCountryHashedController - INFO - 418 +2022-11-29 10:08:06,114 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,114 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,114 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,115 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:06,116 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,116 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,116 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,117 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,117 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,118 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,118 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,119 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,119 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,119 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,120 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,120 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 430 +2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,122 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,122 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,123 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,123 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,123 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,124 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,124 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,124 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,125 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,125 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,126 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,127 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,128 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,128 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,128 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,129 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,129 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,130 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,130 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,131 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,131 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,132 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,132 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,133 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,133 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,134 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,135 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,135 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,135 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,136 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,136 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,137 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,137 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,137 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,138 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,139 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,139 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,140 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,140 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,141 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,141 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:08:06,142 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,143 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,145 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,145 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,146 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,146 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:06,146 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,147 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,147 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,147 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,147 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,148 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,148 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,148 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,149 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,149 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,149 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,150 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,150 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,150 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,150 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,151 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,151 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,151 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,152 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,152 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,152 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,153 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:06,153 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,153 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,154 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,154 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:06,154 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,155 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,155 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,156 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,157 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,158 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,158 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,158 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,159 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,160 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,160 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,161 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,161 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:08:06,162 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,162 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,162 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,163 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:06,163 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,163 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,164 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,164 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,165 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,166 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:06,166 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,167 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,167 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,167 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,168 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,168 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,169 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:06,169 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,169 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:06,174 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,175 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,175 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,176 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,177 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,177 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:06,177 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,178 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,179 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,179 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,179 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:08:06,179 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,180 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,180 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,180 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:08:06,180 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,181 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,181 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,181 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,181 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,183 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,183 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,183 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:06,183 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,184 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,184 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,184 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,184 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,185 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,185 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,185 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,186 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,186 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,186 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,187 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,187 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,187 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,187 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,188 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,188 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,188 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,188 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,190 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,191 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,191 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,191 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,192 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,192 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,192 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,192 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,193 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:06,193 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,193 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,193 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,194 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,194 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,194 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,195 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,195 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:08:06,195 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,195 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,196 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,196 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,196 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:08:06,196 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,197 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,197 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,197 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,198 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,198 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:08:06,198 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,198 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,199 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,199 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:06,208 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,210 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,215 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,218 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,221 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,222 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,222 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,223 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,223 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,223 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,224 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,224 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,225 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,225 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:08:06,225 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,225 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,226 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,226 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,227 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,227 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,228 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,228 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,229 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,229 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,230 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,230 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:08:06,230 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,230 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,231 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,231 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,232 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,232 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,233 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:08:06,233 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,234 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,234 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,234 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,235 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,235 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,235 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,236 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,236 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,237 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,237 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:06,237 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,238 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:08:06,238 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,239 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,239 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,239 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,240 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:08:06,240 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,240 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,241 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,241 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,241 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,242 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,242 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,242 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,242 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,243 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,243 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,244 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,244 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,248 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,248 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,249 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,250 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,250 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,250 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:08:06,251 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,251 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,252 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,252 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,252 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,252 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,253 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,253 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,253 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,254 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,254 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,254 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:08:06,255 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,255 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,256 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,256 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,256 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,257 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,257 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:08:06,258 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,258 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,258 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,259 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,259 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,259 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,260 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,260 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,260 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,260 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,261 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,261 - statisticsCountryHashedController - INFO - 451 +2022-11-29 10:08:06,262 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,262 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,262 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,262 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,263 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,263 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,263 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,264 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,264 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:08:06,264 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,265 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,265 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,266 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,266 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,266 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,268 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,268 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,268 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,269 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,269 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,270 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,270 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,271 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,271 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,271 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,272 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,272 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,273 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,273 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:06,273 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,274 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,274 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,274 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,275 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,275 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,275 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,276 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,276 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,276 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,277 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:06,277 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,277 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,277 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,278 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,278 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,278 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,278 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,279 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,279 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,279 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,280 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,280 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,280 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:06,281 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,281 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,281 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,282 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,282 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,282 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,282 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:06,283 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,283 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,283 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,284 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,284 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:06,284 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,284 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,285 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,285 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,285 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,286 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,286 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,287 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,287 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,287 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,287 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:06,288 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,288 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,289 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,289 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,289 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,290 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,290 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,290 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,291 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,291 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,292 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,292 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,292 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,292 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,293 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,293 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,293 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,294 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,294 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:08:06,294 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,295 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,295 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,295 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 17 +2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,298 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,298 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,299 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,299 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,299 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,299 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,300 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,300 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:08:06,301 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,301 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,302 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,302 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,302 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,303 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,303 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,303 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,306 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,307 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,308 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,308 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,308 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,311 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,312 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:08:06,313 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,313 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,313 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,314 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,314 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,315 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,315 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,315 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:06,315 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,317 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,318 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,318 - statisticsCountryHashedController - INFO - 243 +2022-11-29 10:08:06,319 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,319 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,320 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,320 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,320 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,321 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,321 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,321 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,322 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,322 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,323 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,323 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,323 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,323 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,324 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,324 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,324 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,324 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,325 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,326 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,326 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,326 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,326 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,327 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,327 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,327 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,328 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,328 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,328 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,329 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,329 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,329 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,330 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,330 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,330 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,330 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,331 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,331 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,332 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,332 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,333 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,333 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,334 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,334 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,335 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,335 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,335 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,336 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,336 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,337 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,337 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,338 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,338 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,338 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,338 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,339 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,339 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,339 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,340 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,340 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,340 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,340 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,341 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,342 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,343 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,344 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:06,345 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,346 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,347 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,348 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,349 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,350 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,351 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,351 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,352 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,353 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,354 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,355 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,356 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,357 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,358 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,358 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,359 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,359 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,379 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,380 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,380 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,381 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:06,382 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,382 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,383 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,384 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,385 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,386 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,387 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,389 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,390 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,392 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,393 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,394 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,395 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,396 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:08:06,397 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,399 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,400 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,401 - statisticsCountryHashedController - INFO - 447 +2022-11-29 10:08:06,402 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,403 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,405 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,406 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,407 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,409 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,410 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,412 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,413 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,414 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,415 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,416 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,417 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,418 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,419 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,419 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:06,420 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,422 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,424 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,424 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,426 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,427 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,428 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,429 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,430 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,431 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,439 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,439 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,440 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,440 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,440 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,441 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,441 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:06,441 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,441 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,442 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,442 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,442 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,443 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,443 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,443 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:06,443 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,444 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,444 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,444 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,445 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,445 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,445 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,446 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,446 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,446 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,446 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,447 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,447 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:06,447 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,448 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,448 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,448 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,449 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:06,449 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,449 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:06,450 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,450 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:06,450 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,451 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,451 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,451 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,451 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,452 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,452 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,452 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,453 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,453 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,453 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,454 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,454 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,454 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,455 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,455 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,455 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,456 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,456 - statisticsCountryHashedController - INFO - 460 +2022-11-29 10:08:06,456 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,456 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,457 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,457 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,458 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,458 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,458 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,459 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,459 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,460 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,461 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,461 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,462 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,463 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,463 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,463 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,464 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,465 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,465 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,465 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,466 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,466 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,467 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,467 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,467 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,468 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,468 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,469 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,469 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,469 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,470 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,470 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,470 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,471 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,471 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,472 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,475 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,475 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,476 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,476 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,476 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,477 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,477 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,477 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,478 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,478 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,479 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,479 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,480 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,480 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,481 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,481 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:06,481 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,482 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,482 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,482 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,483 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,483 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,484 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,484 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,484 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,485 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,486 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,486 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,486 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,487 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,487 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,488 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,488 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,489 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,489 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,490 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,490 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,491 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,491 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,492 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,492 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,492 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,493 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,493 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,494 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,494 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,494 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,495 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,495 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,496 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,496 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,497 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,497 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,498 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,498 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,499 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,499 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,500 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,501 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,501 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,501 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,502 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,502 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,503 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,506 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,507 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,507 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,507 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,508 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,508 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,508 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,510 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,510 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,510 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,511 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,511 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,511 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,512 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,512 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:06,513 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,513 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,513 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,523 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,523 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,527 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,527 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,528 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,528 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,529 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,529 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,529 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,530 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,530 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,531 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,531 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,531 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,532 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,532 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,533 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,533 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,534 - statisticsCountryHashedController - INFO - 14 +2022-11-29 10:08:06,535 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,536 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,538 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,539 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,541 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,541 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,544 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:06,544 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,544 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:06,547 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,554 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,554 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,554 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,554 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,558 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,558 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,558 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:06,558 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,566 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,566 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,567 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,567 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,567 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,567 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,568 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,568 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,568 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,570 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,573 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,573 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,573 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,573 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,574 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,574 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,574 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,574 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,575 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,575 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,576 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,577 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,578 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,579 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,580 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,581 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,582 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,582 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,583 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,584 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,585 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,593 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,593 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:06,594 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,595 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,596 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,596 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:06,599 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,599 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,599 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,600 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,601 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,602 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,603 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,603 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,604 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,605 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:06,605 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,606 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,607 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,608 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,608 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,609 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,610 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,610 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,611 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,612 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,613 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,613 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,613 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,616 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,617 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,617 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,618 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,618 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,618 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,619 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,619 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,619 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:06,620 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,620 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:06,620 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,620 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:06,621 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,621 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,621 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,622 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,622 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,622 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,623 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,623 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,623 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,625 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,625 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,626 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,626 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,626 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,626 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,627 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,627 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,627 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,628 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,628 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,628 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,629 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,629 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,630 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,630 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,631 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,631 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,631 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,632 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,632 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,633 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,633 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,633 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,633 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,634 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,634 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,638 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,639 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,640 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,641 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,642 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:06,643 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,644 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,645 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,646 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,646 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,647 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,648 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,649 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,650 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,651 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,652 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,653 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,653 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,654 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,655 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,656 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,656 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,657 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,657 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,658 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,658 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,658 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,659 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,660 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,661 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,661 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,661 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,662 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,662 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,662 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,663 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,665 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,665 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,665 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,666 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,666 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,666 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,666 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,667 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,667 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,668 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,668 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,668 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,669 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,669 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,669 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,670 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,670 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,670 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,670 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,671 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,671 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,671 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,672 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,672 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,673 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,674 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,674 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,685 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,686 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,686 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,686 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,687 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,687 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,688 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,688 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,688 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,689 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,694 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,694 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,694 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,695 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,695 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,695 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,697 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,697 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,697 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,697 - statisticsCountryHashedController - INFO - 4 +2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,700 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,700 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,700 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:08:06,700 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,701 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,701 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,701 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,702 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,710 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,711 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,711 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,712 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,712 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:08:06,712 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,712 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,713 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,713 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:06,713 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,713 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,714 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,714 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,714 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,714 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,715 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,715 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,715 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,716 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:06,716 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,716 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,716 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,717 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,717 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,717 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,717 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,718 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,718 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,718 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,718 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,719 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,719 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,719 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,719 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,720 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,720 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,720 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,723 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,724 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,724 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,724 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:06,727 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,727 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:06,727 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,727 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,728 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,728 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,728 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,728 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,731 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:08:06,731 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,731 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,731 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,732 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,732 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,732 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,733 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,733 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,735 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,735 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,736 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,739 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,739 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,740 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,740 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,741 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,741 - statisticsCountryHashedController - INFO - 4 +2022-11-29 10:08:06,742 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,742 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,743 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,743 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,743 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,743 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,744 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,744 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,744 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,744 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,745 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:06,745 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,745 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,746 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,746 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,746 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,746 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,747 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,747 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,747 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:06,747 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,748 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,748 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,748 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,748 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:08:06,749 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,749 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,750 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,750 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,750 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,751 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,751 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,752 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,752 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,753 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,753 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,754 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,754 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,755 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,755 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,755 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,755 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,756 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,756 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,756 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,756 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,758 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,758 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:08:06,758 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,758 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,759 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,759 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,759 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,759 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,760 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,760 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,760 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:06,760 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,762 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,762 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,762 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,766 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,767 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,767 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,768 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,768 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,768 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,769 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,769 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,769 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,769 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,770 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,770 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,770 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,770 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,771 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,771 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,771 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,771 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,772 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,772 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,772 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,772 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,773 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,773 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,773 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,774 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,774 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,774 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,774 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:08:06,775 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,775 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,775 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,776 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,776 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,776 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,777 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,777 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,777 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,778 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,778 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,778 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,778 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,779 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,779 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,779 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,779 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,780 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,780 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,780 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,780 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,781 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,781 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,783 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:06,783 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,784 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,786 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,786 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,786 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,787 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,787 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,788 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,788 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:08:06,789 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,789 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:06,790 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,791 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,791 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,792 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,802 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,812 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,813 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,815 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:08:06,816 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,817 - statisticsCountryHashedController - INFO - 374 +2022-11-29 10:08:06,819 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,820 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,821 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,823 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,825 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,826 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,828 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,829 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,831 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,832 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:06,834 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,836 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,842 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,844 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,845 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,846 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,848 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,849 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,850 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,850 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,851 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,851 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,852 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,853 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,853 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:08:06,853 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,853 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,854 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,854 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,854 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,855 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,856 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,856 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,857 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:06,857 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,857 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,857 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,858 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,858 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,859 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,859 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,859 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,860 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,860 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,861 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,861 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:06,861 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,861 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,862 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,862 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,863 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,863 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,863 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,864 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,864 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,864 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,865 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,865 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,866 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,866 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,867 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,868 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,868 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:06,868 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,869 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,869 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,869 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,869 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,870 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,870 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,870 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,871 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,872 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,873 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,874 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,874 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,875 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,875 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,876 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,877 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,878 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,878 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,879 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,880 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,881 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,882 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,882 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,883 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,883 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,884 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,885 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:08:06,885 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,885 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,886 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,887 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,887 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,888 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:06,888 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:06,889 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,889 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,889 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,890 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,890 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,892 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,892 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,892 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,893 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,893 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:06,894 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,894 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:06,895 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,895 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,896 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,896 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,896 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,897 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,897 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,898 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,898 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,899 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,899 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,900 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,900 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,900 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,901 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,901 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,901 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,902 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,902 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,902 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,903 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,903 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,903 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,904 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,904 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,905 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,905 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,905 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,906 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,906 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,906 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,907 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,907 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,909 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,910 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,911 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:06,912 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,912 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,913 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,914 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:06,914 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,915 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,915 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,916 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,916 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,917 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,917 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,917 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,918 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,919 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,920 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,920 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,921 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,921 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,922 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,922 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,923 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,924 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,924 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,924 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,925 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:06,925 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,925 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,925 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,926 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,926 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,927 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,928 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,928 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,929 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,929 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,930 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,930 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,931 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,932 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:06,932 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,932 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,933 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,934 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,934 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,935 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,935 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,936 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,936 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,937 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,938 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,938 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,938 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:06,939 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,939 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,939 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,940 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,940 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:06,941 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,941 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,942 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,942 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,942 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,943 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,943 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:06,946 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,947 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:06,947 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,948 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:06,948 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,948 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,950 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,950 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,950 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,950 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,951 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,951 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,952 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,952 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,952 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:06,952 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,953 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,953 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,953 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,953 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,954 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,954 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,954 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,954 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,955 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:06,955 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,955 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,955 - statisticsCountryHashedController - INFO - 144 +2022-11-29 10:08:06,956 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,956 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,957 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,957 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:06,957 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,958 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,958 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,959 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,959 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,959 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,960 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,960 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,960 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,960 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,961 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,961 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,966 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,966 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,966 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,973 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,974 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,974 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,975 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,976 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:06,976 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,977 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,977 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,978 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:06,978 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,979 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:06,979 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:06,979 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,980 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:06,980 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:06,981 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:06,982 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,983 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:06,984 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:06,985 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,986 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:06,987 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:06,988 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:06,989 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,002 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,003 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,004 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,005 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:07,005 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,006 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,006 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:07,007 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,007 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,008 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,009 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,009 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,010 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,011 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:07,011 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,012 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,012 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,013 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,014 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,015 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,015 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,016 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,017 - statisticsCountryHashedController - INFO - 4 +2022-11-29 10:08:07,017 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,018 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,018 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,019 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,019 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,020 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,020 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,021 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,021 - statisticsCountryHashedController - INFO - 4 +2022-11-29 10:08:07,022 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,023 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,023 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,024 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,024 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,025 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,026 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,039 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,043 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,044 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,044 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:07,045 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,045 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:07,045 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,046 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,046 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,047 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,047 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,048 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:07,048 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,049 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,049 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,049 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:07,049 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,050 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,050 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,050 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,051 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:07,051 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,051 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,051 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,052 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,052 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,053 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,053 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,053 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,054 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,054 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,054 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,054 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,055 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:07,055 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,056 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,057 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,057 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,066 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,067 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:07,067 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,069 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,069 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,069 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,070 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,071 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,072 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,072 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,073 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,074 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,074 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,074 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,075 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:07,075 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,076 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:07,076 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,077 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,077 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,078 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:08:07,080 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,080 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:07,081 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,081 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,082 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,082 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,083 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,083 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,084 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,084 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,085 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,085 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:07,086 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:07,086 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,087 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,089 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,090 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,091 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:07,091 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,094 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,100 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,100 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,101 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,101 - statisticsCountryHashedController - INFO - 380 +2022-11-29 10:08:07,101 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,102 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,102 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:07,102 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:07,103 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:07,103 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,103 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,103 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:07,104 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,104 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,104 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,104 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,105 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,105 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,105 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:07,105 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:07,106 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,106 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,106 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:07,106 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,107 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,107 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,107 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,107 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:07,108 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,108 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,108 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,108 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,110 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,110 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,110 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,110 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,111 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,111 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:07,111 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,111 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,112 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,112 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,112 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,112 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:07,113 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,113 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:07,113 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,113 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:08:07,114 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,114 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,114 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,114 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,115 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,115 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,115 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,116 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,116 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,116 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,116 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,118 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:07,118 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,118 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,119 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:07,119 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,119 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,119 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,120 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:07,120 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,120 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,121 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:07,121 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:07,121 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,121 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,122 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,122 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,122 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,123 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,123 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,123 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,123 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,124 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,124 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,124 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:07,125 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,125 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,125 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,125 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:07,126 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,126 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,126 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,126 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:07,127 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,127 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,127 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,127 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:07,128 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,128 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,128 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,128 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,129 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:07,129 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,129 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,129 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,130 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,130 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,130 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,131 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,131 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,131 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,132 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,132 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,132 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,132 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,134 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,134 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,134 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,135 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,135 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,135 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,136 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:08:07,136 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,136 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,136 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,137 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,137 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,137 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,138 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,138 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:07,138 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,138 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,146 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,146 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,146 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,146 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,147 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,147 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,147 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,149 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,149 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,149 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,150 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,150 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,150 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,151 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,151 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,151 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,151 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,152 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,152 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,152 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,152 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,153 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,153 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,153 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,154 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:08:07,154 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,158 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,159 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,159 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,160 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,160 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,160 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:07,160 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,161 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:07,161 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,161 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:07,162 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,162 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,163 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,163 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,164 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,164 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,165 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,165 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,165 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,166 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,166 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:07,166 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,167 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,167 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,167 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,167 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,168 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,168 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,168 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,169 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,169 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,169 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,170 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,170 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,170 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 353 +2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,173 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,174 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,175 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,175 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,176 - statisticsCountryHashedController - INFO - 161 +2022-11-29 10:08:07,176 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,176 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,176 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,177 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,177 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,177 - statisticsCountryHashedController - INFO - 393 +2022-11-29 10:08:07,177 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,178 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,178 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,178 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,179 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,179 - statisticsCountryHashedController - INFO - 350 +2022-11-29 10:08:07,179 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,180 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,180 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:07,180 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,181 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,181 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,181 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,182 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,182 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:07,182 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,183 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,183 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,183 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,183 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,184 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,184 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,184 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,184 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,185 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,185 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,185 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,186 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,186 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,187 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,187 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,187 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,187 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,189 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,189 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,189 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:07,190 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:07,190 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,190 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,190 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,191 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:07,191 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,191 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,192 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,192 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,192 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,192 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 376 +2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,196 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,196 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,196 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,196 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,198 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,198 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,198 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,198 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,199 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,199 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:07,199 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 14 +2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,204 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,204 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,204 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,204 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,206 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:07,214 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,214 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,215 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,215 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,217 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,217 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,217 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,217 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,219 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,220 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,222 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,222 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,223 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,224 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,224 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,224 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,224 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,233 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,233 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,233 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,233 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,234 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,234 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,234 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,234 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,237 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,237 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,237 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,237 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,241 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,241 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,241 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,241 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 13 +2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,248 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,254 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:07,255 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,256 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,257 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,257 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,258 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:07,259 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,259 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,260 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,260 - statisticsCountryHashedController - INFO - 396 +2022-11-29 10:08:07,261 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:07,262 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,264 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:07,265 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,266 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,267 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:07,270 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,270 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,271 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,271 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,272 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:07,272 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,273 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,273 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,274 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,274 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,275 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,275 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:07,276 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:07,276 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,277 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,277 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,278 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,278 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,279 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,279 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,280 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,280 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,281 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,281 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,282 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,282 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,282 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,282 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,290 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,290 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,290 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,889 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,890 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,891 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,891 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,891 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,892 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,892 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,892 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,893 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,893 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,893 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,893 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,894 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:07,894 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,894 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,895 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,895 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,895 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,895 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,896 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,896 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:07,897 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,898 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,898 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,898 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,899 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,900 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,900 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,901 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,901 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,901 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:07,902 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:07,902 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,902 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,904 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,904 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,904 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,905 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:07,905 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,905 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,907 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:07,907 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,907 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,907 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,908 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:07,908 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,908 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,909 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,909 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,909 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,909 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,910 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,910 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,910 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:07,910 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,911 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,911 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,911 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,911 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,913 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,913 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,913 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,914 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,914 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,914 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:07,915 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,916 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:07,916 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,917 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,917 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:07,918 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,918 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:07,919 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:07,919 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,919 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,920 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,920 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,920 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,921 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:08:07,921 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,921 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,921 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,922 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,922 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,923 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,923 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,923 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,923 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,924 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,924 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:07,924 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:07,924 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,925 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:07,925 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,926 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,926 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:07,927 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,927 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,927 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,929 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,929 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,929 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,929 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,930 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,930 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,930 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,934 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:07,934 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,935 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,935 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,936 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,936 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,937 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,937 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,938 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,941 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,947 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,947 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,948 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,948 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,949 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,950 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,951 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,952 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,952 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,953 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,953 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:07,954 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:07,954 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,955 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:07,955 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:07,955 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,956 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,956 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:07,957 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,957 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:07,957 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,958 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,959 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,959 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,959 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,960 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:07,960 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,960 - statisticsCountryHashedController - INFO - 353 +2022-11-29 10:08:07,961 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,961 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,961 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,962 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,962 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,963 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:07,963 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,964 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,964 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,965 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,965 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,965 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:07,966 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,966 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:07,966 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,967 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,967 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,967 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,967 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,968 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,968 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,968 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,969 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,969 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,970 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:07,970 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,970 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,971 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,972 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:07,972 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,972 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,972 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,974 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,974 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,974 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,976 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,976 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,976 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,985 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,986 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,987 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,987 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,988 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,989 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:07,989 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:07,990 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,990 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:07,990 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,991 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,991 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,992 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:07,992 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:07,993 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:07,993 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,993 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,994 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,994 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:07,994 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:07,995 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:07,995 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,995 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,996 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:07,996 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:07,996 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:07,997 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:07,997 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:07,997 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:07,998 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:07,998 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,999 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:07,999 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:07,999 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,000 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,000 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,000 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,001 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,001 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,002 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,002 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,003 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,003 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,003 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,004 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,004 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,005 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,006 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,006 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:08,007 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,007 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:08,008 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,008 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:08,009 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:08,009 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,010 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,010 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,011 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,011 - statisticsCountryHashedController - INFO - 205 +2022-11-29 10:08:08,012 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,012 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,013 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,013 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,014 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,014 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,015 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,015 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,016 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,016 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,017 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,017 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,018 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,018 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,019 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,019 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,020 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,021 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,021 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,022 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,022 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,023 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,024 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,024 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,025 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,025 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,026 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,026 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,026 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,027 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,027 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,028 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:08,028 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,029 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,029 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,031 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,032 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,046 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,047 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,048 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:08,048 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,049 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,049 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,049 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,050 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,050 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,051 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,051 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,052 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,052 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,053 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,053 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,054 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,054 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,054 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,055 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,055 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,056 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,056 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,057 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,057 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,057 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,058 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,058 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,059 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,059 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:08,060 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,061 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,062 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,066 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,067 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,068 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,068 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,068 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,069 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,069 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,070 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,070 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,070 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,071 - statisticsCountryHashedController - INFO - 396 +2022-11-29 10:08:08,071 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,072 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,072 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,072 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,073 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,074 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:08,074 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,075 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,075 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,076 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,077 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,081 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,082 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,083 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,083 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,083 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,084 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,084 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,085 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,085 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,086 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,086 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,087 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,087 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:08:08,087 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,088 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,089 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,090 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,090 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,090 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,091 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,092 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,093 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,093 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,094 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,096 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,097 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,098 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,098 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,099 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,100 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,100 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,100 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,101 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,101 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,102 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,102 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,103 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,103 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,104 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,104 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,105 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,105 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,106 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,107 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,108 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,108 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,109 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,110 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,110 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,111 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,111 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,112 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,112 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,113 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,113 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,114 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,114 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,115 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,116 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,116 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,117 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,117 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,118 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,118 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:08,119 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,119 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,120 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,120 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,120 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,121 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,121 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,122 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,122 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,123 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,124 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,125 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,125 - statisticsCountryHashedController - INFO - 368 +2022-11-29 10:08:08,125 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,126 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,127 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,128 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,128 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,129 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,130 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,130 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,131 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,131 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,132 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,146 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,147 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,148 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,149 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:08,150 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,152 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,153 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,154 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,155 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,156 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,157 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,159 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,160 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,161 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,162 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,163 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,164 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,165 - statisticsCountryHashedController - INFO - 144 +2022-11-29 10:08:08,166 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,167 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,168 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,169 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,171 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,172 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,173 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,174 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,175 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,176 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,177 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,178 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,180 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:08,181 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,182 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,183 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,185 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,186 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,187 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,189 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,190 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,191 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,192 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,193 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,194 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,195 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,195 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,199 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,199 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,200 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,201 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,201 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,202 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,203 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,203 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,204 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:08,205 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,205 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,205 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,206 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,206 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,206 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,206 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:08,207 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,207 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,207 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,208 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,209 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,209 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,209 - statisticsCountryHashedController - INFO - 161 +2022-11-29 10:08:08,210 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,215 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,216 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,216 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,217 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,217 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:08,218 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,219 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,219 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,220 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,221 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,221 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,221 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,222 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,222 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,223 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,223 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,224 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,225 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,225 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,226 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,227 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,228 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,229 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,230 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,230 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,231 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,232 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,232 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,233 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,233 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,234 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:08,234 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,235 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,236 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,236 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,237 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,238 - statisticsCountryHashedController - INFO - 188 +2022-11-29 10:08:08,238 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,239 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,240 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,240 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,241 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,242 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,243 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,243 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,244 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,244 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,245 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,246 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,246 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,247 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:08,247 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,248 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,248 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,249 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,249 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,250 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,250 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,251 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,251 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:08,251 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,252 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,252 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,252 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,253 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,253 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,254 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,254 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,254 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,255 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,255 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,256 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,256 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,257 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,257 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,257 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,258 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,258 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,258 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,259 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,259 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,260 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,260 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,262 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,262 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,262 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,263 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,263 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,263 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,263 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,264 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,264 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,264 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,264 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,265 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,266 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,266 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,267 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,267 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,268 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,268 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,268 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,268 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,270 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,271 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,271 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,271 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:08,272 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,272 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,272 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,273 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,273 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,274 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,274 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,274 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,274 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,275 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,275 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,275 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,275 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,277 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,277 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,278 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,278 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,279 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,279 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,279 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,280 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,280 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:08,280 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,281 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:08,281 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,281 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,282 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,282 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,283 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,283 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,284 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,284 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,285 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,285 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,286 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,287 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,287 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,288 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,288 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,289 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,290 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,290 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,291 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,291 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,292 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,293 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,293 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,294 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,294 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,294 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,295 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,295 - statisticsCountryHashedController - INFO - 4 +2022-11-29 10:08:08,295 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,295 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,296 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,296 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,296 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,297 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,297 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,297 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,297 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,303 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,303 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,304 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,304 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,305 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,305 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,305 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,306 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,306 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,307 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,307 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,307 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,308 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,308 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,310 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,310 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,311 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,311 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,328 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,329 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,329 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,330 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,330 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,330 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,331 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,331 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,331 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,331 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,332 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,332 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,333 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,333 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,333 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,336 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,337 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,338 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,338 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,338 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,339 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,339 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,339 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,340 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,340 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,340 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,340 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,341 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,341 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,341 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,341 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 353 +2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,343 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,343 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,344 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,344 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,345 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,345 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,346 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,347 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,348 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,348 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,349 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,350 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,351 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,354 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,357 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,357 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,357 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,358 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,358 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,358 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,359 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,359 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:08,359 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,360 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,362 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,362 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,363 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,364 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:08,364 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,365 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,366 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,366 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,367 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,367 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,367 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,368 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,369 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,369 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,370 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,372 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,373 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,373 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,374 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,375 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,375 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,376 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,376 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,377 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:08:08,377 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,378 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,378 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,379 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,379 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,380 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,380 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,381 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,381 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,382 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,383 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:08,383 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,384 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,385 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,386 - statisticsCountryHashedController - INFO - 10 +2022-11-29 10:08:08,387 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,387 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,388 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,389 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,390 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,390 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,391 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,392 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,392 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,393 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,394 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,394 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,395 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,396 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,396 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,397 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,397 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,398 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,398 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,399 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,399 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,399 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:08:08,400 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,400 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,401 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,401 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,401 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,402 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,402 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,403 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,403 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,404 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:08:08,404 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,404 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,405 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,405 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:08:08,405 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,406 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,407 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,407 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,408 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,409 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,410 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,410 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,411 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,411 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,412 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,412 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,413 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,413 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,413 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,413 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,422 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,422 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,423 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,424 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,424 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,425 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,426 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,426 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,427 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,427 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,428 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,428 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,429 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,429 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,430 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,431 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,431 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,432 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,433 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,433 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,434 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,435 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,435 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,436 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,437 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,438 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,438 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,439 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,440 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,440 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:08,441 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,441 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,442 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,443 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,443 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,445 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,445 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,446 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,446 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,447 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,447 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,447 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,447 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,448 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,448 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,448 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,448 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,449 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,449 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,449 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,449 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,450 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,450 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,450 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,450 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,451 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,451 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,451 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,452 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,452 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,452 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,452 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,453 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,453 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:08,453 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:08,453 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:08,454 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,454 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,454 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,454 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,456 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,456 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,456 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,456 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,457 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,457 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:08,457 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,457 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,458 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,458 - statisticsCountryHashedController - INFO - 188 +2022-11-29 10:08:08,459 - statisticsCountryHashedController - INFO - 375 +2022-11-29 10:08:08,459 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,459 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,460 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,460 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,460 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:08,460 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,461 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,461 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,463 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,470 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,471 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,472 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,472 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,472 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,473 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,473 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,474 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,485 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,485 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,490 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,490 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,491 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,491 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,494 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,495 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,495 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,496 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,496 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,497 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,497 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,497 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,498 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,498 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,499 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,499 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,500 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,500 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,500 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,501 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,502 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,502 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,502 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,503 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,504 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,505 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,506 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,507 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,508 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,508 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,509 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,513 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,513 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,526 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,529 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,536 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,536 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,537 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,538 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,539 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,539 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,540 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,540 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,542 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,543 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,544 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,544 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,545 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,546 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,547 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,547 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,548 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,549 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,549 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,550 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,551 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,552 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,553 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,553 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,553 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,554 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,554 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,555 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,555 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,556 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,557 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,558 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,558 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,559 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,559 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,560 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,560 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,561 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,562 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,563 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,563 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,563 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,564 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,564 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,564 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,565 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,565 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,565 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:08,566 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:08,566 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,566 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,567 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:08,567 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:08,568 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,568 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,569 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,569 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,569 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,570 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,570 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,570 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,571 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,572 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,573 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,574 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,575 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,576 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,576 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,577 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,577 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:08,578 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,578 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,579 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,579 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,579 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,580 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,580 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,580 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,581 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,581 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,582 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,582 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,583 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,583 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:08,584 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,584 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,585 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,585 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,586 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:08,586 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:08,586 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,587 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,587 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,588 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,588 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,589 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,589 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,589 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,589 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,592 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,592 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,592 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,592 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:08,593 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,593 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,593 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,593 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:08,603 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:08,604 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,605 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,605 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,606 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,606 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,607 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,607 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,607 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,607 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,608 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,608 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,609 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,610 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,610 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,611 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,612 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,613 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,613 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,614 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,615 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,616 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,616 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,617 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,617 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,618 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,619 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,619 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,620 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,620 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,621 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,622 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,623 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,623 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,624 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,624 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,625 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,626 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,626 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,627 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,627 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,628 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,628 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,628 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,629 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,629 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,630 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:08,630 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,631 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,631 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,632 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,633 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,634 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,634 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,635 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,635 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,636 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,636 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,637 - statisticsCountryHashedController - INFO - 375 +2022-11-29 10:08:08,638 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,638 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,639 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,639 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,639 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,639 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,640 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,640 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,642 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,642 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,643 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,644 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,644 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,644 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,645 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,645 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,646 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,646 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,647 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,647 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,648 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,649 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:08,649 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,650 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,650 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,651 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,651 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,651 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,652 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,652 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,654 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,655 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,656 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,657 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,658 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,659 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,660 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,660 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,661 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,661 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,662 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,662 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:08:08,663 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,673 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,674 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,674 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,674 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:08,674 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,675 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,675 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,675 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,676 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,676 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,677 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,677 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,677 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,678 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,678 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,679 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,679 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,680 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,680 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,681 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,681 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,682 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,683 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,683 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,683 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,683 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,684 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,684 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,684 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,685 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:08,685 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,685 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,686 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,691 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,695 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,702 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,720 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,722 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,723 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,725 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,730 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,731 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,732 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,732 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,732 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,733 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,733 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,733 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,734 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,734 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,734 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,736 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,738 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,739 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,740 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,741 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:08,741 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,742 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,743 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,743 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,743 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,744 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,745 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,745 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,746 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,746 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,747 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,747 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,748 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,748 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,749 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,749 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,750 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,750 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,751 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,752 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,752 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,753 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,754 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,754 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,755 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,755 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,756 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,757 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,759 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,760 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,761 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,761 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,762 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,762 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,762 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,763 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,763 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,764 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,764 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,765 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:08,765 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,766 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,766 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,767 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,767 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,768 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,769 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,769 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,770 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,770 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,771 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,772 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,772 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,772 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,773 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,773 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,773 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,773 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,774 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:08,774 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,774 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,775 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,775 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,775 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,776 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,776 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:08,776 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,777 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,777 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,778 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,778 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,779 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:08,780 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,780 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,781 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,782 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,782 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,783 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,784 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,784 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,785 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,785 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,785 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,786 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,786 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,787 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,787 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,787 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,788 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,788 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,788 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,789 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,789 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,789 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,789 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,790 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,791 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,791 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,791 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,792 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,792 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,792 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,793 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,793 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,794 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,795 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,795 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,795 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,797 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,798 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,798 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,799 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,799 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,799 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,800 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,800 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,800 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,800 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,802 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,803 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,803 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,803 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,804 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,804 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,805 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,805 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,805 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,806 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,806 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,807 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,807 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,807 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,808 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,808 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,808 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,809 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,809 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,809 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,809 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,813 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,813 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,813 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,814 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,814 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:08,815 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,815 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,816 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,816 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,816 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,818 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:08,819 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,819 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,820 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,820 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,821 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,821 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,822 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,822 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,823 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,823 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,824 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,826 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,827 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,827 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:08,829 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,829 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,830 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,830 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,831 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,831 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,832 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,833 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,833 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,834 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,834 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,834 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,835 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,835 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,838 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,838 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,838 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,838 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,841 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,841 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,841 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,841 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,842 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,842 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,842 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,844 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,844 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,844 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,845 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,845 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,846 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,846 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,846 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,848 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:08,848 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,848 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,848 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,849 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,849 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,849 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,849 - statisticsCountryHashedController - INFO - 262 +2022-11-29 10:08:08,850 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,854 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,854 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,854 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,854 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,855 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,855 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,855 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,855 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,859 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,859 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,859 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,859 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,860 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,860 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,860 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,860 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,861 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,861 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,861 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,861 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,868 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,869 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,869 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,870 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,870 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,870 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,871 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,871 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,872 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,872 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,872 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,873 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,873 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,874 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,874 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,874 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,875 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,875 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,876 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,876 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,876 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,877 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,877 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,877 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,878 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,878 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,878 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,879 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,879 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,879 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,880 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,880 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,880 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,880 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,884 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,887 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,887 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,887 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,887 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,889 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,889 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,889 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:08,889 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,890 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,890 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,890 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,890 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,891 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:08,891 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,891 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,892 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,892 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,892 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,893 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,893 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,893 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,893 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,894 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,894 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,894 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,894 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,895 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,895 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,895 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,895 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 348 +2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 144 +2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,906 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:08,906 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,906 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,909 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,909 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,909 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:08,916 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,916 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,916 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,916 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,917 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,918 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,919 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,919 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,919 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,923 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,923 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:08,923 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,923 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,926 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,926 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,933 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,933 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,933 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,933 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,934 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,934 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,934 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:08,934 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,942 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:08,942 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:08,942 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,943 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:08,945 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,218 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,225 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,226 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,227 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,227 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,228 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,228 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,229 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,229 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,229 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,230 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,230 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,230 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,230 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,234 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,234 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,234 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,234 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,235 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,235 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,235 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,236 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,236 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,236 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,237 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,237 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,237 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,238 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,238 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,239 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,239 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,239 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,239 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,240 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,240 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,240 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,241 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,241 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,241 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,242 - statisticsCountryHashedController - INFO - 13 +2022-11-29 10:08:10,242 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,242 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,243 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,243 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,244 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,247 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,247 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,250 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,250 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,250 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,250 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,252 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,252 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,252 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,252 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,255 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,255 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,256 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,257 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,257 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,258 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,258 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,259 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,259 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:10,260 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,260 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:10,261 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,261 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,262 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,262 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:10,263 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,264 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,265 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,265 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,266 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,266 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,267 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,267 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,268 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,268 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,269 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,269 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,270 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,270 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,270 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,271 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,271 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,271 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,272 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,272 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,273 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,273 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,273 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,274 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,274 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,275 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,275 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,276 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,276 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,276 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,277 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,281 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,282 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,282 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,283 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,283 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,284 - statisticsCountryHashedController - INFO - 13 +2022-11-29 10:08:10,286 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,287 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,287 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,288 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,289 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,289 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,290 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,291 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,291 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,292 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,293 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,294 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,294 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,295 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,296 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,296 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:10,297 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,297 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,297 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,298 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,298 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,299 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,299 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,300 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,300 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,301 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,302 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,302 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,303 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,303 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,304 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,304 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,305 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:10,305 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,306 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,306 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,306 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,307 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,307 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,308 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,308 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,309 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,309 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,309 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,310 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,310 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,311 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,311 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,311 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,312 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,312 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,313 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,313 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,314 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,314 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,314 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,315 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,315 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,316 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,316 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,316 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,317 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,317 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,318 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,318 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,319 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,319 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,319 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,320 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,320 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,321 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,321 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,321 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:10,322 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,322 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:10,323 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:10,323 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,324 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,324 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,324 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,325 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:10,325 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:10,326 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,326 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,326 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,327 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,327 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:10,328 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,328 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,328 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,329 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,329 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,329 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,330 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,330 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,331 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,331 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,331 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,332 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,332 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,333 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,333 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,333 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,334 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,335 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,335 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,335 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,345 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,346 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,347 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,347 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,348 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,348 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,348 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,349 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,349 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,349 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,350 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,350 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,351 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,352 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,353 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,354 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,355 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,356 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,358 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,359 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,360 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,361 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,362 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,363 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,364 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,365 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,366 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,367 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,372 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,373 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:10,375 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,375 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,376 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,377 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,377 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,383 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,384 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,385 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,385 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,386 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,386 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,386 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,387 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:10,387 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,387 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,388 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,388 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,388 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,389 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,389 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,389 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,390 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,390 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,390 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,391 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,391 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,391 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,391 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,392 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,392 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,393 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,393 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,393 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,394 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,394 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,394 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,395 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,395 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,395 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,397 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,397 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,398 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,406 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,406 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,407 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,407 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,407 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,407 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,408 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,408 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,408 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,408 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,409 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,409 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,409 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,410 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,410 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,410 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,410 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,411 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,411 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,411 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,412 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,412 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,413 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,413 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,414 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,415 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,415 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,417 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,418 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,419 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,419 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,419 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,422 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,423 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,424 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,426 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,426 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,427 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,427 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,427 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,428 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,428 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,428 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,429 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,430 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,431 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,431 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,432 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,432 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,433 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,434 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,434 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,435 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,436 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,436 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,437 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,438 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,439 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,440 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,441 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,442 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,443 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,444 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,444 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,445 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,458 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,462 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,463 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,464 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,464 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,465 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,466 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,467 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,468 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,468 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,469 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,470 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,471 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,472 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,473 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,474 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,474 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,482 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,483 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,483 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,484 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,485 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:10,485 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,486 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,486 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,487 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,487 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,488 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,488 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,489 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,489 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,489 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,490 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,490 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,491 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,491 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,492 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,492 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,493 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,493 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,493 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,494 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,494 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,495 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,495 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,496 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,496 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,496 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,497 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,497 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,498 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,498 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,498 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,499 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,507 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,508 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,508 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,509 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,509 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,510 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,510 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,511 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,511 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,512 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,512 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,513 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,513 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,513 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,514 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,514 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,515 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,515 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,516 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,516 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,517 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,517 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,518 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,518 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,519 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,519 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,519 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,520 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,520 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,521 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,521 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,521 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,522 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,522 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,523 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,523 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:10,524 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,524 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,524 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,525 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,525 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,526 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,527 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,528 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,529 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,529 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,530 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,530 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,531 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,533 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,534 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,535 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,535 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,535 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,536 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,537 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,538 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,539 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,539 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,539 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,540 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,540 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,541 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,541 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,541 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,541 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,543 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,543 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,543 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,545 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,545 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,546 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,546 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,547 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,547 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,547 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,548 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,548 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,549 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,549 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,549 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,550 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,551 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,553 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,553 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,554 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,554 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,555 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,555 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,555 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,556 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,556 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,557 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,557 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,559 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,559 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,559 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,560 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,560 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,561 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,561 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,561 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,562 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,562 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,563 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,563 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,563 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,564 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,564 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:10,564 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,565 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,565 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,566 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,567 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,567 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,569 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,569 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,570 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,570 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,571 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,571 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,572 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,572 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,572 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,573 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,573 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,573 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,574 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,574 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,574 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,574 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,575 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,575 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,575 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,575 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,576 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,576 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,576 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,577 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,577 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,578 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,578 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,579 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,579 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,579 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,580 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,580 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,580 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,581 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,581 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,581 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,582 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,582 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,582 - statisticsCountryHashedController - INFO - 13 +2022-11-29 10:08:10,583 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,583 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,584 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,584 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,585 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,585 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,586 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,586 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,586 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,587 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:10,587 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,587 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,587 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,588 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,588 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:10,589 - statisticsCountryHashedController - INFO - 216 +2022-11-29 10:08:10,589 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,589 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,590 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,590 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,590 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,591 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,591 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,591 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,592 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,592 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,592 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,593 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,593 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,593 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,594 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,599 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,600 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,600 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,601 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,602 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,603 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,604 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,605 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,605 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,606 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,606 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:10,607 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,608 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,608 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,613 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,613 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,614 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,615 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,615 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,616 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,616 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,617 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,617 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,618 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,619 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,619 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,620 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,621 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,621 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,622 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,622 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,623 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,623 - statisticsCountryHashedController - INFO - 326 +2022-11-29 10:08:10,624 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,625 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,625 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,626 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,627 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,627 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,628 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,629 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,630 - statisticsCountryHashedController - INFO - 4 +2022-11-29 10:08:10,630 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,634 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,635 - statisticsCountryHashedController - INFO - 4 +2022-11-29 10:08:10,636 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,637 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,637 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,638 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,639 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,640 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,641 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,641 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,642 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,643 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,644 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,645 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,646 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,647 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,648 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,649 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,650 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,651 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,652 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,653 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,653 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,654 - statisticsCountryHashedController - INFO - 7 +2022-11-29 10:08:10,655 - statisticsCountryHashedController - INFO - 7 +2022-11-29 10:08:10,656 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,657 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,657 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,658 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:10,660 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,661 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,662 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,663 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:10,664 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,665 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,666 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,666 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,667 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,667 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,668 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,668 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,669 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,670 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,670 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,671 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,672 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,672 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,673 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,674 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,674 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,675 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,676 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,677 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,678 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,678 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,679 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,680 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,681 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,682 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,682 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,683 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,684 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,685 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,687 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,688 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,689 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,689 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,690 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,691 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,692 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,692 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,692 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,693 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,693 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,694 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,695 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,696 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,698 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,701 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,702 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,702 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,702 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,702 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,705 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,705 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,705 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,705 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,706 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,706 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,706 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,706 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,707 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,707 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,707 - statisticsCountryHashedController - INFO - 16 +2022-11-29 10:08:10,707 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,708 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,708 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,708 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,710 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,710 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,710 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,710 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,712 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,712 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,712 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,712 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,713 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,713 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,713 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,713 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,714 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,714 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,714 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,715 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,715 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,716 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,716 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,716 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,717 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,717 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,718 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,718 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,719 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,719 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,720 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,720 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,721 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,721 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,721 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,722 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,723 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,723 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,723 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,724 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,724 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,724 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,725 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,725 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,726 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,726 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,727 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,727 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,727 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,729 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,729 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,729 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,729 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,730 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,730 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,730 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,730 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,731 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,731 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,731 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,732 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,732 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,732 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,733 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,733 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,733 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,733 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,734 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,734 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,734 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,735 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,735 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,735 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,736 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,736 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,736 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,737 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,737 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,737 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,738 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,738 - statisticsCountryHashedController - INFO - 142 +2022-11-29 10:08:10,738 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,739 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,739 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,739 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,739 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:08:10,740 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,740 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,740 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,741 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,741 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,741 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,742 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,742 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,742 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,743 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,743 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,743 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,743 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,745 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,745 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,745 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,746 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,746 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,746 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,747 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,747 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,747 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,748 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,748 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,748 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,749 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,749 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,750 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,750 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,750 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,751 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,751 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,751 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,751 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,752 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,752 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,753 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,753 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,753 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,755 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,755 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,755 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,755 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,756 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,756 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,756 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:08:10,757 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,759 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,759 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,759 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,760 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,760 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,760 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,761 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,761 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,762 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,762 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,763 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,767 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,767 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,768 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,768 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,769 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,769 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,769 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,771 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,772 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,773 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,774 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,776 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,776 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,777 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,778 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,779 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,780 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,781 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,782 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,783 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,784 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,785 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,786 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,787 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,787 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,788 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,789 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,790 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,791 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,801 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,802 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,802 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,802 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,803 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,803 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,803 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,803 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,804 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,804 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,804 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,805 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,805 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,806 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,807 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,807 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,807 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,808 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,808 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,809 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,811 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,811 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,812 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,812 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,813 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,813 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,813 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,814 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,814 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,814 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,815 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,815 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,815 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,815 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,816 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,816 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,817 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,817 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,817 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,818 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,818 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,819 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,819 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,820 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,820 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,820 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,820 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,821 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,821 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,821 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,821 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,822 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,822 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,822 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,823 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,823 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,824 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,824 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,824 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,825 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,825 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,826 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,826 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,826 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,828 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,828 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,828 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,830 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,830 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,831 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,831 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,831 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,832 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,832 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,834 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,834 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,834 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,834 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,835 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,838 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,839 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,840 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,840 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,841 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,841 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,842 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,842 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,842 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,843 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,843 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,843 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,843 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,844 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,844 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,844 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,844 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,849 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,849 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,849 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,849 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,850 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,850 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,851 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,851 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 450 +2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,857 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,857 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,857 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,857 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,858 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,858 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,858 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,858 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,859 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,859 - statisticsCountryHashedController - INFO - 128 +2022-11-29 10:08:10,859 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,859 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,860 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,860 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,860 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,860 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 353 +2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,867 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,867 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,867 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,867 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,868 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,868 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,868 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,868 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,870 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,870 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,870 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,871 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:08:10,871 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,871 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,872 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,872 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,872 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,872 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 45 +2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,874 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,874 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,874 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,875 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,875 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,875 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,875 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,877 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,877 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,877 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,877 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,886 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,886 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,889 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,889 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,889 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,890 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,890 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,890 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,890 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,891 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,891 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,891 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,891 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,894 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,901 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,902 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,902 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,902 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,903 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,903 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,903 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,903 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,905 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,905 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,905 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,905 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 205 +2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,912 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,912 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,912 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,912 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 188 +2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 205 +2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 339 +2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,930 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,930 - statisticsCountryHashedController - INFO - 218 +2022-11-29 10:08:10,930 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,930 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,931 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,932 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,932 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,932 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,933 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,933 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:10,933 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,933 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 1 +2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,939 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,939 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,940 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,942 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,943 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,943 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,943 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,944 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,944 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,944 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,947 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,947 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:10,947 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,947 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 332 +2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 5 +2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:10,951 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,951 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:10,951 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,951 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:10,952 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:10,952 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:10,952 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,885 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:11,885 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,886 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:11,886 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,886 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,886 - statisticsCountryHashedController - INFO - 340 +2022-11-29 10:08:11,887 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,887 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:11,887 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,887 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,888 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:11,888 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,888 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:11,888 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,889 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:11,889 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,889 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:11,889 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,890 - statisticsCountryHashedController - INFO - 359 +2022-11-29 10:08:11,890 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,893 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:11,893 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,905 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,906 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,907 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:11,914 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:11,914 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,915 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,915 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,916 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,917 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,917 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:11,918 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,918 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,919 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:11,919 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,920 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:11,920 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,921 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,921 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,921 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:11,922 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:11,922 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,923 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:11,924 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,924 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,924 - statisticsCountryHashedController - INFO - 8 +2022-11-29 10:08:11,925 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,926 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:08:11,927 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:11,928 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:11,928 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,929 - statisticsCountryHashedController - INFO - 182 +2022-11-29 10:08:11,929 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,930 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,930 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,931 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:11,932 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,932 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:11,933 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:11,934 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,934 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:11,935 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:11,935 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:11,935 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,936 - statisticsCountryHashedController - INFO - 436 +2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 240 +2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 177 +2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:11,939 - statisticsCountryHashedController - INFO - 7 +2022-11-29 10:08:11,939 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,939 - statisticsCountryHashedController - INFO - 378 +2022-11-29 10:08:11,939 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 120 +2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,941 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,941 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,941 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,943 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,944 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,945 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:11,945 - statisticsCountryHashedController - INFO - 9 +2022-11-29 10:08:11,946 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,946 - statisticsCountryHashedController - INFO - 457 +2022-11-29 10:08:11,946 - statisticsCountryHashedController - INFO - 24 +2022-11-29 10:08:11,946 - statisticsCountryHashedController - INFO - 441 +2022-11-29 10:08:11,947 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,947 - statisticsCountryHashedController - INFO - 15 +2022-11-29 10:08:11,948 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,948 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,949 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,949 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:11,949 - statisticsCountryHashedController - INFO - 21 +2022-11-29 10:08:11,950 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:11,950 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:11,951 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,951 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,952 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,952 - statisticsCountryHashedController - INFO - 329 +2022-11-29 10:08:11,952 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,953 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:11,953 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,953 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,954 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,954 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,954 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:11,954 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,955 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,955 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,956 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,957 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,957 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:11,957 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,958 - statisticsCountryHashedController - INFO - 141 +2022-11-29 10:08:11,958 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,958 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:11,958 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:11,959 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,959 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,959 - statisticsCountryHashedController - INFO - 11 +2022-11-29 10:08:11,961 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:11,961 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,961 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:11,961 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,962 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,963 - statisticsCountryHashedController - INFO - 6 +2022-11-29 10:08:11,963 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,963 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:11,964 - statisticsCountryHashedController - INFO - 2 +2022-11-29 10:08:11,964 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:11,964 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:11,965 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,965 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,965 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,966 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,966 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:11,967 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,967 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,968 - statisticsCountryHashedController - INFO - 458 +2022-11-29 10:08:11,968 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,969 - statisticsCountryHashedController - INFO - 443 +2022-11-29 10:08:11,969 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,970 - statisticsCountryHashedController - INFO - 377 +2022-11-29 10:08:11,970 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:11,971 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,972 - statisticsCountryHashedController - INFO - 18 +2022-11-29 10:08:11,972 - statisticsCountryHashedController - INFO - 364 +2022-11-29 10:08:11,972 - statisticsCountryHashedController - INFO - 12 +2022-11-29 10:08:11,973 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,974 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,974 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,975 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,975 - statisticsCountryHashedController - INFO - 207 +2022-11-29 10:08:11,976 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,976 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:11,976 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,977 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,978 - statisticsCountryHashedController - INFO - 140 +2022-11-29 10:08:11,978 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,978 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,979 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,980 - statisticsCountryHashedController - INFO - 420 +2022-11-29 10:08:11,980 - statisticsCountryHashedController - INFO - 19 +2022-11-29 10:08:11,980 - statisticsCountryHashedController - INFO - 22 +2022-11-29 10:08:11,981 - statisticsCountryHashedController - INFO - 345 +2022-11-29 10:08:11,981 - migrateData - INFO - 3612 Country Stats created +2022-11-29 10:21:25,515 - migrateData - INFO - No new data found +2022-11-29 10:21:25,519 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:25,520 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:21:25,521 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:21:25,522 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:21:25,522 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:25,523 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:25,523 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:21:25,524 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:21:25,524 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,524 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,525 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,525 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:25,525 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,526 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:21:25,526 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,527 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,527 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,529 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,531 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:21:25,531 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,532 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,532 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,533 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:25,533 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,533 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:21:25,534 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,534 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:21:25,534 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,535 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:21:25,535 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:21:25,535 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:25,536 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:21:25,536 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:21:25,536 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:21:25,536 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:21:25,537 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,537 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:21:25,537 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:25,538 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,538 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:21:25,539 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:25,540 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:21:25,540 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:21:25,541 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:21:25,541 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:25,541 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:21:25,541 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,542 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:25,542 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,545 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,545 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:21:25,546 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,547 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:21:25,548 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,549 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:25,549 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,550 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,550 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:21:25,551 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,551 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,552 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,552 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,553 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,553 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,554 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,555 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,555 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,556 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,556 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:25,556 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,557 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,557 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,557 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,558 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,558 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:21:25,558 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,559 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:25,559 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,560 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:25,560 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,561 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,561 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,562 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:21:25,562 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:25,563 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:25,563 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:25,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:25,564 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:25,565 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,565 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:21:25,566 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:21:25,566 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:21:25,567 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,567 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,567 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:25,568 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,568 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,569 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,569 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,570 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:21:25,570 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:25,571 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:25,571 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,580 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,581 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:21:25,582 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:21:25,582 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:21:25,582 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,583 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:25,584 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:21:25,584 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:25,584 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:25,584 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:25,585 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,585 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,586 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,586 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,587 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:25,587 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:25,588 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:25,588 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:25,589 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:25,590 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:25,590 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:25,590 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:25,591 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:25,592 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,592 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:21:25,592 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,593 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:21:25,593 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:25,593 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:21:25,620 - migrateData - INFO - 24 Idps created +2022-11-29 10:21:25,691 - migrateData - INFO - 409 Sps created +2022-11-29 10:21:54,424 - migrateData - INFO - No new data found +2022-11-29 10:21:54,430 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:54,431 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:21:54,432 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:21:54,432 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:21:54,433 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:54,433 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:54,434 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:21:54,435 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:21:54,435 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,436 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,436 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,437 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:54,438 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,438 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:21:54,439 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,440 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,440 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,441 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,441 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:21:54,442 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,443 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,443 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,444 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:54,444 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,445 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:21:54,446 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,446 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:21:54,447 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,447 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:21:54,448 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:21:54,448 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:54,448 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:21:54,449 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:21:54,449 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:21:54,449 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:21:54,449 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,450 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:21:54,450 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:54,450 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,450 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:21:54,451 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:54,451 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:21:54,451 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:21:54,452 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:21:54,452 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:54,453 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:21:54,453 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,454 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:54,454 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,455 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,455 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:21:54,456 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,456 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:21:54,456 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,457 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:21:54,457 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,458 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,458 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:21:54,458 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,459 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,459 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,460 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,461 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,461 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,462 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,462 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,463 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,463 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,464 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:21:54,464 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,464 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,465 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,466 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,466 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,466 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:21:54,467 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,467 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:54,468 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,468 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:21:54,469 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,469 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,470 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,470 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:21:54,471 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:54,471 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:54,471 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:54,471 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:54,472 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,472 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:54,473 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,473 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:21:54,474 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:21:54,474 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:21:54,475 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,475 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,476 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:21:54,476 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,477 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,477 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,478 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,478 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:21:54,479 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:54,479 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:21:54,480 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,480 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,481 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:21:54,481 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:21:54,482 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:21:54,482 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,483 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:54,483 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:21:54,484 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:54,484 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:54,485 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:54,485 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,486 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,486 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,487 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,487 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:54,488 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:54,488 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:54,489 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:54,489 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:21:54,490 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:54,490 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:21:54,491 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:54,491 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:21:54,492 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,492 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:21:54,492 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,493 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:21:54,493 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:21:54,493 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:21:54,521 - migrateData - INFO - 24 Idps created +2022-11-29 10:21:54,612 - migrateData - INFO - 409 Sps created +2022-11-29 10:21:54,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:54,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,080 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,082 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,085 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,118 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,703 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,708 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,714 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,754 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,974 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:55,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,080 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,082 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,085 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,367 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,708 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,714 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,777 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,777 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,788 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,974 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:56,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,082 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,085 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,118 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,301 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,754 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,777 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,789 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,874 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:57,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,085 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,118 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,301 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,333 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,367 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,367 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,450 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,450 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,714 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,777 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,788 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,789 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,789 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:21:58,892 - migrateData - INFO - 3612 Country Stats created +2022-11-29 10:22:02,367 - migrateData - INFO - No new data found +2022-11-29 10:22:02,379 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:02,379 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:22:02,379 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:22:02,380 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:22:02,381 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:02,382 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:02,382 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:22:02,383 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:22:02,383 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,384 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,384 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,385 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:02,386 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,386 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:22:02,386 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,387 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,388 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,388 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,389 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:22:02,389 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,390 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,390 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,391 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:02,391 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,391 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:22:02,391 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,392 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:22:02,392 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,393 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:22:02,393 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:22:02,393 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:02,394 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:22:02,394 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:22:02,395 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:22:02,395 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:22:02,396 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,396 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:22:02,396 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:02,397 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,397 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:22:02,398 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:02,398 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:22:02,399 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:22:02,399 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:22:02,400 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:02,400 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:22:02,400 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,401 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:02,401 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,402 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,402 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:22:02,403 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,403 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:22:02,404 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,404 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:02,404 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,405 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,405 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:22:02,406 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,406 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,407 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,408 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,408 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,408 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,409 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,410 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,410 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,411 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,411 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:02,412 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,412 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,413 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,414 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,414 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,415 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:22:02,415 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,416 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:02,416 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,416 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:02,416 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,417 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,417 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,418 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:22:02,418 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:02,419 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:02,420 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:02,420 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:02,420 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,421 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:02,421 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,422 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:22:02,422 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:22:02,423 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:22:02,423 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,424 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,424 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:02,425 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,425 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,426 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,426 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,427 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:22:02,427 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:02,427 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:02,428 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,428 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,429 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:22:02,429 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:22:02,430 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:22:02,430 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,430 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:02,431 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:22:02,431 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:02,431 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:02,432 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:02,432 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,432 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,433 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,433 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,433 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:02,434 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:02,435 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:02,435 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:02,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:02,437 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:02,438 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:02,441 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:02,442 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:02,442 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,443 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:22:02,443 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,443 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:22:02,444 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:02,444 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:22:02,477 - migrateData - INFO - 24 Idps created +2022-11-29 10:22:02,544 - migrateData - INFO - 409 Sps created +2022-11-29 10:22:02,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,703 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,708 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,714 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,754 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,777 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,788 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,874 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,874 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,974 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:02,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,082 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,085 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,367 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,450 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,703 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,777 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,788 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,789 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:03,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,333 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,334 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,367 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,450 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,703 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,708 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,714 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,754 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,974 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:04,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,333 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,334 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,450 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,703 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,708 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,974 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:05,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,118 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,367 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:06,582 - migrateData - INFO - 3612 Country Stats created +2022-11-29 10:22:38,317 - migrateData - INFO - No new data found +2022-11-29 10:22:38,322 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:38,323 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:22:38,324 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:22:38,324 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:22:38,325 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:38,325 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:38,325 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:22:38,326 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:22:38,334 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,335 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,335 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,336 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:38,336 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,337 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:22:38,337 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,337 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,338 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,338 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,338 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:22:38,339 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,339 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,340 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,340 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:38,341 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,341 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:22:38,341 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,342 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:22:38,342 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,342 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:22:38,343 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:22:38,343 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:38,343 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:22:38,344 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:22:38,344 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:22:38,344 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:22:38,345 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,345 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:22:38,345 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:38,346 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,346 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:22:38,347 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:38,347 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:22:38,348 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:22:38,348 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:22:38,348 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:38,349 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:22:38,349 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,350 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:38,350 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,351 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,352 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:22:38,352 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,352 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:22:38,353 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,353 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:22:38,354 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,354 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,354 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:22:38,355 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,355 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,355 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,356 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,356 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,356 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,357 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,358 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,358 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,358 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,359 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:22:38,359 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,359 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,360 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,360 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,360 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,363 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:22:38,363 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,364 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:38,364 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,365 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:22:38,365 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,366 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,366 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,366 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:22:38,367 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:38,367 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:38,368 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:38,368 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:38,368 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,368 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:38,368 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,369 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:22:38,370 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:22:38,370 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:22:38,371 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,372 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,373 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:22:38,373 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,373 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,374 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,374 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,374 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:22:38,374 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:38,374 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:22:38,376 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,376 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:38,379 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:22:38,379 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:38,379 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:38,380 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:38,380 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,381 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,381 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,381 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,382 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:38,385 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:38,385 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:38,386 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:38,387 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:22:38,387 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:38,387 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:22:38,388 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:38,388 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:22:38,388 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,389 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:22:38,389 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,389 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:22:38,389 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:22:38,389 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:22:38,418 - migrateData - INFO - 24 Idps created +2022-11-29 10:22:38,489 - migrateData - INFO - 409 Sps created +2022-11-29 10:22:38,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,874 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:38,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,334 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,367 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,450 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,874 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,974 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:39,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,118 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,301 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,334 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,450 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,714 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,777 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,788 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,789 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,874 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:40,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,080 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,082 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,085 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,301 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,333 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,404 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,708 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,818 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,874 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:41,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,080 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,082 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,085 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,118 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,161 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,220 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,301 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,333 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,334 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,367 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,646 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:22:42,686 - migrateData - INFO - 3612 Country Stats created +2022-11-29 10:26:10,139 - migrateData - INFO - No new data found +2022-11-29 10:26:10,144 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:26:10,145 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:26:10,146 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:26:10,146 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:26:10,147 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:26:10,149 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:26:10,150 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:26:10,150 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:26:10,151 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,152 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,153 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,153 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:26:10,159 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,159 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:26:10,159 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,159 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,160 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,160 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,160 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:26:10,160 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,161 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,161 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,161 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:26:10,161 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,161 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:26:10,162 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,162 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:26:10,162 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,162 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:26:10,163 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:26:10,163 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:26:10,163 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:26:10,163 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:26:10,163 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:26:10,164 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:26:10,164 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,164 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:26:10,164 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:26:10,164 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,165 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:26:10,165 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:26:10,166 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:26:10,167 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:26:10,167 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:26:10,168 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:26:10,168 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:26:10,168 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,169 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:26:10,169 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,169 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,170 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:26:10,170 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,170 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:26:10,170 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,171 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:26:10,171 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,171 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,171 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:26:10,172 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,172 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,172 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,173 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,173 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,173 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,173 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,182 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,183 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,183 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,184 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:26:10,184 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,185 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,185 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,186 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,187 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,187 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:26:10,188 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,189 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:26:10,189 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,190 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:26:10,190 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,191 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,192 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,192 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:26:10,193 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:26:10,193 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:26:10,193 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:26:10,194 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:26:10,194 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,194 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:26:10,194 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,195 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:26:10,196 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:26:10,196 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:26:10,196 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,197 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,198 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:26:10,199 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,199 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,200 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,201 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,202 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:26:10,202 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:26:10,202 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:26:10,203 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,203 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,203 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:26:10,203 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:26:10,204 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:26:10,204 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,204 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:26:10,204 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:26:10,205 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:26:10,205 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:26:10,205 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:26:10,205 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,205 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,206 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,206 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,206 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:26:10,206 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:26:10,207 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:26:10,215 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:26:10,216 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:26:10,217 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:26:10,217 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:26:10,217 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:26:10,218 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:26:10,219 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,219 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:26:10,220 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,220 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:26:10,222 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:26:10,223 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:26:10,252 - migrateData - INFO - 24 Idps created +2022-11-29 10:26:10,332 - migrateData - INFO - 409 Sps created +2022-11-29 10:26:10,345 - pgConnector - INFO - 10838 +2022-11-29 10:26:10,346 - statisticsCountryHashedController - INFO - 10838 +2022-11-29 10:26:10,348 - pgConnector - INFO - 10839 +2022-11-29 10:26:10,350 - statisticsCountryHashedController - INFO - 10839 +2022-11-29 10:26:10,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,353 - pgConnector - INFO - 10841 +2022-11-29 10:26:10,354 - statisticsCountryHashedController - INFO - 10841 +2022-11-29 10:26:10,356 - pgConnector - INFO - 10842 +2022-11-29 10:26:10,357 - statisticsCountryHashedController - INFO - 10842 +2022-11-29 10:26:10,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,360 - pgConnector - INFO - 10846 +2022-11-29 10:26:10,360 - statisticsCountryHashedController - INFO - 10846 +2022-11-29 10:26:10,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,362 - pgConnector - INFO - 10848 +2022-11-29 10:26:10,363 - statisticsCountryHashedController - INFO - 10848 +2022-11-29 10:26:10,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,368 - pgConnector - INFO - 10850 +2022-11-29 10:26:10,368 - statisticsCountryHashedController - INFO - 10850 +2022-11-29 10:26:10,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,371 - pgConnector - INFO - 10853 +2022-11-29 10:26:10,371 - statisticsCountryHashedController - INFO - 10853 +2022-11-29 10:26:10,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,386 - pgConnector - INFO - 10861 +2022-11-29 10:26:10,386 - statisticsCountryHashedController - INFO - 10861 +2022-11-29 10:26:10,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,392 - pgConnector - INFO - 10865 +2022-11-29 10:26:10,392 - statisticsCountryHashedController - INFO - 10865 +2022-11-29 10:26:10,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,401 - pgConnector - INFO - 10881 +2022-11-29 10:26:10,401 - statisticsCountryHashedController - INFO - 10881 +2022-11-29 10:26:10,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,404 - pgConnector - INFO - 10887 +2022-11-29 10:26:10,404 - statisticsCountryHashedController - INFO - 10887 +2022-11-29 10:26:10,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,411 - pgConnector - INFO - 10896 +2022-11-29 10:26:10,411 - statisticsCountryHashedController - INFO - 10896 +2022-11-29 10:26:10,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,416 - pgConnector - INFO - 10904 +2022-11-29 10:26:10,416 - statisticsCountryHashedController - INFO - 10904 +2022-11-29 10:26:10,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,475 - pgConnector - INFO - 10938 +2022-11-29 10:26:10,475 - statisticsCountryHashedController - INFO - 10938 +2022-11-29 10:26:10,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,575 - pgConnector - INFO - 10990 +2022-11-29 10:26:10,575 - statisticsCountryHashedController - INFO - 10990 +2022-11-29 10:26:10,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,581 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,582 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,675 - pgConnector - INFO - 11068 +2022-11-29 10:26:10,675 - statisticsCountryHashedController - INFO - 11068 +2022-11-29 10:26:10,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,689 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,703 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,706 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,707 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,708 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,710 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,714 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,716 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,754 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,819 - pgConnector - INFO - 11204 +2022-11-29 10:26:10,820 - statisticsCountryHashedController - INFO - 11204 +2022-11-29 10:26:10,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,974 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:10,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,078 - pgConnector - INFO - 11465 +2022-11-29 10:26:11,078 - statisticsCountryHashedController - INFO - 11465 +2022-11-29 10:26:11,080 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,082 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,141 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,212 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,217 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,237 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,256 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,274 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,333 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,334 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,341 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,377 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,476 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,529 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,588 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,590 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,591 - pgConnector - INFO - 11858 +2022-11-29 10:26:11,592 - statisticsCountryHashedController - INFO - 11858 +2022-11-29 10:26:11,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,625 - pgConnector - INFO - 11887 +2022-11-29 10:26:11,625 - statisticsCountryHashedController - INFO - 11887 +2022-11-29 10:26:11,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,631 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,669 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,674 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,677 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,723 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,788 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,789 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,835 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,840 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,874 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,883 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,889 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,962 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,966 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:11,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,048 - pgConnector - INFO - 12198 +2022-11-29 10:26:12,048 - statisticsCountryHashedController - INFO - 12198 +2022-11-29 10:26:12,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,080 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,118 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,128 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,144 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,157 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,213 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,215 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,234 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,236 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,239 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,242 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,301 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,333 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,334 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,362 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,405 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,408 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,446 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,447 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,448 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,449 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,450 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,451 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,453 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,456 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,471 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,481 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,508 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,515 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,517 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,518 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,520 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,552 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,572 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,573 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,574 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,575 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,576 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,577 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,584 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,587 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,607 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,623 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,625 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,626 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,630 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,631 - pgConnector - INFO - 12667 +2022-11-29 10:26:12,631 - statisticsCountryHashedController - INFO - 12667 +2022-11-29 10:26:12,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,667 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,680 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,686 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,687 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,688 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,702 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,703 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,714 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,720 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,725 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,727 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,754 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,755 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,760 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,769 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,780 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,789 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,804 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,805 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,811 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,812 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,813 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,814 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,815 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,816 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,817 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,824 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,825 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,846 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,865 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,875 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,883 - pgConnector - INFO - 12885 +2022-11-29 10:26:12,883 - statisticsCountryHashedController - INFO - 12885 +2022-11-29 10:26:12,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,886 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,897 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,906 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,919 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,920 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,921 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,922 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,931 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,932 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,933 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,934 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,973 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,974 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,997 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:12,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,022 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,027 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,050 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,056 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,071 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,083 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,084 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,085 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,086 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,097 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,099 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,101 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,103 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,104 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,112 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,113 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,116 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,117 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,118 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,119 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,120 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,122 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,124 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,151 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,152 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,153 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,154 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,155 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,156 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,158 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,162 - pgConnector - INFO - 13170 +2022-11-29 10:26:13,162 - statisticsCountryHashedController - INFO - 13170 +2022-11-29 10:26:13,163 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,164 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,166 - pgConnector - INFO - 13174 +2022-11-29 10:26:13,166 - statisticsCountryHashedController - INFO - 13174 +2022-11-29 10:26:13,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,179 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,180 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,181 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,182 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,183 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,184 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,185 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,186 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,208 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,209 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,210 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,211 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,214 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,216 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,218 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,219 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,221 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,222 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,223 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,224 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,225 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,226 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,227 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,228 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,229 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,230 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,231 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,232 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,233 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,235 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,238 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,240 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,241 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,246 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,248 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,249 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,251 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,257 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,258 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,259 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,260 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,261 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,266 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,270 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,271 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,273 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,275 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,276 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,277 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,283 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,289 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,290 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,294 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,297 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,298 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,299 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,301 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,304 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,305 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,310 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,328 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,334 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,352 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,353 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,365 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,366 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,368 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,370 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,371 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,374 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,376 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,379 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,382 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,385 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,388 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,390 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,393 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,396 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,398 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,399 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,400 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,401 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,402 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,403 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,406 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,407 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,409 - pgConnector - INFO - 13422 +2022-11-29 10:26:13,409 - statisticsCountryHashedController - INFO - 13422 +2022-11-29 10:26:13,409 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,410 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,411 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,412 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,413 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,414 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,415 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,416 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,417 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,418 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,420 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,422 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,429 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,432 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,436 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,441 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,444 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,452 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,455 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,457 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,458 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,459 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,461 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,464 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,466 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,468 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,473 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,479 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,480 - pgConnector - INFO - 13489 +2022-11-29 10:26:13,481 - statisticsCountryHashedController - INFO - 13489 +2022-11-29 10:26:13,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,484 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,489 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,492 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,495 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,498 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,502 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,504 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,507 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,509 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,510 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,511 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,512 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,513 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,516 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,525 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,530 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,531 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,532 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,559 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,567 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,568 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,569 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,570 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,571 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,599 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,621 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,624 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,627 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,628 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,629 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,640 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,650 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,651 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,656 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,659 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,660 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,661 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,668 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,670 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,671 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,672 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,673 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,675 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,676 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,678 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,679 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,681 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,682 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,683 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,684 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,685 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,690 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,691 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,692 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,693 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,694 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,695 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,696 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,697 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,698 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,699 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,700 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,701 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,703 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,704 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,705 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,708 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,709 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,711 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,712 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,713 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,715 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,717 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,718 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,719 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,721 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,722 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,724 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,726 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,728 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,729 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,730 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,731 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,732 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,733 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,734 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,735 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,736 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,737 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,738 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,739 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,740 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,741 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,742 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,743 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,744 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,745 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,746 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,747 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,748 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,749 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,750 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,751 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,752 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,753 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,754 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,756 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,757 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,758 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,759 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,761 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,762 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,763 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,764 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,765 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,766 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,767 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,768 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,770 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,771 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,772 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,773 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,774 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,775 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,776 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,778 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,779 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,781 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,782 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,783 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,784 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,785 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,786 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,787 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,788 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,789 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,790 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,791 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,792 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,793 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,794 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,795 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,796 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,797 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,798 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,799 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,800 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,801 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,802 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,803 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,806 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,807 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,808 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,809 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,810 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,819 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,820 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,821 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,822 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,823 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,826 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,827 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,828 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,829 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,830 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,831 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,832 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,833 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,834 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,836 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,837 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,838 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,839 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,841 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,842 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,843 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,844 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,845 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,847 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,848 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,849 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,850 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,851 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,852 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,853 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,854 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,855 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,856 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,857 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,858 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,859 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,860 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,861 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,862 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,863 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,864 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,866 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,867 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,868 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,869 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,870 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,871 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,872 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,873 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,876 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,877 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,878 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,879 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,880 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,881 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,882 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,884 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,885 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,887 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,888 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,890 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,891 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,892 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,893 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,894 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,895 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,896 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,898 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,899 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,900 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,901 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,902 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,903 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,904 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,905 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,907 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,908 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,909 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,910 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,911 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,912 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,913 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,914 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,915 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,916 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,917 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,918 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,923 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,924 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,925 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,926 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,927 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,928 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,929 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,930 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,935 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,936 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,937 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,938 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,939 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,940 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,941 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,942 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,943 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,944 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,945 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,946 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,947 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,948 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,949 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,950 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,951 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,952 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,953 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,954 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,955 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,956 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,957 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,958 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,959 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,960 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,961 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,963 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,964 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,965 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,967 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,968 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,969 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,970 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,971 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,972 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,975 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,976 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,977 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,978 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,979 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,980 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,981 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,982 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,983 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,984 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,985 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,986 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,987 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,988 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,989 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,990 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,991 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,992 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,993 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,994 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,995 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,996 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,998 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:13,999 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,000 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,001 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,002 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,003 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,004 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,005 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,006 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,007 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,008 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,009 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,010 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,011 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,012 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,013 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,014 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,015 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,016 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,017 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,018 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,019 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,020 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,021 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,023 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,024 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,025 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,026 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,028 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,029 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,030 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,031 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,032 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,033 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,034 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,035 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,036 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,037 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,038 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,039 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,040 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,041 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,042 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,043 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,044 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,045 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,046 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,047 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,048 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,049 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,051 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,052 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,053 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,054 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,055 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,057 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,058 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,059 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,060 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,061 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,062 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,063 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,064 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,065 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,066 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,067 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,068 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,069 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,070 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,072 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,073 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,074 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,075 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,076 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,077 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,078 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,079 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,081 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,082 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,087 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,088 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,089 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,090 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,091 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,092 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,093 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,094 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,095 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,096 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,098 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,100 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,102 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,105 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,106 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,107 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,108 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,109 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,110 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,111 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,114 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,115 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,121 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,123 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,125 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,126 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,127 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,129 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,130 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,131 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,132 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,133 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,134 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,135 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,136 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,137 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,138 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,139 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,140 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,142 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,143 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,145 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,146 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,147 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,148 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,149 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,150 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,159 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,160 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,162 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,165 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,166 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,167 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,168 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,169 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,170 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,171 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,172 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,173 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,174 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,175 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,176 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,177 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,178 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,187 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,188 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,189 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,190 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,191 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,192 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,193 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,194 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,195 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,196 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,197 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,198 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,199 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,200 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,201 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,202 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,203 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,204 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,205 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,206 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,207 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,243 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,244 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,245 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,247 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,250 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,252 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,253 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,254 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,255 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,262 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,263 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,264 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,265 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,267 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,268 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,269 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,272 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,278 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,279 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,280 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,281 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,282 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,284 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,285 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,286 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,287 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,288 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,291 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,292 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,293 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,295 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,296 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,300 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,301 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,302 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,303 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,306 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,307 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,308 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,309 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,311 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,312 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,313 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,314 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,315 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,316 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,317 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,318 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,319 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,320 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,321 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,322 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,323 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,324 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,325 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,326 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,327 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,329 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,330 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,331 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,332 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,333 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,335 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,336 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,337 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,338 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,339 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,340 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,342 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,343 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,344 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,345 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,346 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,347 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,348 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,349 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,350 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,351 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,354 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,355 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,356 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,357 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,358 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,359 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,360 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,361 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,363 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,364 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,369 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,372 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,373 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,375 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,378 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,380 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,381 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,383 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,384 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,386 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,387 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,389 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,391 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,392 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,394 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,395 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,397 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,419 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,421 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,423 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,424 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,425 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,426 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,427 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,428 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,430 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,431 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,433 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,434 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,435 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,437 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,438 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,439 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,440 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,442 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,443 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,445 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,454 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,460 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,462 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,463 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,465 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,467 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,469 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,470 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,472 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,474 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,475 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,477 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,478 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,480 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,482 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,483 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,485 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,486 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,487 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,488 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,490 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,491 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,493 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,494 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,496 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,497 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,499 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,500 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,501 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,503 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,505 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,506 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,514 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,519 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,521 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,522 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,523 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,524 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,526 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,527 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,528 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,533 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,534 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,535 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,536 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,537 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,538 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,539 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,540 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,541 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,542 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,543 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,544 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,545 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,546 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,547 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,548 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,549 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,550 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,551 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,553 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,554 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,555 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,556 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,557 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,558 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,560 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,561 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,562 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,563 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,564 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,565 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,566 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,578 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,579 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,580 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,583 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,585 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,586 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,589 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,591 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,592 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,593 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,594 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,595 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,596 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,597 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,598 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,600 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,601 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,602 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,603 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,604 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,605 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,606 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,608 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,609 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,610 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,611 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,612 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,613 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,614 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,615 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,616 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,617 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,618 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,619 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,620 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,622 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,632 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,633 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,634 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,635 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,636 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,637 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,638 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,639 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,641 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,642 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,643 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,644 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,645 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,647 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,648 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,649 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,652 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,653 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,654 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,655 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,657 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,658 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,662 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,663 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,664 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,665 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,666 - statisticsCountryHashedController - INFO - None +2022-11-29 10:26:14,667 - migrateData - INFO - 3612 Country Stats created +2022-11-29 10:32:16,517 - migrateData - INFO - No new data found +2022-11-29 10:32:16,521 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:16,522 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:32:16,523 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:32:16,523 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:32:16,523 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:16,524 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:16,524 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:32:16,525 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:32:16,525 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,526 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,526 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,527 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:16,527 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,527 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:32:16,528 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,528 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,528 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,528 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,529 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:32:16,529 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,529 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,530 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,530 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:16,530 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,531 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:32:16,531 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,531 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:32:16,531 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,532 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:32:16,532 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:32:16,533 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:16,533 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:32:16,533 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:32:16,533 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:32:16,534 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:32:16,534 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,534 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:32:16,534 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:16,534 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,535 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:32:16,535 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:16,536 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:32:16,536 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:32:16,536 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:32:16,536 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:16,536 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:32:16,538 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,538 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:16,539 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,539 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,539 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:32:16,539 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,540 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:32:16,540 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,540 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:16,540 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,541 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,541 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:32:16,541 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,541 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,542 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,542 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,542 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,542 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,543 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,544 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,544 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,546 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,546 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:16,548 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,549 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,550 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,550 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,550 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,551 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:32:16,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,552 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:16,553 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,553 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:16,554 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,555 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:32:16,556 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:16,557 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:16,557 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:16,558 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:16,558 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,559 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:16,559 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,560 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:32:16,561 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:32:16,561 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:32:16,561 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,562 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,563 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:16,563 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,564 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,564 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,564 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,564 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:32:16,565 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:16,565 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:16,566 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,566 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,567 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:32:16,567 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:32:16,568 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:32:16,569 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,569 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:16,570 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:32:16,570 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:16,570 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:16,571 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:16,571 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,572 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,572 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,573 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,573 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:16,574 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:16,574 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:16,575 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:16,576 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:16,576 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:16,577 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:16,577 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:16,578 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:16,578 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,578 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:32:16,579 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,579 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:32:16,579 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:16,579 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:32:16,607 - migrateData - INFO - 24 Idps created +2022-11-29 10:32:16,685 - migrateData - INFO - 409 Sps created +2022-11-29 10:32:18,001 - migrateData - INFO - 3612 Country Stats created +2022-11-29 10:32:42,317 - migrateData - INFO - No new data found +2022-11-29 10:32:42,321 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:42,322 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:32:42,322 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:32:42,323 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-29 10:32:42,323 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:42,323 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:42,324 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:32:42,324 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:32:42,325 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,325 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,325 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,326 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:42,326 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,327 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-29 10:32:42,327 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,328 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,328 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,328 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,329 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:32:42,329 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,329 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,329 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,332 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:42,333 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,334 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:32:42,334 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,334 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:32:42,335 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,335 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-29 10:32:42,335 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-29 10:32:42,336 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:42,336 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:32:42,336 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:32:42,337 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-29 10:32:42,339 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-29 10:32:42,339 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,339 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-29 10:32:42,340 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:42,340 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,340 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:32:42,341 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:42,341 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:32:42,341 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:32:42,341 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:32:42,342 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:42,342 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-29 10:32:42,342 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,343 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:42,343 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,343 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,343 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:32:42,344 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,344 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:32:42,345 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,345 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-29 10:32:42,345 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,345 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,346 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-29 10:32:42,346 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,346 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,347 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,347 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,348 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,348 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,349 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,350 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,351 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,352 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,352 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-29 10:32:42,354 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,354 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,359 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,360 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,360 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,360 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-29 10:32:42,361 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,361 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:42,362 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,363 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-29 10:32:42,363 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,364 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,364 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,365 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-29 10:32:42,365 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:42,366 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:42,366 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:42,367 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:42,367 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,367 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:42,367 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,368 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-29 10:32:42,368 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:32:42,368 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-29 10:32:42,369 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,369 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,369 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-29 10:32:42,369 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,369 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,370 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,370 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,370 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-29 10:32:42,371 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:42,371 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-29 10:32:42,372 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,372 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,372 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:32:42,373 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:32:42,374 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-29 10:32:42,374 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,375 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:42,375 - migrateData - INFO - Vo name AMB with id 9 +2022-11-29 10:32:42,376 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:42,380 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:42,380 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:42,381 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,381 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,381 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,382 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,382 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:42,384 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:42,387 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:42,387 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:42,388 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-29 10:32:42,389 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:42,390 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-29 10:32:42,391 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:42,391 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-29 10:32:42,392 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,393 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:32:42,394 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,394 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:32:42,395 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-29 10:32:42,395 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-29 10:32:42,430 - migrateData - INFO - 24 Idps created +2022-11-29 10:32:42,515 - migrateData - INFO - 409 Sps created +2022-11-29 10:32:43,868 - migrateData - INFO - 3612 Country Stats created diff --git a/data_migrations/log/metricsMigrate.log.2022-11-30 b/data_migrations/log/metricsMigrate.log.2022-11-30 new file mode 100644 index 0000000..abecbfa --- /dev/null +++ b/data_migrations/log/metricsMigrate.log.2022-11-30 @@ -0,0 +1,4714 @@ +2022-11-30 09:07:19,019 - migrateData - INFO - No new data found +2022-11-30 09:07:19,031 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:07:19,033 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:07:19,034 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:07:19,034 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:07:19,035 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:07:19,035 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:07:19,036 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:07:19,036 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:07:19,037 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,038 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,039 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,039 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:07:19,040 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,041 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-30 09:07:19,042 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,044 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,045 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,045 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,046 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:07:19,047 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,048 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,048 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,049 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:07:19,050 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,050 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:07:19,052 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,053 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:07:19,054 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,056 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-30 09:07:19,057 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:07:19,059 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:07:19,059 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:07:19,059 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:07:19,060 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:07:19,060 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:07:19,060 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,060 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:07:19,061 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:07:19,061 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,063 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:07:19,065 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:07:19,067 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:07:19,068 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:07:19,070 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:07:19,073 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:07:19,075 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-30 09:07:19,077 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,079 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:07:19,081 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,081 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,081 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:07:19,082 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,083 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:07:19,084 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,086 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:07:19,087 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,088 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,089 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:07:19,090 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,090 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,091 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,092 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,093 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,093 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,094 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,096 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,098 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,099 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,100 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:07:19,100 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,101 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,102 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,103 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,104 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,105 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:07:19,106 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,106 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:07:19,107 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,107 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:07:19,108 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,110 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,110 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,111 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:07:19,112 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:07:19,113 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:07:19,113 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:07:19,114 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:07:19,114 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,114 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:07:19,115 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,115 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-30 09:07:19,115 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:07:19,116 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-30 09:07:19,116 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,116 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,116 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:07:19,117 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,117 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,118 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,118 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,119 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-30 09:07:19,120 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:07:19,120 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:07:19,120 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,121 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,121 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:07:19,121 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:07:19,121 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:07:19,122 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,122 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:07:19,123 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:07:19,123 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:07:19,124 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:07:19,125 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:07:19,125 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,126 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,127 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,127 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,128 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:07:19,129 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:07:19,130 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:07:19,131 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:07:19,132 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:07:19,133 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:07:19,133 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:07:19,134 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:07:19,135 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:07:19,135 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,136 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:07:19,136 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,137 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:07:19,138 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:07:19,138 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:07:19,178 - migrateData - INFO - 24 Idps created +2022-11-30 09:07:19,316 - migrateData - INFO - 409 Sps created +2022-11-30 09:10:08,176 - migrateData - INFO - No new data found +2022-11-30 09:10:08,180 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:10:08,182 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:10:08,184 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:10:08,185 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:10:08,187 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:10:08,191 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:10:08,193 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:10:08,195 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:10:08,197 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,198 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,199 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,203 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:10:08,204 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,205 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-30 09:10:08,205 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,205 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,206 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,206 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,207 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:10:08,207 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,207 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,207 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,208 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:10:08,208 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,208 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:10:08,209 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,209 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:10:08,209 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,210 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-30 09:10:08,210 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:10:08,210 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:10:08,210 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:10:08,222 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:10:08,223 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:10:08,223 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:10:08,223 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,224 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:10:08,224 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:10:08,224 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,224 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:10:08,225 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:10:08,225 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:10:08,225 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:10:08,225 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:10:08,225 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:10:08,226 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-30 09:10:08,226 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,226 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:10:08,227 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,227 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,227 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:10:08,227 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,228 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:10:08,228 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,228 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:10:08,228 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,229 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,229 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:10:08,229 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,229 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,230 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,230 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,231 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,231 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,231 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,232 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,232 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,232 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,233 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:10:08,233 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,233 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,234 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,234 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,234 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,234 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:10:08,235 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,235 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:10:08,235 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,235 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:10:08,236 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,236 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,236 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,237 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:10:08,237 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:10:08,237 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:10:08,238 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:10:08,238 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:10:08,238 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,238 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:10:08,239 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,239 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-30 09:10:08,239 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:10:08,240 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-30 09:10:08,240 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,240 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,240 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:10:08,241 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,241 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,241 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,241 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,242 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-30 09:10:08,242 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:10:08,242 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:10:08,242 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,243 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,243 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:10:08,243 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:10:08,243 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:10:08,244 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,244 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:10:08,244 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:10:08,245 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:10:08,245 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:10:08,245 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:10:08,246 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,246 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,246 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,246 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,248 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:10:08,248 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:10:08,249 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:10:08,255 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:10:08,256 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:10:08,256 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:10:08,257 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:10:08,257 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:10:08,257 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:10:08,258 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,258 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:10:08,258 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,258 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:10:08,259 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:10:08,259 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:10:08,289 - migrateData - INFO - 24 Idps created +2022-11-30 09:10:08,383 - migrateData - INFO - 409 Sps created +2022-11-30 09:10:08,399 - statisticsCountryHashedController - ERROR - Service entityid not found +2022-11-30 09:10:08,406 - pgConnector - ERROR - invalid input syntax for type date: "1bfaf5e477434bbbde82e7bc30435146" +LINE 2: VALUES ('1bfaf5e477434bbbde82e7bc30435146', '202... + ^ +2022-11-30 09:11:18,145 - migrateData - INFO - No new data found +2022-11-30 09:11:18,149 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:11:18,150 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:11:18,150 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:11:18,150 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:11:18,151 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:11:18,151 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:11:18,151 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:11:18,152 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:11:18,152 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,153 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,153 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,154 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:11:18,155 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,155 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-30 09:11:18,156 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,156 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,156 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,157 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,157 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:11:18,158 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,158 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,158 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,159 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:11:18,159 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,159 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:11:18,160 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,160 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:11:18,160 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,162 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-30 09:11:18,163 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:11:18,163 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:11:18,163 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:11:18,163 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:11:18,164 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:11:18,164 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:11:18,165 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,165 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:11:18,166 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:11:18,166 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,166 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:11:18,166 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:11:18,167 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:11:18,167 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:11:18,167 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:11:18,167 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:11:18,167 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-30 09:11:18,168 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,168 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:11:18,168 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,168 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,168 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:11:18,169 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,169 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:11:18,169 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,169 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:11:18,170 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,170 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,170 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:11:18,170 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,170 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,171 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,171 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,171 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,171 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,172 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,172 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,172 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,173 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,173 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:11:18,173 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,173 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,174 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,175 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,178 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,180 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:11:18,183 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,184 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:11:18,185 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,185 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:11:18,186 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,187 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,187 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,187 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:11:18,188 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:11:18,189 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:11:18,190 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:11:18,190 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:11:18,201 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,202 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:11:18,202 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,206 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-30 09:11:18,207 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:11:18,208 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-30 09:11:18,209 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,210 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,212 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:11:18,213 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,215 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,216 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,217 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,217 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-30 09:11:18,218 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:11:18,219 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:11:18,219 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,220 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,220 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:11:18,221 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:11:18,222 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:11:18,222 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,223 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:11:18,224 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:11:18,224 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:11:18,225 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:11:18,226 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:11:18,226 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,227 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,228 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,229 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,230 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:11:18,231 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:11:18,233 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:11:18,234 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:11:18,235 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:11:18,236 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:11:18,236 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:11:18,237 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:11:18,238 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:11:18,238 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,239 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:11:18,239 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,239 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:11:18,240 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:11:18,240 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:11:18,271 - migrateData - INFO - 24 Idps created +2022-11-30 09:11:18,364 - migrateData - INFO - 409 Sps created +2022-11-30 09:11:18,375 - statisticsCountryHashedController - ERROR - Service entityid not found +2022-11-30 09:11:18,378 - pgConnector - ERROR - invalid input syntax for type date: "1bfaf5e477434bbbde82e7bc30435146" +LINE 2: VALUES ('1bfaf5e477434bbbde82e7bc30435146', '202... + ^ +2022-11-30 09:12:02,744 - migrateData - INFO - No new data found +2022-11-30 09:12:02,751 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:12:02,752 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:12:02,752 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:12:02,752 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:12:02,753 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:12:02,753 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:12:02,754 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:12:02,754 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:12:02,755 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,755 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,755 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,756 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:12:02,756 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,756 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-30 09:12:02,757 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,757 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,757 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,763 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,764 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:12:02,765 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,765 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,766 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,766 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:12:02,766 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,766 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:12:02,767 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,767 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:12:02,767 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,768 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-30 09:12:02,768 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:12:02,768 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:12:02,768 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:12:02,769 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:12:02,769 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:12:02,769 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:12:02,770 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,770 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:12:02,770 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:12:02,771 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,771 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:12:02,772 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:12:02,772 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:12:02,772 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:12:02,773 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:12:02,773 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:12:02,774 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-30 09:12:02,774 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,775 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:12:02,775 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,775 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,775 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:12:02,776 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,776 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:12:02,776 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,776 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:12:02,777 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,777 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,777 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:12:02,777 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,777 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,778 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,781 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,781 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,781 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,782 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,785 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,787 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,790 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,791 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:12:02,792 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,793 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,794 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,795 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,796 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,797 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:12:02,798 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,799 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:12:02,800 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,801 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:12:02,801 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,809 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,810 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,811 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:12:02,813 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:12:02,814 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:12:02,815 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:12:02,817 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:12:02,818 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,819 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:12:02,820 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,821 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-30 09:12:02,822 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:12:02,822 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-30 09:12:02,823 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,825 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,826 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:12:02,827 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,829 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,833 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,834 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,835 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-30 09:12:02,835 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:12:02,836 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:12:02,837 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,838 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,839 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:12:02,840 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:12:02,841 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:12:02,841 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,842 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:12:02,843 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:12:02,844 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:12:02,844 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:12:02,845 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:12:02,846 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,846 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,848 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,849 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,850 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:12:02,851 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:12:02,852 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:12:02,853 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:12:02,854 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:12:02,855 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:12:02,855 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:12:02,856 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:12:02,857 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:12:02,858 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,859 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:12:02,859 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,860 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:12:02,861 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:12:02,862 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:12:02,887 - migrateData - INFO - 24 Idps created +2022-11-30 09:12:02,994 - migrateData - INFO - 409 Sps created +2022-11-30 09:12:03,008 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:12:03,010 - pgConnector - ERROR - invalid input syntax for type date: "1bfaf5e477434bbbde82e7bc30435146" +LINE 2: VALUES ('1bfaf5e477434bbbde82e7bc30435146', '202... + ^ +2022-11-30 09:15:46,398 - migrateData - INFO - No new data found +2022-11-30 09:15:46,404 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:15:46,408 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:15:46,411 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:15:46,415 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:15:46,418 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:15:46,422 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:15:46,426 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:15:46,429 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:15:46,432 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,432 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,433 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,433 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:15:46,434 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,438 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-30 09:15:46,440 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,441 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,441 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,447 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,450 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:15:46,453 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,454 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,457 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,458 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:15:46,459 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,459 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:15:46,460 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,460 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:15:46,461 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,461 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-30 09:15:46,462 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:15:46,475 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:15:46,479 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:15:46,482 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:15:46,486 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:15:46,487 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:15:46,487 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,488 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:15:46,494 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:15:46,496 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,497 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:15:46,497 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:15:46,498 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:15:46,499 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:15:46,499 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:15:46,500 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:15:46,500 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-30 09:15:46,501 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,501 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:15:46,502 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,502 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,503 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:15:46,503 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,504 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:15:46,504 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,505 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:15:46,514 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,517 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,520 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:15:46,523 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,525 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,528 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,531 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,534 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,536 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,538 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,541 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,542 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,545 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,546 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:15:46,547 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,548 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,549 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,551 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,552 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,553 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:15:46,553 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,554 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:15:46,555 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,556 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:15:46,557 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,558 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,559 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,560 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:15:46,561 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:15:46,562 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:15:46,563 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:15:46,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:15:46,574 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,575 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:15:46,575 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,576 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-30 09:15:46,578 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:15:46,579 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-30 09:15:46,580 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,581 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,581 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:15:46,582 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,582 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,583 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,584 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,585 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-30 09:15:46,586 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:15:46,587 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:15:46,589 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,591 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,593 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:15:46,595 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:15:46,597 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:15:46,598 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,600 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:15:46,601 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:15:46,603 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:15:46,604 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:15:46,606 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:15:46,607 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,609 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,610 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,611 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,612 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:15:46,613 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:15:46,614 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:15:46,616 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:15:46,617 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:15:46,618 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:15:46,619 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:15:46,621 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:15:46,622 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:15:46,624 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,625 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:15:46,626 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,627 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:15:46,628 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:15:46,629 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:15:46,664 - migrateData - INFO - 24 Idps created +2022-11-30 09:15:46,781 - migrateData - INFO - 409 Sps created +2022-11-30 09:15:46,809 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:15:46,811 - statisticsCountryHashedController - INFO - 1bfaf5e477434bbbde82e7bc30435146 +2022-11-30 09:15:46,812 - pgConnector - ERROR - invalid input syntax for type date: "1bfaf5e477434bbbde82e7bc30435146" +LINE 2: VALUES ('1bfaf5e477434bbbde82e7bc30435146', '202... + ^ +2022-11-30 09:16:28,556 - migrateData - INFO - No new data found +2022-11-30 09:16:28,560 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:28,561 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:16:28,562 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:16:28,563 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:16:28,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:28,565 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:28,566 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:16:28,567 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:16:28,570 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,571 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,572 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,573 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:28,578 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,579 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-30 09:16:28,584 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,584 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,585 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,585 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,585 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:16:28,586 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,586 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,586 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,587 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:28,587 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,587 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:16:28,588 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,588 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:16:28,588 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,589 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-30 09:16:28,589 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:16:28,589 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:28,590 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:16:28,590 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:16:28,590 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:16:28,591 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:16:28,591 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,591 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:16:28,592 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:28,592 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,592 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:16:28,593 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:28,593 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:16:28,593 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:16:28,593 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:16:28,594 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:28,594 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-30 09:16:28,595 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,596 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:28,596 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,597 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,597 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:16:28,597 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,598 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:16:28,599 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,600 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:28,600 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,601 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,601 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:16:28,602 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,602 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,603 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,623 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,626 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,627 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,629 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,631 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,631 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,633 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,633 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:28,634 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,636 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,637 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,638 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,638 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,639 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:16:28,639 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,640 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:28,641 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,641 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:28,642 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,655 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,656 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,657 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:16:28,658 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:28,658 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:28,659 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:28,660 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:28,660 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,661 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:28,661 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,662 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-30 09:16:28,662 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:16:28,663 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-30 09:16:28,663 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,664 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,664 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:28,665 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,665 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,665 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,666 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,667 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-30 09:16:28,667 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:28,668 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:28,668 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,669 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,669 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:16:28,669 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:16:28,670 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:16:28,671 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,671 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:28,672 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:16:28,672 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:28,673 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:28,673 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:28,674 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,674 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,678 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,680 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,681 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:28,682 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:28,684 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:28,685 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:28,686 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:28,687 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:28,687 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:28,687 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:28,688 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:28,688 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,688 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:16:28,688 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,689 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:16:28,689 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:28,689 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:16:28,726 - migrateData - INFO - 24 Idps created +2022-11-30 09:16:28,804 - migrateData - INFO - 409 Sps created +2022-11-30 09:16:28,815 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:28,817 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,819 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,821 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,823 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,825 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,827 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,828 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,832 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,833 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,835 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,837 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,839 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,842 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,844 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,845 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,847 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,848 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,849 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,851 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,852 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,853 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:28,855 - statisticsCountryHashedController - INFO - 2020-12-22 +2022-11-30 09:16:28,856 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,858 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,859 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,861 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:28,862 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:28,863 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:28,865 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,869 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,871 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,873 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,874 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,876 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,878 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,879 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,881 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,883 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:28,885 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,886 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,887 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,888 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,889 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,891 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,894 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,896 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,899 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,901 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,902 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:28,904 - statisticsCountryHashedController - INFO - 2020-12-23 +2022-11-30 09:16:28,906 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,907 - statisticsCountryHashedController - INFO - 2020-12-24 +2022-11-30 09:16:28,910 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:28,910 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:28,911 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,913 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,914 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,915 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,917 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,917 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,918 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,918 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,919 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,921 - statisticsCountryHashedController - INFO - 2020-12-27 +2022-11-30 09:16:28,922 - statisticsCountryHashedController - INFO - 2020-12-27 +2022-11-30 09:16:28,924 - statisticsCountryHashedController - INFO - 2020-12-27 +2022-11-30 09:16:28,926 - statisticsCountryHashedController - INFO - 2020-12-27 +2022-11-30 09:16:28,927 - statisticsCountryHashedController - INFO - 2020-12-27 +2022-11-30 09:16:28,929 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,930 - statisticsCountryHashedController - INFO - 2020-12-27 +2022-11-30 09:16:28,932 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,933 - statisticsCountryHashedController - INFO - 2020-12-27 +2022-11-30 09:16:28,935 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:28,937 - statisticsCountryHashedController - INFO - 2020-12-28 +2022-11-30 09:16:28,938 - statisticsCountryHashedController - INFO - 2020-12-28 +2022-11-30 09:16:28,940 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,941 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,943 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,944 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,946 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:28,948 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,952 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,954 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,955 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,957 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,958 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,959 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,961 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,962 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,964 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,966 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,968 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,970 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,971 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:28,975 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,976 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,979 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,981 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,983 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,984 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,986 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,990 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,992 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:28,993 - statisticsCountryHashedController - INFO - 2020-12-29 +2022-11-30 09:16:28,995 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:28,996 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:28,998 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:28,998 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:29,000 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:29,000 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found +2022-11-30 09:16:29,002 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,004 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,006 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:29,008 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:29,009 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:29,011 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,012 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:29,014 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,015 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,016 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,018 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,020 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:29,020 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,023 - statisticsCountryHashedController - INFO - 2021-04-09 +2022-11-30 09:16:29,025 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,026 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,028 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,030 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:29,031 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,032 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,032 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:29,034 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:29,045 - statisticsCountryHashedController - INFO - 2021-05-06 +2022-11-30 09:16:29,047 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,049 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,050 - statisticsCountryHashedController - INFO - 2020-12-30 +2022-11-30 09:16:29,052 - statisticsCountryHashedController - INFO - 2020-12-31 +2022-11-30 09:16:29,054 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,055 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,056 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,057 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:29,057 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,058 - statisticsCountryHashedController - INFO - 2020-12-31 +2022-11-30 09:16:29,060 - statisticsCountryHashedController - INFO - 2021-05-07 +2022-11-30 09:16:29,064 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,065 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found +2022-11-30 09:16:29,066 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,067 - statisticsCountryHashedController - INFO - 2020-12-31 +2022-11-30 09:16:29,069 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,070 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,071 - statisticsCountryHashedController - INFO - 2021-05-07 +2022-11-30 09:16:29,072 - statisticsCountryHashedController - INFO - 2021-04-10 +2022-11-30 09:16:29,074 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,078 - statisticsCountryHashedController - INFO - 2021-04-10 +2022-11-30 09:16:29,081 - statisticsCountryHashedController - INFO - 2021-05-07 +2022-11-30 09:16:29,083 - statisticsCountryHashedController - INFO - 2021-01-01 +2022-11-30 09:16:29,085 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,086 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,087 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,088 - statisticsCountryHashedController - INFO - 2021-01-02 +2022-11-30 09:16:29,090 - statisticsCountryHashedController - INFO - 2021-05-07 +2022-11-30 09:16:29,092 - statisticsCountryHashedController - INFO - 2021-05-07 +2022-11-30 09:16:29,093 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,094 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,095 - statisticsCountryHashedController - INFO - 2021-05-07 +2022-11-30 09:16:29,096 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:29,098 - statisticsCountryHashedController - INFO - 2021-05-07 +2022-11-30 09:16:29,100 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,101 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,102 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:29,103 - statisticsCountryHashedController - INFO - 2021-04-11 +2022-11-30 09:16:29,105 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,106 - statisticsCountryHashedController - INFO - 2021-01-04 +2022-11-30 09:16:29,108 - statisticsCountryHashedController - INFO - 2021-01-04 +2022-11-30 09:16:29,109 - statisticsCountryHashedController - INFO - 2021-01-04 +2022-11-30 09:16:29,110 - statisticsCountryHashedController - INFO - 2021-01-04 +2022-11-30 09:16:29,112 - statisticsCountryHashedController - INFO - 2021-01-04 +2022-11-30 09:16:29,113 - statisticsCountryHashedController - INFO - 2021-05-08 +2022-11-30 09:16:29,116 - statisticsCountryHashedController - INFO - 2021-01-04 +2022-11-30 09:16:29,117 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,124 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,126 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,127 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,128 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,130 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,132 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,134 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,136 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,140 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,147 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,149 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,151 - statisticsCountryHashedController - INFO - 2021-04-11 +2022-11-30 09:16:29,153 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,154 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,156 - statisticsCountryHashedController - INFO - 2021-01-05 +2022-11-30 09:16:29,158 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,159 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,160 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,161 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,163 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,164 - statisticsCountryHashedController - INFO - 2021-01-06 +2022-11-30 09:16:29,167 - statisticsCountryHashedController - INFO - 2021-01-06 +2022-11-30 09:16:29,169 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,171 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,172 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,175 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,176 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:29,178 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,180 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,181 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:29,182 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,183 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,184 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,185 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,186 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,202 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,204 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,206 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,210 - statisticsCountryHashedController - INFO - 2021-01-07 +2022-11-30 09:16:29,212 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,214 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:29,214 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,217 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,218 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,220 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,220 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,222 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,224 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,226 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,228 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,230 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,232 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,234 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,236 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,238 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,239 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,241 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,243 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,244 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,246 - statisticsCountryHashedController - INFO - 2021-01-08 +2022-11-30 09:16:29,248 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,249 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,263 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,266 - statisticsCountryHashedController - INFO - 2021-01-10 +2022-11-30 09:16:29,278 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,281 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,283 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:29,291 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,293 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,295 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,298 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,300 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,304 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,308 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,312 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,314 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,315 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,316 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,319 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,322 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,323 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found +2022-11-30 09:16:29,324 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,326 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,328 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,329 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,330 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:29,331 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,334 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,337 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,340 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,342 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,345 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,347 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,348 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,349 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,355 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,356 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,359 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,361 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,364 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,366 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,368 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,371 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,373 - statisticsCountryHashedController - INFO - 2021-01-11 +2022-11-30 09:16:29,375 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found +2022-11-30 09:16:29,376 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,378 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,379 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,381 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,382 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,384 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,386 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:29,387 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found +2022-11-30 09:16:29,390 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,392 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,393 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,396 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,397 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,401 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,402 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:29,404 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,406 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,407 - statisticsCountryHashedController - INFO - 2021-04-12 +2022-11-30 09:16:29,409 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,410 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,412 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,414 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,415 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,415 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,417 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,420 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,422 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,424 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,427 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,428 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,429 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,431 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,433 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,435 - statisticsCountryHashedController - ERROR - Service entityid bulut.truba.gov.tr not found +2022-11-30 09:16:29,436 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,441 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,445 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,448 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,450 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:29,452 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,455 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,458 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,461 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,463 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,466 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,469 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,471 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,473 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,475 - statisticsCountryHashedController - INFO - 2021-01-12 +2022-11-30 09:16:29,483 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:29,483 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,484 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,485 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,489 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,490 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,491 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,494 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,496 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,498 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,500 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,504 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,505 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,505 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:29,505 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,508 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,510 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,511 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,512 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found +2022-11-30 09:16:29,513 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,514 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,516 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,519 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,520 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:29,521 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,523 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,525 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,527 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,531 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,533 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,534 - statisticsCountryHashedController - INFO - 2021-05-10 +2022-11-30 09:16:29,537 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,542 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,543 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,544 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,546 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,548 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,550 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,552 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,554 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,556 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,557 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,562 - statisticsCountryHashedController - ERROR - Service entityid test not found +2022-11-30 09:16:29,563 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,565 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,567 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,569 - statisticsCountryHashedController - ERROR - Service entityid bulut.truba.gov.tr not found +2022-11-30 09:16:29,571 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,575 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,577 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,579 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,580 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,580 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,581 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,582 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,590 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,591 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:29,593 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,594 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,597 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,598 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,599 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:29,600 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,603 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,604 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,606 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,607 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,610 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,612 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,613 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,614 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,616 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,618 - statisticsCountryHashedController - INFO - 2021-01-13 +2022-11-30 09:16:29,620 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,622 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,623 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,628 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,630 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,635 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,637 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,638 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:29,641 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,642 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,644 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,646 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,648 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,650 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,651 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,653 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,655 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,656 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,659 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,661 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:29,662 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,663 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,665 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,668 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,670 - statisticsCountryHashedController - INFO - 2021-04-13 +2022-11-30 09:16:29,673 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,675 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,677 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,679 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,681 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,693 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,698 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,699 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,701 - statisticsCountryHashedController - INFO - 2021-01-14 +2022-11-30 09:16:29,703 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,705 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,706 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,708 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,711 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,714 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,718 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,721 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,723 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,726 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,728 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,731 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,743 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:29,744 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,746 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found +2022-11-30 09:16:29,748 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,753 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,754 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,756 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,757 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,759 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,760 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,761 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,763 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,764 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,765 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,767 - statisticsCountryHashedController - INFO - 2021-01-15 +2022-11-30 09:16:29,768 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,768 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,770 - statisticsCountryHashedController - INFO - 2021-01-16 +2022-11-30 09:16:29,771 - statisticsCountryHashedController - INFO - 2021-01-16 +2022-11-30 09:16:29,773 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,774 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,776 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,776 - statisticsCountryHashedController - INFO - 2021-01-16 +2022-11-30 09:16:29,778 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,783 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,784 - statisticsCountryHashedController - INFO - 2021-01-17 +2022-11-30 09:16:29,786 - statisticsCountryHashedController - INFO - 2021-01-17 +2022-11-30 09:16:29,788 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,789 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,790 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:29,791 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,792 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,793 - statisticsCountryHashedController - ERROR - Service entityid bulut.truba.gov.tr not found +2022-11-30 09:16:29,794 - statisticsCountryHashedController - INFO - 2021-01-17 +2022-11-30 09:16:29,795 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,796 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,796 - statisticsCountryHashedController - INFO - 2021-01-17 +2022-11-30 09:16:29,798 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,800 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,803 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,805 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,807 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,809 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,811 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,813 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,815 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,817 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,819 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,821 - statisticsCountryHashedController - INFO - 2021-05-11 +2022-11-30 09:16:29,822 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:29,823 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,825 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,826 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,828 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,829 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,830 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,832 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,834 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,839 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,841 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,842 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,844 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,846 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,848 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,851 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,852 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,854 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,856 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,857 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:29,858 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,860 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,862 - statisticsCountryHashedController - INFO - 2021-01-18 +2022-11-30 09:16:29,864 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,866 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,867 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,868 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,869 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,871 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,872 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,874 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,875 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,877 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,879 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,881 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,883 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,885 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,887 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,888 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,890 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,892 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,893 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,903 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:29,905 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:29,907 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,908 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,909 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:29,910 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,911 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,913 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,915 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,917 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,919 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,923 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,925 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,927 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,929 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,931 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,932 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,934 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,935 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,938 - statisticsCountryHashedController - INFO - 2021-01-19 +2022-11-30 09:16:29,940 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:29,941 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,942 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,943 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,944 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:29,945 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,946 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found +2022-11-30 09:16:29,947 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,949 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,953 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,955 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,958 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,959 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,961 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,962 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,964 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,966 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,968 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,969 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,971 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,972 - statisticsCountryHashedController - INFO - 2021-04-14 +2022-11-30 09:16:29,973 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,975 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,977 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,979 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,981 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,983 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,984 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,985 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,987 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,989 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,991 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,991 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,993 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:29,994 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,995 - statisticsCountryHashedController - INFO - 2021-01-20 +2022-11-30 09:16:29,996 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:29,997 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:29,999 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,001 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,003 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,004 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,007 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,008 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,010 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,011 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,013 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,014 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,016 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,017 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,019 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:30,020 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,021 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,023 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,024 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,026 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,027 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,028 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,030 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,032 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,035 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,036 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,038 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,040 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:30,040 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,042 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,043 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,045 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,047 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,049 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,051 - statisticsCountryHashedController - INFO - 2021-01-21 +2022-11-30 09:16:30,053 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,055 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,056 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,059 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,061 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,062 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,064 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,065 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,066 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,068 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,070 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,072 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,074 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,075 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,077 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,078 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,080 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,082 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,084 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,086 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,091 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,092 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,094 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,096 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,097 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,099 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,101 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,103 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,105 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,111 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,113 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,115 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,118 - statisticsCountryHashedController - INFO - 2021-01-22 +2022-11-30 09:16:30,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,120 - statisticsCountryHashedController - INFO - 2021-01-23 +2022-11-30 09:16:30,122 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,125 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,127 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,128 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,130 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,132 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:30,133 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,135 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,137 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,139 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,141 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,142 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,144 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,145 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,147 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,149 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,151 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,153 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,154 - statisticsCountryHashedController - ERROR - Service entityid 5cb3d4d1-4990-4941-b126-829eed975fd5 not found +2022-11-30 09:16:30,155 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,156 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,157 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,159 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,161 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,163 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,165 - statisticsCountryHashedController - INFO - 2021-04-15 +2022-11-30 09:16:30,166 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:30,168 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,176 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,178 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,181 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,184 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,186 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,188 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,190 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,192 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,193 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,194 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,196 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,198 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,199 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,201 - statisticsCountryHashedController - INFO - 2021-01-25 +2022-11-30 09:16:30,203 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,205 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,208 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,209 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,219 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,221 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,224 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,227 - statisticsCountryHashedController - ERROR - Service entityid 5cb3d4d1-4990-4941-b126-829eed975fd5 not found +2022-11-30 09:16:30,228 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,231 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,233 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,236 - statisticsCountryHashedController - INFO - 2021-05-12 +2022-11-30 09:16:30,239 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,240 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,242 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,243 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,245 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,247 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,250 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,252 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,254 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,255 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,257 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,258 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,262 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,263 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,266 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,271 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,275 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,276 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,278 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,282 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,284 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:30,287 - statisticsCountryHashedController - INFO - 2021-05-13 +2022-11-30 09:16:30,289 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,291 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,293 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:30,294 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,296 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,298 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,299 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,300 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:30,301 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,304 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,306 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,308 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,310 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,313 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,314 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,316 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,318 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,325 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,329 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,331 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,335 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,337 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,339 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,342 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,344 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,347 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,348 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,349 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,351 - statisticsCountryHashedController - INFO - 2021-01-26 +2022-11-30 09:16:30,352 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,354 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,356 - statisticsCountryHashedController - INFO - 2021-05-13 +2022-11-30 09:16:30,359 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,362 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,365 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,366 - statisticsCountryHashedController - INFO - 2021-05-13 +2022-11-30 09:16:30,368 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,370 - statisticsCountryHashedController - INFO - 2021-04-16 +2022-11-30 09:16:30,372 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,372 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found +2022-11-30 09:16:30,373 - statisticsCountryHashedController - INFO - 2021-05-13 +2022-11-30 09:16:30,379 - statisticsCountryHashedController - INFO - 2021-05-13 +2022-11-30 09:16:30,381 - statisticsCountryHashedController - INFO - 2021-05-13 +2022-11-30 09:16:30,383 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,384 - statisticsCountryHashedController - INFO - 2021-05-13 +2022-11-30 09:16:30,387 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,389 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,391 - statisticsCountryHashedController - INFO - 2021-04-17 +2022-11-30 09:16:30,395 - statisticsCountryHashedController - INFO - 2021-04-17 +2022-11-30 09:16:30,396 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:30,398 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,399 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,400 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,402 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,404 - statisticsCountryHashedController - INFO - 2021-04-17 +2022-11-30 09:16:30,406 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,407 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,408 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,410 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,411 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,412 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,413 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,415 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,417 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,418 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,419 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,421 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,422 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,427 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,429 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,431 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:30,432 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,436 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,438 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,441 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,443 - statisticsCountryHashedController - INFO - 2021-04-18 +2022-11-30 09:16:30,446 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,447 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,449 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,451 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,452 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,454 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,456 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,457 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,459 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,461 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,463 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,464 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,466 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,468 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,475 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,478 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,481 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,484 - statisticsCountryHashedController - INFO - 2021-05-14 +2022-11-30 09:16:30,486 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,487 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,489 - statisticsCountryHashedController - INFO - 2021-01-27 +2022-11-30 09:16:30,490 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found +2022-11-30 09:16:30,492 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,494 - statisticsCountryHashedController - INFO - 2021-05-15 +2022-11-30 09:16:30,495 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:30,496 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,498 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,499 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,501 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,503 - statisticsCountryHashedController - INFO - 2021-04-18 +2022-11-30 09:16:30,506 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,507 - statisticsCountryHashedController - INFO - 2021-04-18 +2022-11-30 09:16:30,509 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,512 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,513 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:30,514 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,517 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,519 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,521 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,522 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,525 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,534 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,537 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,539 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,542 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,543 - statisticsCountryHashedController - INFO - 2021-05-16 +2022-11-30 09:16:30,546 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,551 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,554 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,557 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,559 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,561 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,564 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,569 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found +2022-11-30 09:16:30,573 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,575 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,578 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,582 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,604 - statisticsCountryHashedController - INFO - 2021-05-16 +2022-11-30 09:16:30,606 - statisticsCountryHashedController - INFO - 2021-05-16 +2022-11-30 09:16:30,621 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:30,626 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,628 - statisticsCountryHashedController - INFO - 2021-01-28 +2022-11-30 09:16:30,635 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,637 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,639 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,642 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,644 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,646 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,648 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,649 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,651 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,653 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,654 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,656 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,658 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,662 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,665 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,668 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,671 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,674 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,676 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,682 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,684 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,686 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,688 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,691 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,704 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,706 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,708 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,710 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found +2022-11-30 09:16:30,712 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,714 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,715 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,719 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,720 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,722 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,725 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,727 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,729 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,730 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found +2022-11-30 09:16:30,731 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,733 - statisticsCountryHashedController - INFO - 2021-01-29 +2022-11-30 09:16:30,736 - statisticsCountryHashedController - INFO - 2021-01-30 +2022-11-30 09:16:30,737 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,738 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,738 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,739 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,739 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,741 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,742 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:30,743 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,765 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,766 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,768 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,769 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,771 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,772 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,774 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,777 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,779 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found +2022-11-30 09:16:30,783 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,785 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:30,786 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,788 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,790 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,792 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found +2022-11-30 09:16:30,793 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,795 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,797 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,798 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,800 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,802 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,804 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,805 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,807 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found +2022-11-30 09:16:30,808 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,808 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,810 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,815 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,817 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,818 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,819 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,820 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,821 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,822 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,824 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,827 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,829 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,831 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,835 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,837 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,839 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,841 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,843 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,845 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:30,845 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,847 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,849 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,850 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,852 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,853 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,855 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,857 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,859 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,861 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,862 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,864 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,865 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,866 - statisticsCountryHashedController - INFO - 2021-04-19 +2022-11-30 09:16:30,868 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,868 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:30,869 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:30,870 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,871 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:30,872 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,874 - statisticsCountryHashedController - INFO - 2021-05-17 +2022-11-30 09:16:30,877 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,883 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,885 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,887 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,889 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,891 - statisticsCountryHashedController - INFO - 2021-02-01 +2022-11-30 09:16:30,892 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:30,894 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,896 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,898 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,900 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:30,901 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,903 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,904 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,906 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,909 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,913 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:30,914 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,916 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,918 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,920 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,921 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,925 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,931 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,933 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,945 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,951 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,953 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,954 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,956 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,958 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,960 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,962 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,965 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,967 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,968 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,970 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,971 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,973 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,975 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,977 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,978 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,980 - statisticsCountryHashedController - ERROR - Service entityid newEMSO not found +2022-11-30 09:16:30,981 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,982 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:30,984 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:30,986 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,987 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,989 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,991 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,992 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,994 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:30,995 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,997 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:30,998 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:30,999 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:31,002 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:31,004 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:31,006 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,007 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found +2022-11-30 09:16:31,008 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:31,010 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:31,013 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,014 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,017 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,019 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:31,020 - statisticsCountryHashedController - INFO - 2021-02-02 +2022-11-30 09:16:31,022 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,024 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,026 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,027 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,029 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,031 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,032 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,034 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,035 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,037 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,038 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,040 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,043 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,044 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,046 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,048 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,049 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,050 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,053 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,055 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,057 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,057 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,063 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,064 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,066 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,068 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,070 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,071 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,073 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,074 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,075 - statisticsCountryHashedController - ERROR - Service entityid newEMSO not found +2022-11-30 09:16:31,076 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,077 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,080 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,082 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,084 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,086 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,087 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:31,089 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,091 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,093 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,095 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,097 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,099 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,101 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,102 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,104 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,105 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,107 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,109 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,110 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,112 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,113 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,114 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,115 - statisticsCountryHashedController - INFO - 2021-02-03 +2022-11-30 09:16:31,116 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,118 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,118 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,120 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:31,120 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,123 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,125 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,127 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,136 - statisticsCountryHashedController - ERROR - Service entityid 20001e63-94f9-4d23-b6a3-34f2d015d2fa not found +2022-11-30 09:16:31,137 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:31,137 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,138 - statisticsCountryHashedController - ERROR - Service entityid 7e7b6a97-bf7d-44c1-9819-45a919f9fd67 not found +2022-11-30 09:16:31,139 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:31,139 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,139 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,141 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,143 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,145 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,147 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,148 - statisticsCountryHashedController - ERROR - Service entityid eosc-performance not found +2022-11-30 09:16:31,149 - statisticsCountryHashedController - INFO - 2021-04-20 +2022-11-30 09:16:31,150 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:31,151 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found +2022-11-30 09:16:31,152 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:31,153 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,155 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,157 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,159 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,161 - statisticsCountryHashedController - INFO - 2021-05-18 +2022-11-30 09:16:31,163 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,164 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,166 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,167 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,168 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,171 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,175 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,180 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,182 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,206 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,209 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,213 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,215 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,217 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,219 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,221 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,222 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:31,223 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,224 - statisticsCountryHashedController - INFO - 2021-02-04 +2022-11-30 09:16:31,227 - statisticsCountryHashedController - ERROR - Service entityid 59153ccc-b010-426d-b5cd-f13ec16f20e7 not found +2022-11-30 09:16:31,229 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,232 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,234 - statisticsCountryHashedController - ERROR - Service entityid 59153ccc-b010-426d-b5cd-f13ec16f20e7 not found +2022-11-30 09:16:31,235 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,236 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,247 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found +2022-11-30 09:16:31,249 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,250 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,252 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,255 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,257 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,259 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,262 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,263 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,265 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:31,267 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,270 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,275 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,278 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,281 - statisticsCountryHashedController - ERROR - Service entityid 23a67871-130a-47a3-bffb-da6f05b8f886 not found +2022-11-30 09:16:31,282 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:31,283 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:31,285 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,287 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,290 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,293 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,297 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,298 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,300 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,302 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,304 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,307 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,308 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,310 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,312 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,313 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,315 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,316 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,318 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,320 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,322 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,323 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,324 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,326 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,327 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,328 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,330 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,331 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,332 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:31,333 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,339 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,341 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,343 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,345 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,349 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,351 - statisticsCountryHashedController - INFO - 2021-04-21 +2022-11-30 09:16:31,353 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,355 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:31,356 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,358 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,360 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,362 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found +2022-11-30 09:16:31,363 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,365 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,368 - statisticsCountryHashedController - INFO - 2021-02-05 +2022-11-30 09:16:31,370 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,371 - statisticsCountryHashedController - INFO - 2021-02-06 +2022-11-30 09:16:31,373 - statisticsCountryHashedController - INFO - 2021-02-06 +2022-11-30 09:16:31,374 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found +2022-11-30 09:16:31,375 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,377 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,379 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,383 - statisticsCountryHashedController - INFO - 2021-02-06 +2022-11-30 09:16:31,385 - statisticsCountryHashedController - INFO - 2021-02-06 +2022-11-30 09:16:31,387 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,389 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,389 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found +2022-11-30 09:16:31,395 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,397 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:31,397 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,398 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:31,399 - statisticsCountryHashedController - INFO - 2021-02-07 +2022-11-30 09:16:31,400 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,402 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,405 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,406 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,408 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,409 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:31,410 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,413 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,416 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,418 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,420 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,422 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,423 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,423 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:31,424 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,426 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,427 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,428 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found +2022-11-30 09:16:31,429 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,430 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,432 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,435 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,437 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,438 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,448 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,449 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:31,451 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,453 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,455 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,457 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:31,458 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,460 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,462 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,464 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,467 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,470 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,472 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,474 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,477 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,478 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,479 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,480 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:31,481 - statisticsCountryHashedController - INFO - 2021-05-19 +2022-11-30 09:16:31,484 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,486 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,488 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,495 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,497 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:31,498 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,500 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,503 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,513 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,516 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,519 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,521 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,524 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,526 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:31,526 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,527 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,528 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,529 - statisticsCountryHashedController - INFO - 2021-02-08 +2022-11-30 09:16:31,531 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,532 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,534 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,535 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,536 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found +2022-11-30 09:16:31,537 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,538 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,539 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,541 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,544 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,551 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,555 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,558 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,561 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,563 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,566 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,569 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,572 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,574 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,577 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,580 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,583 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,586 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,589 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,592 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,594 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:31,596 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,602 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,603 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,603 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,605 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,608 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,610 - statisticsCountryHashedController - INFO - 2021-04-22 +2022-11-30 09:16:31,612 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,614 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,615 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,616 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,618 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,620 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,621 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,621 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:31,623 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,624 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,626 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,627 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,629 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,637 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,640 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,643 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,645 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found +2022-11-30 09:16:31,647 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,649 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,650 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,651 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,653 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,654 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,656 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,658 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,660 - statisticsCountryHashedController - INFO - 2021-05-20 +2022-11-30 09:16:31,662 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,664 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,666 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,668 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,670 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,671 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,673 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,677 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,679 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,681 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,683 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,685 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,700 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,704 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,706 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,711 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,715 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,717 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,719 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,722 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,723 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,725 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,732 - statisticsCountryHashedController - INFO - 2021-02-09 +2022-11-30 09:16:31,733 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,734 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,736 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,737 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,739 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,740 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,741 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,742 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,744 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,746 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,749 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,750 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found +2022-11-30 09:16:31,752 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,753 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found +2022-11-30 09:16:31,755 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,757 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,759 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,760 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,763 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,765 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,766 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,768 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,770 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,771 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,772 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,773 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,776 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,779 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,781 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found +2022-11-30 09:16:31,783 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,786 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,787 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,789 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,790 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:31,791 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,793 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,796 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,800 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,803 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,814 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,816 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,818 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,821 - statisticsCountryHashedController - INFO - 2021-02-10 +2022-11-30 09:16:31,823 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,825 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,831 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,833 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,834 - statisticsCountryHashedController - INFO - 2021-02-11 +2022-11-30 09:16:31,835 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:31,839 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,843 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:31,843 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,845 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,846 - statisticsCountryHashedController - INFO - 2021-05-21 +2022-11-30 09:16:31,848 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found +2022-11-30 09:16:31,850 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,851 - statisticsCountryHashedController - INFO - 2021-02-11 +2022-11-30 09:16:31,866 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,869 - statisticsCountryHashedController - INFO - 2021-02-11 +2022-11-30 09:16:31,878 - statisticsCountryHashedController - INFO - 2021-02-11 +2022-11-30 09:16:31,893 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,894 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,895 - statisticsCountryHashedController - INFO - 2021-02-11 +2022-11-30 09:16:31,897 - statisticsCountryHashedController - INFO - 2021-05-22 +2022-11-30 09:16:31,898 - statisticsCountryHashedController - INFO - 2021-05-22 +2022-11-30 09:16:31,900 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,901 - statisticsCountryHashedController - ERROR - Service entityid 773da5b9-1a83-4e6f-8cb9-512cbd07b8ea not found +2022-11-30 09:16:31,902 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,902 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,905 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,908 - statisticsCountryHashedController - INFO - 2021-02-11 +2022-11-30 09:16:31,909 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:31,911 - statisticsCountryHashedController - INFO - 2021-02-11 +2022-11-30 09:16:31,912 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,914 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,916 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,918 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,919 - statisticsCountryHashedController - ERROR - Service entityid 773da5b9-1a83-4e6f-8cb9-512cbd07b8ea not found +2022-11-30 09:16:31,919 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,921 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,922 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:31,923 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,925 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,927 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,929 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,930 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,932 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,933 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,935 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,937 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,938 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,939 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:31,940 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:31,941 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,942 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,943 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,943 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:31,944 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,945 - statisticsCountryHashedController - INFO - 2021-05-23 +2022-11-30 09:16:31,947 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,947 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,949 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:31,949 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,951 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,953 - statisticsCountryHashedController - INFO - 2021-05-23 +2022-11-30 09:16:31,955 - statisticsCountryHashedController - INFO - 2021-05-23 +2022-11-30 09:16:31,957 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,959 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,961 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,962 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,963 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,964 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,966 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found +2022-11-30 09:16:31,967 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,968 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,969 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,969 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:31,970 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:31,970 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,973 - statisticsCountryHashedController - INFO - 2021-02-12 +2022-11-30 09:16:31,975 - statisticsCountryHashedController - INFO - 2021-02-13 +2022-11-30 09:16:31,976 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,977 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:31,977 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:31,978 - statisticsCountryHashedController - INFO - 2021-02-13 +2022-11-30 09:16:31,980 - statisticsCountryHashedController - INFO - 2021-02-13 +2022-11-30 09:16:31,981 - statisticsCountryHashedController - INFO - 2021-02-13 +2022-11-30 09:16:31,983 - statisticsCountryHashedController - INFO - 2021-02-13 +2022-11-30 09:16:31,984 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:31,985 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,987 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:31,989 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,990 - statisticsCountryHashedController - INFO - 2021-02-14 +2022-11-30 09:16:31,992 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,993 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:31,995 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,996 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:31,999 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:32,001 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:32,003 - statisticsCountryHashedController - INFO - 2021-04-23 +2022-11-30 09:16:32,004 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:32,005 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,007 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,008 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,010 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found +2022-11-30 09:16:32,011 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found +2022-11-30 09:16:32,012 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,013 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found +2022-11-30 09:16:32,014 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,018 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,020 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,022 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,023 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,025 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,026 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,027 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,029 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,030 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,031 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,031 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,032 - statisticsCountryHashedController - INFO - 2021-02-14 +2022-11-30 09:16:32,034 - statisticsCountryHashedController - INFO - 2021-04-24 +2022-11-30 09:16:32,035 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,037 - statisticsCountryHashedController - ERROR - Service entityid eosc-performance not found +2022-11-30 09:16:32,037 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,039 - statisticsCountryHashedController - INFO - 2021-04-24 +2022-11-30 09:16:32,040 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found +2022-11-30 09:16:32,041 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,041 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,043 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,045 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,047 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,049 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,051 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,052 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,054 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,056 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,058 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,060 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,063 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,065 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,067 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,068 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,069 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,070 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,073 - statisticsCountryHashedController - INFO - 2021-04-24 +2022-11-30 09:16:32,075 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:32,075 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:32,076 - statisticsCountryHashedController - INFO - 2021-05-24 +2022-11-30 09:16:32,077 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,078 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,080 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,081 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,085 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,087 - statisticsCountryHashedController - INFO - 2021-04-25 +2022-11-30 09:16:32,089 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,090 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,092 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,093 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,094 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,119 - statisticsCountryHashedController - INFO - 2021-02-15 +2022-11-30 09:16:32,127 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,127 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,127 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:32,128 - statisticsCountryHashedController - INFO - 2021-04-25 +2022-11-30 09:16:32,130 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,132 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,134 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,136 - statisticsCountryHashedController - INFO - 2021-04-25 +2022-11-30 09:16:32,138 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:32,138 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,139 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,149 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,152 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,154 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,155 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,156 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,156 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,157 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,158 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,159 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,161 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,163 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,164 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,166 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,166 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,167 - statisticsCountryHashedController - ERROR - Service entityid eosc-performance not found +2022-11-30 09:16:32,168 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,169 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:32,170 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,172 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,173 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,175 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:32,175 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:32,176 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,176 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,178 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,179 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,180 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,183 - statisticsCountryHashedController - INFO - 2021-02-16 +2022-11-30 09:16:32,191 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,193 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,195 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,200 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,204 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,207 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,209 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,211 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,213 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,214 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,217 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,218 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,221 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,225 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,228 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,230 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,232 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,236 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,239 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,241 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,243 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:32,244 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,247 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,250 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found +2022-11-30 09:16:32,251 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,253 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,255 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,260 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,262 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,263 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,265 - statisticsCountryHashedController - ERROR - Service entityid sdc-keycloak not found +2022-11-30 09:16:32,267 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,270 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,273 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,275 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,276 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,278 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,280 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,287 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,293 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,297 - statisticsCountryHashedController - INFO - 2021-04-26 +2022-11-30 09:16:32,299 - statisticsCountryHashedController - ERROR - Service entityid https://snf-14603.ok-kno.grnetcloud.net/registry not found +2022-11-30 09:16:32,300 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,302 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:32,304 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,306 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,308 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,310 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,311 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,314 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,315 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,317 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,320 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,321 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,324 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,326 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,328 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,330 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,332 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,334 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,336 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,347 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,350 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,353 - statisticsCountryHashedController - INFO - 2021-05-25 +2022-11-30 09:16:32,355 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,355 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,357 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,358 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:32,360 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,362 - statisticsCountryHashedController - ERROR - Service entityid sdc-keycloak not found +2022-11-30 09:16:32,363 - statisticsCountryHashedController - ERROR - Service entityid sdc-keycloak not found +2022-11-30 09:16:32,364 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,366 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,367 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,369 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,371 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,372 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:32,373 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,374 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,376 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,377 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,383 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,385 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,388 - statisticsCountryHashedController - INFO - 2021-02-17 +2022-11-30 09:16:32,398 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,401 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,403 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,405 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,406 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found +2022-11-30 09:16:32,407 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found +2022-11-30 09:16:32,408 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,410 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,412 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,414 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,416 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,418 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,420 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,422 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,424 - statisticsCountryHashedController - ERROR - Service entityid a83ee657-da5a-40d2-9904-fe9c33afa0f2 not found +2022-11-30 09:16:32,424 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,425 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,426 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,428 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:32,429 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,430 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,431 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,432 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,434 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,437 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,440 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,442 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,444 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,445 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,449 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,451 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,454 - statisticsCountryHashedController - INFO - 2021-02-18 +2022-11-30 09:16:32,456 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,458 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,461 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:32,463 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,465 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,467 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,470 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,473 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,476 - statisticsCountryHashedController - INFO - 2021-04-27 +2022-11-30 09:16:32,478 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,478 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:32,480 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,482 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,484 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:32,485 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,486 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,487 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,489 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,501 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,502 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,503 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,505 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,525 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,526 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:32,526 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found +2022-11-30 09:16:32,528 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,531 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,534 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,536 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,538 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,540 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,541 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:32,543 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:32,544 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,547 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,549 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,552 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,553 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,555 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,557 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,559 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,560 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,562 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,564 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,565 - statisticsCountryHashedController - INFO - 2021-05-26 +2022-11-30 09:16:32,568 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,574 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,577 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,579 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,580 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,585 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,586 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,588 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,590 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,591 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,593 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,595 - statisticsCountryHashedController - INFO - 2021-02-19 +2022-11-30 09:16:32,596 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,598 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,599 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,601 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,602 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,603 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,604 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,606 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,608 - statisticsCountryHashedController - INFO - 2021-02-20 +2022-11-30 09:16:32,609 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,611 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found +2022-11-30 09:16:32,611 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,613 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,615 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,616 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found +2022-11-30 09:16:32,617 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,620 - statisticsCountryHashedController - INFO - 2021-02-20 +2022-11-30 09:16:32,621 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,622 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,624 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,625 - statisticsCountryHashedController - INFO - 2021-02-21 +2022-11-30 09:16:32,628 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,629 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,632 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,635 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,636 - statisticsCountryHashedController - INFO - 2021-02-21 +2022-11-30 09:16:32,638 - statisticsCountryHashedController - INFO - 2021-02-21 +2022-11-30 09:16:32,640 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,641 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,642 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,644 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,646 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,648 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,649 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,651 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:32,654 - statisticsCountryHashedController - INFO - 2021-02-21 +2022-11-30 09:16:32,656 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:32,661 - statisticsCountryHashedController - INFO - 2021-02-21 +2022-11-30 09:16:32,663 - statisticsCountryHashedController - ERROR - Service entityid 4c4ba6f1-fbbe-4dad-a61e-0dcd60e32bb1 not found +2022-11-30 09:16:32,664 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,666 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,668 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,670 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,672 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,674 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found +2022-11-30 09:16:32,692 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,693 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,695 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,697 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:32,698 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,700 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,701 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,702 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,704 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,706 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,708 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,715 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found +2022-11-30 09:16:32,716 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,727 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,728 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,729 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,731 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,732 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,734 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,735 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,736 - statisticsCountryHashedController - INFO - 2021-04-28 +2022-11-30 09:16:32,738 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,740 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,741 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,743 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,748 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,749 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,751 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,756 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,757 - statisticsCountryHashedController - INFO - 2021-05-27 +2022-11-30 09:16:32,759 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,760 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,763 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,764 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,771 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:32,772 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,774 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:32,775 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,782 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,784 - statisticsCountryHashedController - INFO - 2021-02-22 +2022-11-30 09:16:32,786 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,788 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,789 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,790 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found +2022-11-30 09:16:32,790 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,792 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,795 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,798 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,804 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,815 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,817 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,820 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,846 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,848 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,849 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,851 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,852 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,855 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,858 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,862 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found +2022-11-30 09:16:32,863 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,865 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,866 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,868 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,870 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,872 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,875 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,876 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,878 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,880 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,881 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:32,883 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,884 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,885 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,887 - statisticsCountryHashedController - INFO - 2021-02-23 +2022-11-30 09:16:32,888 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,890 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,892 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,893 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,895 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:32,897 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,902 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,913 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,914 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,916 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,918 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:32,919 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,921 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,924 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,926 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,927 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,929 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,931 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,933 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,934 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,935 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,937 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,938 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,941 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,942 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,943 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:32,944 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,945 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,946 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found +2022-11-30 09:16:32,947 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,949 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,952 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,953 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:32,954 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,956 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found +2022-11-30 09:16:32,956 - statisticsCountryHashedController - ERROR - Service entityid bfed8446-2b9f-4cee-a68c-a0d73ad3ca1a not found +2022-11-30 09:16:32,956 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,958 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,960 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,960 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,961 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,963 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,966 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,968 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,971 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,972 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,974 - statisticsCountryHashedController - INFO - 2021-04-29 +2022-11-30 09:16:32,976 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,978 - statisticsCountryHashedController - INFO - 2021-02-24 +2022-11-30 09:16:32,979 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:32,980 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:32,980 - statisticsCountryHashedController - INFO - 2021-05-28 +2022-11-30 09:16:32,982 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:32,983 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:32,984 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:32,984 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:32,987 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:32,989 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:32,990 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:32,992 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:32,994 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:32,995 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:32,998 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:32,999 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,001 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:33,003 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:33,005 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:33,006 - statisticsCountryHashedController - INFO - 2021-04-30 +2022-11-30 09:16:33,008 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found +2022-11-30 09:16:33,008 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,009 - statisticsCountryHashedController - INFO - 2021-04-30 +2022-11-30 09:16:33,022 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:33,024 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:33,026 - statisticsCountryHashedController - INFO - 2021-04-30 +2022-11-30 09:16:33,028 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:33,029 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found +2022-11-30 09:16:33,030 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:33,031 - statisticsCountryHashedController - INFO - 2021-02-25 +2022-11-30 09:16:33,033 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,035 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,039 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,040 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,042 - statisticsCountryHashedController - INFO - 2021-05-29 +2022-11-30 09:16:33,044 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,045 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,046 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,047 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,049 - statisticsCountryHashedController - INFO - 2021-04-30 +2022-11-30 09:16:33,051 - statisticsCountryHashedController - INFO - 2021-04-30 +2022-11-30 09:16:33,053 - statisticsCountryHashedController - INFO - 2021-04-30 +2022-11-30 09:16:33,054 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,056 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,057 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:33,057 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,058 - statisticsCountryHashedController - INFO - 2021-04-30 +2022-11-30 09:16:33,060 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,061 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,062 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,064 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,065 - statisticsCountryHashedController - INFO - 2021-05-30 +2022-11-30 09:16:33,066 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,068 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,070 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,070 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,072 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,074 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,076 - statisticsCountryHashedController - INFO - 2021-02-26 +2022-11-30 09:16:33,077 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,078 - statisticsCountryHashedController - INFO - 2021-02-27 +2022-11-30 09:16:33,084 - statisticsCountryHashedController - INFO - 2021-02-27 +2022-11-30 09:16:33,086 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,086 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,087 - statisticsCountryHashedController - INFO - 2021-02-27 +2022-11-30 09:16:33,089 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,090 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,091 - statisticsCountryHashedController - INFO - 2021-02-27 +2022-11-30 09:16:33,092 - statisticsCountryHashedController - INFO - 2021-02-28 +2022-11-30 09:16:33,093 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,094 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found +2022-11-30 09:16:33,095 - statisticsCountryHashedController - INFO - 2021-02-28 +2022-11-30 09:16:33,096 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found +2022-11-30 09:16:33,097 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,097 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,098 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,099 - statisticsCountryHashedController - INFO - 2021-05-01 +2022-11-30 09:16:33,100 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,100 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,101 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found +2022-11-30 09:16:33,102 - statisticsCountryHashedController - INFO - 2021-02-28 +2022-11-30 09:16:33,103 - statisticsCountryHashedController - INFO - 2021-02-28 +2022-11-30 09:16:33,105 - statisticsCountryHashedController - INFO - 2021-02-28 +2022-11-30 09:16:33,107 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,108 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,110 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,110 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,112 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,113 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,117 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,118 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,120 - statisticsCountryHashedController - INFO - 2021-05-02 +2022-11-30 09:16:33,121 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,123 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,123 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,124 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,126 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,128 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,129 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,131 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,133 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,134 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,135 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,139 - statisticsCountryHashedController - INFO - 2021-05-02 +2022-11-30 09:16:33,140 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,142 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,143 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,145 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,146 - statisticsCountryHashedController - ERROR - Service entityid eosc:grn:gr not found +2022-11-30 09:16:33,147 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:33,147 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,148 - statisticsCountryHashedController - INFO - 2021-05-02 +2022-11-30 09:16:33,150 - statisticsCountryHashedController - ERROR - Service entityid https://cappakleis1.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:33,151 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,153 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,154 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,155 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:33,156 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,158 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,160 - statisticsCountryHashedController - INFO - 2021-05-03 +2022-11-30 09:16:33,161 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,162 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,163 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,165 - statisticsCountryHashedController - INFO - 2021-05-03 +2022-11-30 09:16:33,167 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,168 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:33,169 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,171 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:33,175 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,179 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,180 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,182 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,184 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,186 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,187 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,189 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,190 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,191 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,192 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,194 - statisticsCountryHashedController - INFO - 2021-05-31 +2022-11-30 09:16:33,195 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,196 - statisticsCountryHashedController - INFO - 2021-05-03 +2022-11-30 09:16:33,198 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:33,199 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,201 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,202 - statisticsCountryHashedController - INFO - 2021-03-01 +2022-11-30 09:16:33,214 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:33,216 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,225 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found +2022-11-30 09:16:33,226 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,229 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,231 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,233 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,236 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,238 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,240 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,242 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,244 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,246 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,248 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,249 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found +2022-11-30 09:16:33,250 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,252 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,254 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,256 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,256 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:33,257 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,259 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,262 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,265 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,266 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,267 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,268 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,269 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,270 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,271 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,272 - statisticsCountryHashedController - ERROR - Service entityid 78f817f0-d1bd-48fc-bab6-c35b5cf31aa7 not found +2022-11-30 09:16:33,273 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,276 - statisticsCountryHashedController - INFO - 2021-05-04 +2022-11-30 09:16:33,279 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,281 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,283 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,284 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,285 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,287 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,288 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,289 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,291 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,294 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,296 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,298 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,300 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:33,301 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,302 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,305 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,307 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,309 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:33,310 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,312 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,313 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,315 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,316 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:33,316 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:33,330 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,331 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,334 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,336 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,338 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,340 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,342 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,344 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:33,345 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,345 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:33,346 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,347 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:33,348 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,349 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,351 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,352 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,353 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,355 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,356 - statisticsCountryHashedController - INFO - 2021-03-02 +2022-11-30 09:16:33,361 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,362 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,362 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found +2022-11-30 09:16:33,363 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,365 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,367 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,369 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:33,371 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,374 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:33,375 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,377 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,378 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,380 - statisticsCountryHashedController - INFO - 2021-06-01 +2022-11-30 09:16:33,382 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:33,383 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,384 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,385 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,388 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,391 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,393 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,396 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,398 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,400 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,401 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,404 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,406 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:33,407 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,408 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found +2022-11-30 09:16:33,409 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,411 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,412 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,414 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,424 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,426 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,427 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,429 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,431 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,432 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,434 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:33,434 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,435 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:33,436 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,440 - statisticsCountryHashedController - INFO - 2021-03-03 +2022-11-30 09:16:33,442 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,444 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,445 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,447 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,449 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,451 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,452 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,455 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,456 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,458 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:33,459 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,461 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,462 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,463 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:33,464 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,466 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found +2022-11-30 09:16:33,467 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,469 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,475 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:33,475 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,476 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:33,477 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,479 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,480 - statisticsCountryHashedController - INFO - 2021-05-05 +2022-11-30 09:16:33,483 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,484 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,485 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,486 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,487 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,489 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,490 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,491 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,492 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,492 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:33,493 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,494 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,494 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,495 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss not found +2022-11-30 09:16:33,496 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,498 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:33,499 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,502 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,504 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,507 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,508 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:33,511 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,512 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:33,514 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,515 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,517 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,519 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,521 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,521 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:33,523 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,524 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,525 - statisticsCountryHashedController - INFO - 2021-06-02 +2022-11-30 09:16:33,527 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,531 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,532 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,534 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,536 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,538 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found +2022-11-30 09:16:33,539 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,540 - statisticsCountryHashedController - INFO - 2021-03-04 +2022-11-30 09:16:33,543 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:33,544 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,545 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,548 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,551 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,552 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,554 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,556 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,558 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,561 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,563 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,566 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,568 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,570 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,571 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,575 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,576 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,578 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,579 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,583 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,585 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found +2022-11-30 09:16:33,596 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,599 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,604 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,607 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,609 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,611 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,613 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:33,614 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,616 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,617 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,619 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,620 - statisticsCountryHashedController - ERROR - Service entityid b3eba1d4-4697-4532-8b46-993905bd621a not found +2022-11-30 09:16:33,621 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,621 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,622 - statisticsCountryHashedController - INFO - 2021-03-05 +2022-11-30 09:16:33,624 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,625 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,626 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,628 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,629 - statisticsCountryHashedController - INFO - 2021-03-06 +2022-11-30 09:16:33,635 - statisticsCountryHashedController - INFO - 2021-03-06 +2022-11-30 09:16:33,637 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,643 - statisticsCountryHashedController - INFO - 2021-03-07 +2022-11-30 09:16:33,645 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,646 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,648 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,650 - statisticsCountryHashedController - INFO - 2021-06-03 +2022-11-30 09:16:33,652 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,653 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,654 - statisticsCountryHashedController - INFO - 2021-03-07 +2022-11-30 09:16:33,719 - statisticsCountryHashedController - INFO - 2021-03-07 +2022-11-30 09:16:33,729 - statisticsCountryHashedController - INFO - 2021-03-07 +2022-11-30 09:16:33,731 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,732 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,734 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,736 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,738 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,739 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,750 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,752 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:33,755 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,758 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,760 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,762 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,764 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:33,766 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,772 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,775 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,778 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:33,780 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found +2022-11-30 09:16:33,793 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,802 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,805 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,808 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,809 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,810 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,811 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,813 - statisticsCountryHashedController - INFO - 2021-03-08 +2022-11-30 09:16:33,815 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,820 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found +2022-11-30 09:16:33,821 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,823 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:33,825 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,828 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,832 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,834 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,837 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,839 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,841 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,842 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,844 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:33,846 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,849 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,850 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,851 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,853 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,855 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,857 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,863 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:33,865 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,866 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,867 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,868 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,869 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,870 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,870 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,871 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,872 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,872 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,873 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,874 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,875 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,878 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,880 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:33,882 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:33,884 - statisticsCountryHashedController - INFO - 2021-03-09 +2022-11-30 09:16:33,886 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,886 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:33,886 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:33,887 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:33,889 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,891 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:33,891 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found +2022-11-30 09:16:33,892 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:33,893 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found +2022-11-30 09:16:33,895 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:33,897 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,897 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:33,898 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,900 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,902 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found +2022-11-30 09:16:33,903 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,904 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:33,905 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,908 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,909 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,911 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,914 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,916 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,920 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,924 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,927 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,929 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,931 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,933 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,936 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,937 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,939 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,942 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,944 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,946 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,947 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,948 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,950 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:33,951 - statisticsCountryHashedController - INFO - 2021-03-10 +2022-11-30 09:16:33,953 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:33,955 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,957 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,959 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,961 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,963 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,965 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,970 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,973 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,978 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,982 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,984 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,990 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,992 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,995 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:33,997 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:33,999 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:34,001 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:34,003 - statisticsCountryHashedController - INFO - 2021-03-11 +2022-11-30 09:16:34,004 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/sso not found +2022-11-30 09:16:34,005 - statisticsCountryHashedController - INFO - 2021-06-04 +2022-11-30 09:16:34,007 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,008 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,010 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,012 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,014 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,015 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,017 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,018 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,019 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,020 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,022 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,023 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,023 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,025 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,026 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,028 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,030 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,031 - statisticsCountryHashedController - INFO - 2021-06-05 +2022-11-30 09:16:34,033 - statisticsCountryHashedController - INFO - 2021-03-12 +2022-11-30 09:16:34,035 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,035 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,036 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,036 - statisticsCountryHashedController - INFO - 2021-03-13 +2022-11-30 09:16:34,038 - statisticsCountryHashedController - INFO - 2021-06-05 +2022-11-30 09:16:34,039 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,040 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,041 - statisticsCountryHashedController - INFO - 2021-03-14 +2022-11-30 09:16:34,043 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,044 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,045 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,047 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,049 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,058 - statisticsCountryHashedController - INFO - 2021-06-06 +2022-11-30 09:16:34,060 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,061 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/sso not found +2022-11-30 09:16:34,062 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,064 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,067 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,071 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,074 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,077 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,081 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,083 - statisticsCountryHashedController - INFO - 2021-03-15 +2022-11-30 09:16:34,084 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:34,085 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:34,086 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,088 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,091 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,094 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,096 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,103 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,104 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,106 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,114 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,117 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,118 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,121 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,122 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,125 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,127 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,129 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,131 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,131 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,133 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,136 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,137 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,139 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,140 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,141 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,142 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,144 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,145 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,146 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,148 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/proxy/module.php/saml/sp/metadata.php/sso not found +2022-11-30 09:16:34,148 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,151 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found +2022-11-30 09:16:34,153 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,155 - statisticsCountryHashedController - INFO - 2021-03-16 +2022-11-30 09:16:34,156 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,158 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,159 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,160 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,162 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,164 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,165 - statisticsCountryHashedController - INFO - 2021-06-07 +2022-11-30 09:16:34,167 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,170 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,172 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,173 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,174 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,175 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,175 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,176 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,177 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,178 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:34,180 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,182 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,183 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,184 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,186 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,188 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,189 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,191 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,192 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:34,193 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,194 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,195 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,196 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,198 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,199 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,200 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,201 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,203 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,205 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,208 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,209 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,211 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,213 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,215 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,216 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,218 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,220 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,222 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,222 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:34,223 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,226 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,227 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,228 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,229 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,230 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,232 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,233 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,235 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,236 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,236 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,237 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,237 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,239 - statisticsCountryHashedController - INFO - 2021-03-17 +2022-11-30 09:16:34,240 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,241 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,241 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:34,242 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,243 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,244 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,245 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,246 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,247 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,247 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,249 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,250 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,252 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,253 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,253 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found +2022-11-30 09:16:34,254 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,254 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,255 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:34,257 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,259 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,262 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,266 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,268 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,270 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,272 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,274 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,279 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,280 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,282 - statisticsCountryHashedController - INFO - 2021-06-08 +2022-11-30 09:16:34,284 - statisticsCountryHashedController - INFO - 2021-03-18 +2022-11-30 09:16:34,285 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,287 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,287 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,288 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,291 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,293 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,294 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,296 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,298 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,299 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:34,300 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,302 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,304 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,306 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,308 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,309 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,311 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,313 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,320 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,328 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,329 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found +2022-11-30 09:16:34,330 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,332 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,338 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,339 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,342 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,358 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,360 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,362 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,363 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,364 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,366 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,368 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,370 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,372 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,374 - statisticsCountryHashedController - INFO - 2021-03-19 +2022-11-30 09:16:34,378 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,379 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,379 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,380 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,380 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,381 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,382 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,384 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,385 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,388 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,391 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,392 - statisticsCountryHashedController - INFO - 2021-06-09 +2022-11-30 09:16:34,394 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,395 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,396 - statisticsCountryHashedController - INFO - 2021-03-20 +2022-11-30 09:16:34,398 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,399 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,400 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,401 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,402 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,403 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,404 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,405 - statisticsCountryHashedController - INFO - 2021-03-21 +2022-11-30 09:16:34,407 - statisticsCountryHashedController - INFO - 2021-03-21 +2022-11-30 09:16:34,409 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:34,409 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,411 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,413 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,416 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,418 - statisticsCountryHashedController - INFO - 2021-06-10 +2022-11-30 09:16:34,420 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,422 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,424 - statisticsCountryHashedController - INFO - 2021-06-10 +2022-11-30 09:16:34,427 - statisticsCountryHashedController - INFO - 2021-06-10 +2022-11-30 09:16:34,430 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,433 - statisticsCountryHashedController - INFO - 2021-06-10 +2022-11-30 09:16:34,435 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,438 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,439 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,440 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,443 - statisticsCountryHashedController - INFO - 2021-06-10 +2022-11-30 09:16:34,444 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,447 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,448 - statisticsCountryHashedController - INFO - 2021-06-10 +2022-11-30 09:16:34,450 - statisticsCountryHashedController - INFO - 2021-06-10 +2022-11-30 09:16:34,452 - statisticsCountryHashedController - INFO - 2021-06-10 +2022-11-30 09:16:34,453 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,454 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,457 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,460 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,461 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,463 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,464 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,464 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,465 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found +2022-11-30 09:16:34,466 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,468 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,469 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found +2022-11-30 09:16:34,470 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,472 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,474 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,477 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,479 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,480 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,481 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:34,481 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,484 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,488 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,491 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,493 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:34,493 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,494 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,495 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,498 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,500 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,501 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,503 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,505 - statisticsCountryHashedController - INFO - 2021-06-11 +2022-11-30 09:16:34,506 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,517 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,519 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,521 - statisticsCountryHashedController - INFO - 2021-03-22 +2022-11-30 09:16:34,522 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,524 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,525 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,525 - statisticsCountryHashedController - INFO - 2021-06-12 +2022-11-30 09:16:34,527 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,530 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,532 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,534 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,537 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,540 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,542 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,544 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,545 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,547 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,548 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,550 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,553 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,555 - statisticsCountryHashedController - INFO - 2021-06-13 +2022-11-30 09:16:34,557 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,559 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,560 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,563 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,564 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,567 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,569 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,571 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,573 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,574 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,576 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,577 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,584 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,586 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,588 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:34,588 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,589 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,592 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,594 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,596 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:34,597 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,600 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,602 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,603 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,605 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,606 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,607 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,608 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found +2022-11-30 09:16:34,609 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,610 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,612 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,613 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,623 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,625 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,627 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,631 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,632 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,633 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,635 - statisticsCountryHashedController - INFO - 2021-06-14 +2022-11-30 09:16:34,636 - statisticsCountryHashedController - ERROR - Service entityid 574f1d35-58ac-4e43-9515-f4c062ec29b7 not found +2022-11-30 09:16:34,637 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,638 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,639 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,640 - statisticsCountryHashedController - INFO - 2021-03-23 +2022-11-30 09:16:34,641 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,641 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,642 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,642 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:34,645 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,647 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,648 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,650 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,652 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,653 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:34,667 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,669 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,684 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,686 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,688 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found +2022-11-30 09:16:34,690 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:34,692 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,694 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,697 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,700 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:34,702 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,726 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,728 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,731 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,733 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,736 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,738 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,739 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,742 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,744 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:34,745 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,746 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,749 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,750 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,753 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,756 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,757 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,758 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,760 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,762 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,776 - statisticsCountryHashedController - INFO - 2021-06-15 +2022-11-30 09:16:34,778 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,779 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,784 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found +2022-11-30 09:16:34,785 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,788 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,790 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,791 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,792 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,794 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,799 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,803 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,810 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,811 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,812 - statisticsCountryHashedController - ERROR - Service entityid 574f1d35-58ac-4e43-9515-f4c062ec29b7 not found +2022-11-30 09:16:34,813 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,814 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,815 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,816 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,816 - statisticsCountryHashedController - ERROR - Service entityid a83ee657-da5a-40d2-9904-fe9c33afa0f2 not found +2022-11-30 09:16:34,816 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,818 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,820 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,824 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,829 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,832 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,833 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,833 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,834 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,836 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,838 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,839 - statisticsCountryHashedController - ERROR - Service entityid a83ee657-da5a-40d2-9904-fe9c33afa0f2 not found +2022-11-30 09:16:34,841 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,867 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,874 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,876 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,879 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,881 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,883 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,890 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,893 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,896 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,902 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,905 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:34,907 - statisticsCountryHashedController - INFO - 2021-06-16 +2022-11-30 09:16:34,910 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,913 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,915 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,916 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,918 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,920 - statisticsCountryHashedController - INFO - 2021-03-24 +2022-11-30 09:16:34,922 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,923 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:34,924 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,926 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,928 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:34,930 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,932 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,935 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,936 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,936 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:34,939 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,941 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,942 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:34,943 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,946 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found +2022-11-30 09:16:34,947 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,947 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:34,948 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,952 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,955 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,956 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,958 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,960 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,964 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,966 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,967 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,969 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,970 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,971 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,972 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,973 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,975 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,976 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,977 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss not found +2022-11-30 09:16:34,978 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:34,980 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,982 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,983 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,985 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,986 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:34,987 - statisticsCountryHashedController - ERROR - Service entityid a83ee657-da5a-40d2-9904-fe9c33afa0f2 not found +2022-11-30 09:16:34,988 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,990 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:34,992 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,994 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,996 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:34,999 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:35,000 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:35,002 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:35,003 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:35,004 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,004 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,005 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,005 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,006 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,007 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:35,008 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,010 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:35,012 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:35,013 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:35,015 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,016 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:35,019 - statisticsCountryHashedController - INFO - 2021-03-25 +2022-11-30 09:16:35,021 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,023 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,024 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:35,026 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,028 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found +2022-11-30 09:16:35,031 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:35,033 - statisticsCountryHashedController - INFO - 2021-06-17 +2022-11-30 09:16:35,035 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,036 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,037 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,039 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,039 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,041 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,043 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,045 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,047 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,048 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,050 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found +2022-11-30 09:16:35,051 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,052 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,054 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,056 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,057 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found +2022-11-30 09:16:35,058 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,059 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,059 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:35,060 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,062 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,066 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,067 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,069 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,070 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,072 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,075 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,076 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,078 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,079 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,082 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,084 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,086 - statisticsCountryHashedController - INFO - 2021-03-26 +2022-11-30 09:16:35,088 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,089 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,091 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,091 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,092 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,094 - statisticsCountryHashedController - INFO - 2021-06-18 +2022-11-30 09:16:35,095 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,096 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,096 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,097 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,098 - statisticsCountryHashedController - INFO - 2021-03-27 +2022-11-30 09:16:35,100 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,100 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,101 - statisticsCountryHashedController - INFO - 2021-03-27 +2022-11-30 09:16:35,102 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,103 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,104 - statisticsCountryHashedController - INFO - 2021-03-28 +2022-11-30 09:16:35,105 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,105 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,106 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,106 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,110 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,111 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,113 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,115 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,117 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,120 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,123 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,125 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,126 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,128 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,129 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,130 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,132 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,133 - statisticsCountryHashedController - INFO - 2021-06-19 +2022-11-30 09:16:35,135 - statisticsCountryHashedController - INFO - 2021-06-19 +2022-11-30 09:16:35,136 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,137 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,138 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,139 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,140 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,141 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,142 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,144 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,146 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,147 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,148 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,149 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,151 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,152 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,152 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,153 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,155 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,158 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,160 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,160 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,162 - statisticsCountryHashedController - INFO - 2021-03-29 +2022-11-30 09:16:35,163 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,165 - statisticsCountryHashedController - INFO - 2021-06-20 +2022-11-30 09:16:35,176 - statisticsCountryHashedController - INFO - 2021-06-20 +2022-11-30 09:16:35,178 - statisticsCountryHashedController - INFO - 2021-06-20 +2022-11-30 09:16:35,179 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,181 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,182 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,183 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,186 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,188 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,190 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,192 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,194 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,197 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,198 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,199 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,202 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found +2022-11-30 09:16:35,204 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,206 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,210 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,212 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,224 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,225 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,227 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,231 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,232 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,234 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,236 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,237 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,239 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,241 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,243 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,244 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,246 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,249 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,251 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,252 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,254 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,255 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,256 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,258 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,260 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,262 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,263 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,264 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,266 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,267 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,268 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,269 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,270 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,272 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,272 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,275 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,277 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,278 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,279 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,281 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,283 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,284 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,285 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,295 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,297 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,299 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,301 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,303 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,305 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,306 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,308 - statisticsCountryHashedController - INFO - 2021-03-30 +2022-11-30 09:16:35,310 - statisticsCountryHashedController - INFO - 2021-06-21 +2022-11-30 09:16:35,311 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,313 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,316 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:35,317 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:35,319 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,321 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,323 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,326 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,336 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,340 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,342 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,344 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,346 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,349 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,351 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,352 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,354 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,354 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:35,355 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,357 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,358 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,360 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,362 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,364 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,365 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,367 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss not found +2022-11-30 09:16:35,369 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,371 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,372 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,376 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,377 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,380 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,381 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:35,382 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,383 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,383 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,384 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss not found +2022-11-30 09:16:35,384 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,386 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,388 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,390 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,395 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,397 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,398 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,400 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,402 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,404 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,404 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,406 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,408 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,409 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,411 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,413 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,415 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,420 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,421 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,424 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,426 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,427 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,429 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,431 - statisticsCountryHashedController - INFO - 2021-03-31 +2022-11-30 09:16:35,432 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,433 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,435 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,437 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,439 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,441 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,443 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,445 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,446 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,447 - statisticsCountryHashedController - INFO - 2021-06-22 +2022-11-30 09:16:35,449 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,451 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,452 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,454 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,455 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,456 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,458 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,460 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,462 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,464 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,466 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,475 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,477 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,481 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,484 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,486 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,488 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,491 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,493 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,496 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,498 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,499 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,502 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,505 - statisticsCountryHashedController - INFO - 2021-04-01 +2022-11-30 09:16:35,507 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,508 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,510 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,515 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,517 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,518 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,518 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,519 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,519 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,521 - statisticsCountryHashedController - ERROR - Service entityid vito-default-client not found +2022-11-30 09:16:35,522 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found +2022-11-30 09:16:35,543 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,550 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,551 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,552 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,554 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,556 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,565 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,566 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found +2022-11-30 09:16:35,569 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,572 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found +2022-11-30 09:16:35,573 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found +2022-11-30 09:16:35,574 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,575 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found +2022-11-30 09:16:35,576 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,580 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,587 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,589 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,591 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,592 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,594 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,596 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,598 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,600 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,602 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,605 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,607 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,610 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,611 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,611 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,612 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,614 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,616 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,617 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,619 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,633 - statisticsCountryHashedController - INFO - 2021-06-23 +2022-11-30 09:16:35,636 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,638 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,643 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,645 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,647 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,648 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,650 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,650 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,651 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,653 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,654 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,655 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,657 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,659 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:35,661 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,663 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:35,664 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,665 - statisticsCountryHashedController - INFO - 2021-04-02 +2022-11-30 09:16:35,667 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:35,667 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,669 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,670 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,671 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,671 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,673 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,674 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,675 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,677 - statisticsCountryHashedController - INFO - 2021-06-24 +2022-11-30 09:16:35,695 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,696 - statisticsCountryHashedController - INFO - 2021-06-24 +2022-11-30 09:16:35,698 - statisticsCountryHashedController - INFO - 2021-06-24 +2022-11-30 09:16:35,700 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,701 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found +2022-11-30 09:16:35,702 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,704 - statisticsCountryHashedController - INFO - 2021-06-24 +2022-11-30 09:16:35,707 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found +2022-11-30 09:16:35,709 - statisticsCountryHashedController - INFO - 2021-06-24 +2022-11-30 09:16:35,711 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:35,712 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,715 - statisticsCountryHashedController - INFO - 2021-04-03 +2022-11-30 09:16:35,717 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,718 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,720 - statisticsCountryHashedController - INFO - 2021-04-03 +2022-11-30 09:16:35,722 - statisticsCountryHashedController - INFO - 2021-04-03 +2022-11-30 09:16:35,724 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,726 - statisticsCountryHashedController - INFO - 2021-04-04 +2022-11-30 09:16:35,729 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,734 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,736 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,738 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,740 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,741 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:35,743 - statisticsCountryHashedController - INFO - 2021-04-04 +2022-11-30 09:16:35,745 - statisticsCountryHashedController - INFO - 2021-04-04 +2022-11-30 09:16:35,748 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,750 - statisticsCountryHashedController - INFO - 2021-04-04 +2022-11-30 09:16:35,752 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,754 - statisticsCountryHashedController - INFO - 2021-04-04 +2022-11-30 09:16:35,756 - statisticsCountryHashedController - INFO - 2021-04-04 +2022-11-30 09:16:35,762 - statisticsCountryHashedController - INFO - 2021-04-04 +2022-11-30 09:16:35,765 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,766 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,769 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,770 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,771 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,773 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,776 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,779 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,782 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,785 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,788 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,789 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,792 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,798 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,800 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,805 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,806 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,807 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,809 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,811 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,813 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,816 - statisticsCountryHashedController - INFO - 2021-06-25 +2022-11-30 09:16:35,819 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,820 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,821 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found +2022-11-30 09:16:35,822 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,823 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,825 - statisticsCountryHashedController - INFO - 2021-04-05 +2022-11-30 09:16:35,826 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,826 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,827 - statisticsCountryHashedController - INFO - 2021-06-26 +2022-11-30 09:16:35,828 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,830 - statisticsCountryHashedController - INFO - 2021-06-26 +2022-11-30 09:16:35,831 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found +2022-11-30 09:16:35,832 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,832 - statisticsCountryHashedController - INFO - 2021-06-26 +2022-11-30 09:16:35,835 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,838 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,840 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,843 - statisticsCountryHashedController - INFO - 2021-06-27 +2022-11-30 09:16:35,845 - statisticsCountryHashedController - INFO - 2021-06-27 +2022-11-30 09:16:35,848 - statisticsCountryHashedController - INFO - 2021-06-27 +2022-11-30 09:16:35,851 - statisticsCountryHashedController - INFO - 2021-06-27 +2022-11-30 09:16:35,853 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-binder not found +2022-11-30 09:16:35,856 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,858 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,860 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found +2022-11-30 09:16:35,862 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,864 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,866 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,869 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,872 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,874 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,876 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,880 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,881 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,882 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,884 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,886 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,889 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,891 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,893 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,895 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,897 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,898 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,901 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,903 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:35,903 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,905 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,906 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,908 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:35,908 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:35,909 - statisticsCountryHashedController - INFO - 2021-04-06 +2022-11-30 09:16:35,912 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,914 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,917 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,919 - statisticsCountryHashedController - ERROR - Service entityid 30413bb9-6fdc-4887-95da-2d8d51b458fd not found +2022-11-30 09:16:35,920 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,922 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,924 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,926 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,928 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,930 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found +2022-11-30 09:16:35,931 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-binder not found +2022-11-30 09:16:35,932 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,934 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,936 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,940 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:35,941 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found +2022-11-30 09:16:35,943 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:35,944 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,947 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,949 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,951 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,954 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,957 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,959 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found +2022-11-30 09:16:35,961 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,964 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,965 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,969 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,971 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,971 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,973 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,974 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:35,975 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,977 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,978 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,980 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:35,981 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,983 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,985 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,987 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:35,988 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:35,990 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,996 - statisticsCountryHashedController - INFO - 2021-06-28 +2022-11-30 09:16:35,999 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:36,012 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found +2022-11-30 09:16:36,013 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:36,014 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,016 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:36,017 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,019 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,020 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,022 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,023 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,025 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,027 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,030 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,032 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,033 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,034 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,036 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found +2022-11-30 09:16:36,036 - statisticsCountryHashedController - ERROR - Service entityid cb847477-b992-4447-963f-eb6a7655d231 not found +2022-11-30 09:16:36,037 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,038 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,039 - statisticsCountryHashedController - ERROR - Service entityid cb847477-b992-4447-963f-eb6a7655d231 not found +2022-11-30 09:16:36,041 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,043 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:36,045 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,047 - statisticsCountryHashedController - INFO - 2021-04-07 +2022-11-30 09:16:36,051 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:36,052 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:36,053 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,056 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,057 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,058 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,058 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,059 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,060 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,060 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,061 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,061 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,062 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found +2022-11-30 09:16:36,062 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:36,062 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,065 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:36,065 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,066 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,066 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:36,068 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,070 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,071 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,073 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,075 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,077 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,078 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,080 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,081 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,082 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,084 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,085 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,087 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,088 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,089 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:36,089 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,091 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,093 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,094 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,094 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,095 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,096 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:36,098 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,099 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,100 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,101 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,102 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,104 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,106 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,107 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found +2022-11-30 09:16:36,108 - statisticsCountryHashedController - INFO - 2021-06-29 +2022-11-30 09:16:36,109 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,110 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:36,110 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,112 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,114 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,117 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:36,118 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:36,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:36,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found +2022-11-30 09:16:36,121 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,123 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,124 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,126 - statisticsCountryHashedController - ERROR - Service entityid test not found +2022-11-30 09:16:36,126 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found +2022-11-30 09:16:36,127 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,129 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,130 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,131 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,133 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,137 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,138 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found +2022-11-30 09:16:36,140 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,141 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,143 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:36,143 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,144 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,146 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:36,149 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,150 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,152 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,154 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,155 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,158 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,160 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,161 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,163 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,163 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:36,164 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,165 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,166 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,168 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,170 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found +2022-11-30 09:16:36,171 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,172 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,174 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,176 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,178 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,179 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,179 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,180 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,181 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,181 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,182 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found +2022-11-30 09:16:36,184 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,186 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,187 - statisticsCountryHashedController - INFO - 2021-04-08 +2022-11-30 09:16:36,188 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,189 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,190 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:36,190 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,191 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found +2022-11-30 09:16:36,191 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found +2022-11-30 09:16:36,192 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,192 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,193 - statisticsCountryHashedController - ERROR - Identity provider identifier not found +2022-11-30 09:16:36,193 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found +2022-11-30 09:16:36,194 - statisticsCountryHashedController - INFO - 2021-06-30 +2022-11-30 09:16:36,195 - statisticsCountryHashedController - INFO - 2546 Country Stats created +2022-11-30 09:16:56,033 - migrateData - INFO - No new data found +2022-11-30 09:16:56,037 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:56,039 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:16:56,040 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:16:56,040 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 09:16:56,041 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:56,042 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:56,042 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:16:56,042 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:16:56,043 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,043 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,043 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,044 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:56,044 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,044 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-30 09:16:56,045 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,045 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,045 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,046 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,046 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:16:56,046 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,047 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,047 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,047 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:56,047 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,048 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:16:56,048 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,048 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:16:56,048 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,049 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-30 09:16:56,049 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 09:16:56,049 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:56,050 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:16:56,050 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:16:56,050 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 09:16:56,051 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 09:16:56,051 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,053 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 09:16:56,054 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:56,054 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,055 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:16:56,055 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:56,056 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:16:56,057 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:16:56,058 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:16:56,059 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:56,060 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-30 09:16:56,061 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,061 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:56,062 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,063 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,063 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:16:56,066 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,067 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:16:56,067 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,067 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 09:16:56,068 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,069 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,069 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 09:16:56,070 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,070 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,071 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,073 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,073 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,074 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,074 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,076 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,077 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,078 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,078 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 09:16:56,079 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,080 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,080 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,081 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,082 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,082 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 09:16:56,083 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,084 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:56,085 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,086 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 09:16:56,086 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,088 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,088 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,089 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 09:16:56,090 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:56,091 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:56,091 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:56,092 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:56,093 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,093 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:56,094 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,095 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-30 09:16:56,095 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:16:56,096 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-30 09:16:56,097 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,098 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,098 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 09:16:56,099 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,100 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,101 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,101 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,102 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-30 09:16:56,103 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:56,104 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 09:16:56,104 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,105 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,105 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:16:56,106 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:16:56,107 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 09:16:56,107 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,108 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:56,109 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 09:16:56,109 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:56,110 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:56,111 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:56,111 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,112 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,113 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,114 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,115 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:56,115 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:56,116 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:56,117 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:56,119 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 09:16:56,120 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:56,121 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 09:16:56,122 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:56,127 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 09:16:56,128 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,128 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:16:56,129 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,129 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:16:56,130 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 09:16:56,130 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 09:16:56,164 - migrateData - INFO - 24 Idps created +2022-11-30 09:16:56,250 - migrateData - INFO - 409 Sps created +2022-11-30 09:16:56,252 - statisticsCountryHashedController - INFO - 0 Country Stats created +2022-11-30 14:04:13,833 - migrateData - INFO - No new data found +2022-11-30 14:04:13,845 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 14:04:13,845 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 14:04:13,845 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 14:04:13,846 - migrateData - INFO - Vo name WP5 with id 6 +2022-11-30 14:04:13,846 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 14:04:13,846 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 14:04:13,847 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 14:04:13,847 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 14:04:13,847 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,848 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,848 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,848 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 14:04:13,849 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,849 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 +2022-11-30 14:04:13,849 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,850 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,850 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,850 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,850 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 14:04:13,851 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,851 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,851 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,852 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 14:04:13,852 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,852 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 14:04:13,852 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,853 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 14:04:13,853 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,853 - migrateData - INFO - Vo name eiscat.se with id 24 +2022-11-30 14:04:13,854 - migrateData - INFO - Vo name WP5-all with id 5 +2022-11-30 14:04:13,854 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 14:04:13,854 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 14:04:13,855 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 14:04:13,855 - migrateData - INFO - Vo name test-sso-confluence with id 11 +2022-11-30 14:04:13,855 - migrateData - INFO - Vo name test-sso-mailman with id 10 +2022-11-30 14:04:13,856 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,856 - migrateData - INFO - Vo name rcauth.eu with id 15 +2022-11-30 14:04:13,856 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 14:04:13,857 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,857 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 14:04:13,857 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 14:04:13,858 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 14:04:13,858 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 14:04:13,858 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 14:04:13,858 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 14:04:13,859 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 +2022-11-30 14:04:13,859 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,860 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 14:04:13,860 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,860 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,861 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 14:04:13,861 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,861 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 14:04:13,862 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,863 - migrateData - INFO - Vo name vo.geoss.eu with id 1 +2022-11-30 14:04:13,863 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,863 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,864 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-11-30 14:04:13,864 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 14:04:13,865 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 14:04:13,865 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,866 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 14:04:13,867 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 14:04:13,867 - migrateData - INFO - Vo name radio-observatory with id 21 +2022-11-30 14:04:13,868 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,869 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,871 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,872 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,873 - migrateData - INFO - Vo name vo.dariah.eu with id 2 +2022-11-30 14:04:13,874 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,875 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 14:04:13,876 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,877 - migrateData - INFO - Vo name training.egi.eu with id 4 +2022-11-30 14:04:13,877 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,879 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,881 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,882 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 +2022-11-30 14:04:13,883 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 14:04:13,884 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 14:04:13,885 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 14:04:13,886 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 14:04:13,887 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,888 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 14:04:13,893 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,893 - migrateData - INFO - Vo name test-TRIPLE with id 17 +2022-11-30 14:04:13,894 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 14:04:13,894 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-11-30 14:04:13,895 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,895 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,896 - migrateData - INFO - Vo name checkin-integration with id 3 +2022-11-30 14:04:13,896 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,897 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,897 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,898 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,899 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 +2022-11-30 14:04:13,900 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 14:04:13,900 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-11-30 14:04:13,903 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,905 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,906 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 14:04:13,907 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 14:04:13,908 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 +2022-11-30 14:04:13,909 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,910 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 14:04:13,912 - migrateData - INFO - Vo name AMB with id 9 +2022-11-30 14:04:13,913 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 14:04:13,915 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 14:04:13,916 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 14:04:13,918 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,919 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,921 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,922 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,922 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 14:04:13,924 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 14:04:13,925 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 14:04:13,928 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 14:04:13,931 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-11-30 14:04:13,933 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 14:04:13,935 - migrateData - INFO - Vo name goc.egi.eu with id 23 +2022-11-30 14:04:13,936 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 14:04:13,937 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 +2022-11-30 14:04:13,938 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,938 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 14:04:13,939 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,939 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 14:04:13,940 - migrateData - INFO - Vo name vo.example.org with id 22 +2022-11-30 14:04:13,940 - migrateData - INFO - Vo name openEO_test with id 28 +2022-11-30 14:04:13,966 - migrateData - INFO - 24 Idps created +2022-11-30 14:04:14,062 - migrateData - INFO - 409 Sps created +2022-11-30 14:04:14,064 - statisticsCountryHashedController - INFO - 0 Country Stats created diff --git a/data_migrations/log/metricsMigrate.log.2022-12-01 b/data_migrations/log/metricsMigrate.log.2022-12-01 new file mode 100644 index 0000000..0eb77b6 --- /dev/null +++ b/data_migrations/log/metricsMigrate.log.2022-12-01 @@ -0,0 +1,127 @@ +2022-12-07 09:46:04,489 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-12-07 09:46:04,490 - voMembershipsController - INFO - Vo name WP5 with id 6 +2022-12-07 09:46:04,491 - voMembershipsController - INFO - Vo name WP5-all with id 5 +2022-12-07 09:46:04,493 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-12-07 09:46:04,493 - voMembershipsController - INFO - Vo name AMB with id 9 +2022-12-07 09:46:04,494 - voMembershipsController - INFO - Vo name WP5 with id 6 +2022-12-07 09:46:04,494 - voMembershipsController - INFO - Vo name WP5-all with id 5 +2022-12-07 09:46:04,495 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 +2022-12-07 09:46:04,496 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,497 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,499 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,500 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,500 - voMembershipsController - INFO - Vo name vo.access.egi.eu with id 26 +2022-12-07 09:46:04,501 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,501 - voMembershipsController - INFO - Vo name WP5-all with id 5 +2022-12-07 09:46:04,502 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 +2022-12-07 09:46:04,503 - voMembershipsController - INFO - Vo name eiscat.se with id 24 +2022-12-07 09:46:04,503 - voMembershipsController - INFO - Vo name vo.dariah.eu with id 2 +2022-12-07 09:46:04,504 - voMembershipsController - INFO - Vo name rcauth.eu with id 15 +2022-12-07 09:46:04,504 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,505 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,506 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,507 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-12-07 09:46:04,508 - voMembershipsController - INFO - Vo name test-sso-mailman with id 10 +2022-12-07 09:46:04,509 - voMembershipsController - INFO - Vo name test-sso-confluence with id 11 +2022-12-07 09:46:04,509 - voMembershipsController - INFO - Vo name test-sso-confluence with id 11 +2022-12-07 09:46:04,510 - voMembershipsController - INFO - Vo name test-sso-mailman with id 10 +2022-12-07 09:46:04,511 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,512 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,512 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 +2022-12-07 09:46:04,513 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 +2022-12-07 09:46:04,513 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,514 - voMembershipsController - INFO - Vo name AMB with id 9 +2022-12-07 09:46:04,514 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 +2022-12-07 09:46:04,514 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-12-07 09:46:04,515 - voMembershipsController - INFO - Vo name vo.parent.example.eu with id 16 +2022-12-07 09:46:04,515 - voMembershipsController - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-12-07 09:46:04,517 - voMembershipsController - INFO - Vo name cloud.grnet.gr with id 13 +2022-12-07 09:46:04,517 - voMembershipsController - INFO - Vo name cloud.grnet.gr with id 13 +2022-12-07 09:46:04,518 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,519 - voMembershipsController - INFO - Vo name vo.dariah.eu with id 2 +2022-12-07 09:46:04,519 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,520 - voMembershipsController - INFO - Vo name vo.dariah.eu with id 2 +2022-12-07 09:46:04,520 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,521 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,522 - voMembershipsController - INFO - Vo name ggus-supporters.egi.eu with id 14 +2022-12-07 09:46:04,523 - voMembershipsController - INFO - Vo name radio-observatory with id 21 +2022-12-07 09:46:04,524 - voMembershipsController - INFO - Vo name radio-observatory with id 21 +2022-12-07 09:46:04,524 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,525 - voMembershipsController - INFO - Vo name radio-observatory with id 21 +2022-12-07 09:46:04,526 - voMembershipsController - INFO - Vo name radio-observatory with id 21 +2022-12-07 09:46:04,527 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,528 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,528 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,529 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,530 - voMembershipsController - INFO - Vo name vo.dariah.eu with id 2 +2022-12-07 09:46:04,530 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,531 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,532 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,532 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,535 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,542 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,543 - voMembershipsController - INFO - Vo name cloud.grnet.gr with id 13 +2022-12-07 09:46:04,543 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 +2022-12-07 09:46:04,544 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-12-07 09:46:04,544 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-12-07 09:46:04,545 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-12-07 09:46:04,545 - voMembershipsController - INFO - Vo name openEO_test with id 28 +2022-12-07 09:46:04,546 - voMembershipsController - INFO - Vo name stats-viewers.aai.egi.eu with id 18 +2022-12-07 09:46:04,546 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,546 - voMembershipsController - INFO - Vo name test-TRIPLE with id 17 +2022-12-07 09:46:04,546 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,547 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,547 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,547 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,547 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name eosc-synergy.eu with id 20 +2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,549 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,549 - voMembershipsController - INFO - Vo name vo.access.egi.eu with id 26 +2022-12-07 09:46:04,549 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 +2022-12-07 09:46:04,549 - voMembershipsController - INFO - Vo name AMB with id 9 +2022-12-07 09:46:04,550 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 +2022-12-07 09:46:04,550 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-12-07 09:46:04,550 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-12-07 09:46:04,550 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,551 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,551 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 +2022-12-07 09:46:04,552 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 +2022-12-07 09:46:04,552 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 +2022-12-07 09:46:04,553 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 +2022-12-07 09:46:04,555 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 +2022-12-07 09:46:04,555 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 +2022-12-07 09:46:04,556 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 +2022-12-07 09:46:04,556 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 +2022-12-07 09:46:04,557 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 +2022-12-07 09:46:04,557 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,558 - voMembershipsController - INFO - Vo name openEO_test with id 28 +2022-12-07 09:46:04,558 - voMembershipsController - INFO - Vo name openEO_test with id 28 +2022-12-07 09:46:04,558 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,559 - voMembershipsController - INFO - Vo name openEO_test with id 28 +2022-12-07 09:46:04,584 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,585 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,585 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,586 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,586 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 +2022-12-07 09:46:04,587 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 +2022-12-07 09:46:04,587 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,588 - voMembershipsController - INFO - Vo name checkin-integration with id 3 +2022-12-07 09:46:04,588 - voMembershipsController - INFO - Vo name radio-observatory with id 21 +2022-12-07 09:46:04,589 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,590 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,590 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,591 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,591 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,592 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,592 - voMembershipsController - INFO - Vo name vo.example.org with id 22 +2022-12-07 09:46:04,593 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 +2022-12-07 09:46:04,593 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 +2022-12-07 09:46:04,594 - voMembershipsController - INFO - Vo name rcauth.eu with id 15 +2022-12-07 09:46:04,595 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 +2022-12-07 09:46:04,595 - voMembershipsController - INFO - Vo name vo.access.egi.eu with id 26 +2022-12-07 09:46:04,596 - voMembershipsController - INFO - Vo name vo.access.egi.eu with id 26 +2022-12-07 09:46:04,596 - voMembershipsController - INFO - Vo name onboarding.egi.eu with id 27 diff --git a/data_migrations/migrateData.py b/data_migrations/migrateData.py new file mode 100644 index 0000000..44bd5e0 --- /dev/null +++ b/data_migrations/migrateData.py @@ -0,0 +1,88 @@ +#!/usr/local/bin/python3 +import os +import sys +from Controller.statisticsCountryHashedController import statisticsCountryHashedController +from Controller.usersController import usersController + +# change working directory +os.chdir(os.path.dirname(os.path.abspath(sys.argv[0]))) +from Model.vos import vos +from Model.vosInfo import vosInfo +from Model.voMemberships import voMemberships +from Model.identityProvidersMap import identityProvidersMap +from Model.serviceProvidersMap import serviceProvidersMap +from Controller.vosController import vosController +from Controller.voMembershipsController import voMembershipsController +from Controller.identityProvidersMapController import identityProvidersMapController +from Controller.serviceProvidersMapController import serviceProvidersMapController + +from Logger import log + + +class migrateData: + logger = log.get_logger("migrateData") + + @classmethod + def voMembershipsMigrate(self): + + voMembershipsData = voMembershipsController.getDataNotMapped() + + + @classmethod + def vosMigrate(self): + + vosData = vosController.getDataNotMapped() + mappedItems = 0 + + for item in vosData: + voItem = vosInfo(item.name, item.description, "egi") + id = vosInfo.save(voItem) + if id is not None: + self.logger.info("{0} item".format(id)) + vosInfoItem = vos(id, item.created) + vos.save(vosInfoItem) + mappedItems +=1 + + + if mappedItems > 0: + self.logger.info("{0} vos created".format(mappedItems)) + else: + self.logger.info("No new data found") + + @classmethod + def idpsMigrate(self): + mappedItems = 0 + idpsData = identityProvidersMapController.getAllData() + for item in idpsData: + idpItem = identityProvidersMap(item.entityid, item.name) + identityProvidersMap.save(idpItem) + mappedItems +=1 + + self.logger.info("{0} Idps created".format(mappedItems)) + + @classmethod + def spsMigrate(self): + mappedItems = 0 + spsData = serviceProvidersMapController.getAllData() + for item in spsData: + spItem = serviceProvidersMap(item.identifier, item.name.replace("'", "''")) + serviceProvidersMap.save(spItem) + mappedItems +=1 + + self.logger.info("{0} Sps created".format(mappedItems)) + @classmethod + def countryStatsMigrate(self): + statisticsCountryHashedController.saveAllData() + + @classmethod + def usersMigrate(self): + usersController.saveUsers() + +#run script +migrateData.vosMigrate() +migrateData.voMembershipsMigrate() +migrateData.idpsMigrate() +migrateData.spsMigrate() +migrateData.countryStatsMigrate() +migrateData.usersMigrate() + diff --git a/javascript/src/Pages/Users/index.js b/javascript/src/Pages/Users/index.js new file mode 100644 index 0000000..765e196 --- /dev/null +++ b/javascript/src/Pages/Users/index.js @@ -0,0 +1,23 @@ +import { useState, useContext, useEffect } from "react"; +import Container from "react-bootstrap/Container"; +import RegisteredUsersChart from "../../components/Users/registeredUsersChart"; +import RegisteredUsersDataTable from "../../components/Users/registeredUsersDataTable"; +import RegisteredUsersMap from "../../components/Users/registeredUsersMap"; +import RegisteredUsersTiles from "../../components/Users/registeredUsersTiles"; + + +const Users = () => { + const [startDate, setStartDate] = useState(""); + const [endDate, setEndDate] = useState(""); + return ( + +

              Users

              + + + + + +
              ) + +} +export default Users; diff --git a/javascript/src/components/Communities/listCommunities.js b/javascript/src/components/Communities/listCommunities.js new file mode 100644 index 0000000..747d6c7 --- /dev/null +++ b/javascript/src/components/Communities/listCommunities.js @@ -0,0 +1,22 @@ +import { useState, useContext, useEffect, Component } from "react"; +import ReactTooltip from "react-tooltip"; + +const ListCommunities = ({communitiesList}) => { + useEffect(() => { + ReactTooltip.rebuild(); + },[communitiesList]) + return
                + + { + + communitiesList.map((cou, index) => ( +
              • {cou["name"]}
              • + + )) + } + +
              + +} + +export default ListCommunities diff --git a/javascript/src/components/Users/registeredUsersMap.js b/javascript/src/components/Users/registeredUsersMap.js new file mode 100644 index 0000000..58a522c --- /dev/null +++ b/javascript/src/components/Users/registeredUsersMap.js @@ -0,0 +1,64 @@ +import { useState, useContext, useEffect } from "react"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Select from 'react-select'; +import { client } from '../../utils/api'; +import $, { map } from "jquery"; +import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import 'jquery-mapael'; +import 'jquery-mapael/js/maps/world_countries_mercator.js'; + + +const RegisteredUsersMap = ({startDate, endDate}) => { + + useEffect(() => { + client.get("registered_users_country", {params: {'startDate':startDate, 'endDate':endDate}}).then(response => { + createMap("usersMap", response["data"]) + }) + }, [startDate, endDate]) + + const createMap = (id, mapData, tooltipLabel = "Users", legendLabel = 'Users per country') => { + var areas = {}; + var i = 1; + var maxSum = 0; + mapData.forEach(function (mapRow) { + + var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + + //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; + areas[mapRow.countrycode] = { + value: mapRow.sum, + tooltip: { content: contentTooltip } + } + if (mapRow.sum > maxSum) { + maxSum = mapRow.sum; + } + i++; + }) + // Calculate Legends + var legends = calculateLegends(maxSum) + $(".areaLegend").show() + $("#" + id).mapael({ + map: setMapConfiguration(), + legend: setLegend(legendLabel, legends), + areas: areas + }) + + } + + return ( + +

              Users Per Country

              + + +
              +
              +
              +
              + + +
              + ) +} + +export default RegisteredUsersMap; \ No newline at end of file diff --git a/javascript/src/components/Users/registeredUsersTiles.js b/javascript/src/components/Users/registeredUsersTiles.js new file mode 100644 index 0000000..f2ea76e --- /dev/null +++ b/javascript/src/components/Users/registeredUsersTiles.js @@ -0,0 +1,95 @@ +import { useState, useContext, useEffect } from "react"; +import "../../app.css"; +import { client } from '../../utils/api'; +import Container from 'react-bootstrap/Container'; +import Select from 'react-select'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import 'bootstrap/dist/css/bootstrap.min.css'; + +const RegisteredUsersTiles = () => { + const [tiles, setTiles] = useState({}); + useEffect(() => { + Promise.all([ + client.get("registered_users_countby"), + client.get("registered_users_countby", + { params: { 'interval': 'year', 'count_interval': '1' } }), + client.get("registered_users_countby", + { params: { 'interval': 'days', 'count_interval': '30' } }), + client.get("registered_users_countby", + { params: { 'interval': 'days', 'count_interval': '7' } }) + ]).then(function (responses) { + // Get a JSON object from each of the responses + return Promise.all(responses.map(function (response) { + return response; + })); + }).then(function (data) { + // Log the data to the console + // You would do something with both sets of data here + console.log(data); + var tilesArray = {} + data.forEach(element => { + + if (element["config"]["params"]) { + var name = element["config"]["params"]["interval"] + "_" + element["config"]["params"]["count_interval"] + tilesArray[[name]] = element["data"][0]["count"] + } + else { + tilesArray["overall"] = element["data"][0]["count"] + } + + }) + console.log(tilesArray) + setTiles(tilesArray) + + }).catch(function (error) { + // if there's an error, log it + console.log(error); + }); + + + }, []) + + return ( + + + {console.log(tiles)} + +
              +
              +

              {tiles["overall"]}

              +

              Total Registered Users

              +
              +
              + + +
              +
              +

              {tiles["year_1"]}

              +

              Last Year Registered Users

              +
              +
              + + +
              +
              +

              {tiles["days_30"]}

              +

              Last 30 days Registered Users

              +
              +
              + + +
              +
              +

              {tiles["days_7"]}

              +

              Last 7 days Registered Users

              +
              +
              + + +
              + ) +} + +export default RegisteredUsersTiles \ No newline at end of file From 2a069b1384162c839b69a4e014a4149fd7acabe0 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 23 Jan 2023 09:37:26 +0200 Subject: [PATCH 004/331] add tenant logic to app --- app/main.py | 195 +- app/models/environment_model.py | 20 + app/models/tenant_model.py | 20 + data_migrations/CHANGELOG.md | 19 - .../Controller/countryStatisticsController.py | 23 - ...ountryStatisticsHashedUserIdsController.py | 23 - .../identityProvidersMapController.py | 13 - .../serviceProvidersMapController.py | 13 - .../statisticsCountryHashedController.py | 73 - data_migrations/Controller/usersController.py | 27 - .../Controller/voMembershipsController.py | 80 - data_migrations/Controller/vosController.py | 23 - data_migrations/LICENSE | 201 - data_migrations/Logger/log.py | 29 - data_migrations/Model/countries.py | 27 - data_migrations/Model/countryStatistics.py | 34 - .../Model/countryStatisticsHashedUserId.py | 37 - data_migrations/Model/identityProvidersMap.py | 24 - .../Model/identityProvidersMapFromProxy.py | 20 - data_migrations/Model/ipStatistics.py | 40 - data_migrations/Model/pgConnector.py | 117 - data_migrations/Model/serviceProvidersMap.py | 24 - .../Model/serviceProvidersMapFromProxy.py | 20 - .../Model/statisticsCountryHashed.py | 36 - .../statisticsCountryHashedFromComanage.py | 30 - .../Model/userCountryStatistics.py | 33 - data_migrations/Model/users.py | 40 - data_migrations/Model/usersFromComanage.py | 35 - data_migrations/Model/voMemberships.py | 48 - .../Model/voMembershipsFromComanage.py | 57 - data_migrations/Model/vos.py | 43 - data_migrations/Model/vosFromComanage.py | 39 - data_migrations/Model/vosInfo.py | 28 - data_migrations/README.md | 29 - data_migrations/Service/ipDatabase.py | 18 - data_migrations/Utils/configParser.py | 32 - data_migrations/Utils/install.py | 40 - .../config-templates/pgsql_tables.sql | 142 - data_migrations/config.py | 59 - data_migrations/config.py.example | 35 - data_migrations/databases/empty | 0 data_migrations/ipToCountry.py | 59 - data_migrations/log/empty | 0 .../log/metricsMigrate.log.2022-11-04 | 2330 -- .../log/metricsMigrate.log.2022-11-07 | 2064 -- .../log/metricsMigrate.log.2022-11-08 | 191 - .../log/metricsMigrate.log.2022-11-09 | 324 - .../log/metricsMigrate.log.2022-11-28 | 1497 - .../log/metricsMigrate.log.2022-11-29 | 29840 ---------------- .../log/metricsMigrate.log.2022-11-30 | 4714 --- .../log/metricsMigrate.log.2022-12-01 | 127 - data_migrations/migrateData.py | 88 - javascript/src/App.jsx | 13 +- javascript/src/Pages/Communities/index.js | 22 +- javascript/src/Pages/Users/index.js | 23 +- javascript/src/app.css | 6 +- javascript/src/components/Common/utils.js | 73 + .../Communities/communitiesChart.js | 25 +- .../Communities/communitiesDataTable.js | 144 +- .../components/Communities/communitiesMap.js | 88 +- .../components/Metrics/communitiesChart.js | 224 - .../components/Users/registeredUsersChart.js | 11 +- .../Users/registeredUsersDataTable.js | 37 +- .../components/Users/registeredUsersMap.js | 11 +- .../components/Users/registeredUsersTiles.js | 15 +- javascript/src/components/datatable.js | 17 +- javascript/src/components/listCommunities.js | 22 - requirements.txt | 1 + 68 files changed, 497 insertions(+), 43315 deletions(-) create mode 100644 app/models/environment_model.py create mode 100644 app/models/tenant_model.py delete mode 100644 data_migrations/CHANGELOG.md delete mode 100644 data_migrations/Controller/countryStatisticsController.py delete mode 100644 data_migrations/Controller/countryStatisticsHashedUserIdsController.py delete mode 100644 data_migrations/Controller/identityProvidersMapController.py delete mode 100644 data_migrations/Controller/serviceProvidersMapController.py delete mode 100644 data_migrations/Controller/statisticsCountryHashedController.py delete mode 100644 data_migrations/Controller/usersController.py delete mode 100644 data_migrations/Controller/voMembershipsController.py delete mode 100644 data_migrations/Controller/vosController.py delete mode 100644 data_migrations/LICENSE delete mode 100644 data_migrations/Logger/log.py delete mode 100644 data_migrations/Model/countries.py delete mode 100644 data_migrations/Model/countryStatistics.py delete mode 100644 data_migrations/Model/countryStatisticsHashedUserId.py delete mode 100644 data_migrations/Model/identityProvidersMap.py delete mode 100644 data_migrations/Model/identityProvidersMapFromProxy.py delete mode 100644 data_migrations/Model/ipStatistics.py delete mode 100644 data_migrations/Model/pgConnector.py delete mode 100644 data_migrations/Model/serviceProvidersMap.py delete mode 100644 data_migrations/Model/serviceProvidersMapFromProxy.py delete mode 100644 data_migrations/Model/statisticsCountryHashed.py delete mode 100644 data_migrations/Model/statisticsCountryHashedFromComanage.py delete mode 100644 data_migrations/Model/userCountryStatistics.py delete mode 100644 data_migrations/Model/users.py delete mode 100644 data_migrations/Model/usersFromComanage.py delete mode 100644 data_migrations/Model/voMemberships.py delete mode 100644 data_migrations/Model/voMembershipsFromComanage.py delete mode 100644 data_migrations/Model/vos.py delete mode 100644 data_migrations/Model/vosFromComanage.py delete mode 100644 data_migrations/Model/vosInfo.py delete mode 100644 data_migrations/README.md delete mode 100644 data_migrations/Service/ipDatabase.py delete mode 100644 data_migrations/Utils/configParser.py delete mode 100644 data_migrations/Utils/install.py delete mode 100644 data_migrations/config-templates/pgsql_tables.sql delete mode 100644 data_migrations/config.py delete mode 100644 data_migrations/config.py.example delete mode 100644 data_migrations/databases/empty delete mode 100644 data_migrations/ipToCountry.py delete mode 100644 data_migrations/log/empty delete mode 100644 data_migrations/log/metricsMigrate.log.2022-11-04 delete mode 100644 data_migrations/log/metricsMigrate.log.2022-11-07 delete mode 100644 data_migrations/log/metricsMigrate.log.2022-11-08 delete mode 100644 data_migrations/log/metricsMigrate.log.2022-11-09 delete mode 100644 data_migrations/log/metricsMigrate.log.2022-11-28 delete mode 100644 data_migrations/log/metricsMigrate.log.2022-11-29 delete mode 100644 data_migrations/log/metricsMigrate.log.2022-11-30 delete mode 100644 data_migrations/log/metricsMigrate.log.2022-12-01 delete mode 100644 data_migrations/migrateData.py delete mode 100644 javascript/src/components/Metrics/communitiesChart.js delete mode 100644 javascript/src/components/listCommunities.js diff --git a/app/main.py b/app/main.py index ece5492..514a9de 100644 --- a/app/main.py +++ b/app/main.py @@ -52,6 +52,7 @@ def read_communities( session: Session = Depends(get_session), offset: int = 0, group_by: str, + tenant_id: int, interval: Union[str, None] = None, count_interval: int = None, startDate: str = None, @@ -66,6 +67,14 @@ def read_communities( interval_subquery = """ WHERE created BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) + if interval_subquery=="": + interval_subquery=""" + WHERE community.tenant_id={0} + """.format(tenant_id) + else: + interval_subquery+=""" AND community.tenant_id={0} + """.format(tenant_id) + communities = session.exec(""" select count(*) as count, date_trunc( '{0}', created ) as range_date, min(created) as min_date , string_agg(name,'|| ') as names, @@ -80,9 +89,15 @@ def read_communities( return communities -@app.get("/communities/{community_id}", response_model=CommunityReadwithInfo) -def read_community(*, session: Session = Depends(get_session), community_id: int): - community = session.get(Community, community_id) +@app.get("/communities/{community_id}") +def read_community( + *, + session: Session = Depends(get_session), + community_id: int, + tenant_id: int): + community = session.exec(""" + SELECT * FROM community_info WHERE id={0} and tenant_id={1} + """.format(community_id,tenant_id)).all() # statement = select(Community).options(selectinload(Community.community_info)) # result = session.exec(statement) # community = result.one() @@ -90,7 +105,6 @@ def read_community(*, session: Session = Depends(get_session), community_id: int raise HTTPException(status_code=404, detail="Community not found") return community - @app.get("/communities_info/", response_model=List[Community_InfoRead]) def read_communities_info( *, @@ -120,7 +134,8 @@ def read_members_bystatus( *, session: Session = Depends(get_session), offset: int = 0, - community_id: Union[None, int] = None + community_id: Union[None, int] = None, + tenant_id: int, ): if not community_id: members = session.exec(select(Members).offset(offset)).all() @@ -128,12 +143,45 @@ def read_members_bystatus( # members = session.exec(select(Members).offset(offset)).all() members = session.exec(""" SELECT count(*) as count, community_id, status FROM members - WHERE community_id={0} + WHERE community_id={0} AND tenant_id={1} GROUP BY community_id, status - """.format(community_id)).all() + """.format(community_id, tenant_id)).all() # members = session.exec(""" SELECT community_id FROM members """) return members +@app.get("/tenant/{project_name}/{environment_name}") +def read_tenant_byname( + *, + session: Session = Depends(get_session), + offset: int = 0, + project_name: str, + environment_name: str +): + tenant = None + if project_name and environment_name: + tenant = session.exec(""" + SELECT * FROM tenant_info + JOIN project_info ON project_info.id=project_id + AND LOWER(project_info.name)=LOWER('{0}') + JOIN environment_info ON environment_info.id=env_id + AND LOWER(environment_info.name)=LOWER('{1}') + """.format(project_name, environment_name)).all() + return tenant + +@app.get("/environment_byname/{environment_name}") +def read_environment_byname( + *, + session: Session = Depends(get_session), + offset: int = 0, + environment_name: str +): + environment = None + if environment_name: + environment = session.exec(""" + SELECT * FROM environment_info + WHERE name='{0}' LIMIT 1 + """.format(environment_name)).all() + return environment @app.get("/services/", response_model=List[Serviceprovidersmap]) def read_services( @@ -263,6 +311,7 @@ def read_users_country( offset: int = 0, startDate: str = None, endDate: str = None, + tenant_id: int ): interval_subquery = "" if startDate and endDate: @@ -274,6 +323,7 @@ def read_users_country( SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count FROM statistics_country_hashed JOIN country_codes ON countryid=country_codes.id + WHERE tenant_id = {1} GROUP BY userid, country, countrycode ), max_count_users_countries AS ( @@ -282,18 +332,18 @@ def read_users_country( GROUP BY userid ) SELECT country,countrycode, count(*) as sum - FROM users_countries - JOIN ( - SELECT userid, max_sum_count, max(row_number) - FROM max_count_users_countries GROUP BY userid, max_sum_count - ) max_count_users_countries_no_duplicates - ON users_countries.userid=max_count_users_countries_no_duplicates.userid - AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count - JOIN users ON users.hasheduserid=users_countries.userid AND status='A' - {0} - GROUP BY country,countrycode - ORDER BY country,countrycode - """.format(interval_subquery)).all() + FROM users_countries + JOIN ( + SELECT userid, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + JOIN users ON users.hasheduserid=users_countries.userid AND status='A' + {0} + GROUP BY country,countrycode + ORDER BY country,countrycode + """.format(interval_subquery, tenant_id)).all() return users_countries @@ -305,6 +355,7 @@ def read_users_country_groupby( group_by: str, startDate: str = None, endDate: str = None, + tenant_id: int ): if group_by: interval_subquery = "" @@ -317,6 +368,7 @@ def read_users_country_groupby( SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count FROM statistics_country_hashed JOIN country_codes ON countryid=country_codes.id + WHERE tenant_id = {2} GROUP BY userid, country, countrycode ), max_count_users_countries AS ( @@ -340,7 +392,7 @@ def read_users_country_groupby( GROUP BY range_date, country,countrycode ORDER BY range_date, country ) user_country_group_by - GROUP BY range_date""".format(group_by, interval_subquery)).all() + GROUP BY range_date""".format(group_by, interval_subquery, tenant_id)).all() return users @@ -354,6 +406,7 @@ def read_users_groupby( count_interval: int = None, startDate: str = None, endDate: str = None, + tenant_id: int ): interval_subquery = "" @@ -369,11 +422,11 @@ def read_users_groupby( select count(*) as count, date_trunc( '{0}', created ) as range_date, min(created) as min_date from users - WHERE status = 'A' - {1} + WHERE status = 'A' AND tenant_id = {1} + {2} group by range_date ORDER BY range_date ASC - """.format(group_by, interval_subquery)).all() + """.format(group_by, tenant_id, interval_subquery)).all() return users @@ -384,6 +437,7 @@ def read_users_countby( offset: int = 0, interval: Union[str, None] = None, count_interval: int = None, + tenant_id: int ): interval_subquery = "" @@ -394,13 +448,12 @@ def read_users_countby( users = session.exec(""" select count(*) as count from users - WHERE status = 'A' - {0}""".format(interval_subquery)).all() + WHERE status = 'A' AND tenant_id = {1} + {0}""".format(interval_subquery, tenant_id)).all() return users # Dashboard Page - @app.get("/logins_countby") def read_logins_countby( *, @@ -408,16 +461,17 @@ def read_logins_countby( offset: int = 0, interval: Union[str, None] = None, count_interval: int = None, + tenant_id: int ): interval_subquery = "" if interval and count_interval: - interval_subquery = """WHERE date > + interval_subquery = """AND date > CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) logins = session.exec(""" select sum(count) as count - from statistics_country_hashed - {0}""".format(interval_subquery)).all() + from statistics_country_hashed WHERE tenant_id={0} + {1}""".format(tenant_id, interval_subquery)).all() return logins @@ -428,19 +482,26 @@ def read_logins_groupby( offset: int = 0, group_by: str, idp: str = None, - sp: str = None + sp: str = None, + tenant_id: int ): interval_subquery = "" if idp != None: interval_subquery = """ JOIN identityprovidersmap ON sourceidpid=identityprovidersmap.id + AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id WHERE entityid = '{0}' """.format(idp) elif sp != None: interval_subquery = """ JOIN serviceprovidersmap ON serviceid=serviceprovidersmap.id + AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id WHERE identifier = '{0}' """.format(sp) + if interval_subquery == "": + interval_subquery = """WHERE statistics_country_hashed.tenant_id = {0}""".format(tenant_id) + else: + interval_subquery += """ AND statistics_country_hashed.tenant_id = {0} """.format(tenant_id) logins = session.exec(""" select sum(count) as count, date_trunc('{0}', date) as date @@ -457,25 +518,39 @@ def read_logins_per_idp( *, session: Session = Depends(get_session), offset: int = 0, - idp: str = None, + sp: str = None, startDate: str = None, endDate: str = None, + tenant_id: int ): interval_subquery = "" - if idp == None: - if startDate and endDate: - interval_subquery = """ - WHERE date BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - logins = session.exec(""" - select name, entityid, sourceidpid, sum(count) as count - from statistics_country_hashed - join identityprovidersmap ON identityprovidersmap.id=sourceidpid - {0} - GROUP BY sourceidpid, name, entityid - ORDER BY count DESC - """.format(interval_subquery)).all() - return logins + sp_subquery_join = "" + if sp: + sp_subquery_join = """ + JOIN serviceprovidersmap ON serviceprovidersmap.id=serviceid + AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id + AND serviceprovidersmap.tenant_id={1} + AND identifier = '{0}' + """.format(sp, tenant_id) + + if startDate and endDate: + interval_subquery = """ + AND date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + + logins = session.exec(""" + select identityprovidersmap.name, entityid, sourceidpid, sum(count) as count + from statistics_country_hashed + join identityprovidersmap ON identityprovidersmap.id=sourceidpid + AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id + {0} + WHERE statistics_country_hashed.tenant_id = {1} + {2} + GROUP BY sourceidpid, identityprovidersmap.name, entityid + ORDER BY count DESC + """.format(sp_subquery_join, tenant_id, interval_subquery)).all() + + return logins @app.get("/logins_per_sp/") @@ -486,28 +561,33 @@ def read_logins_per_sp( idp: str = None, startDate: str = None, endDate: str = None, + tenant_id: int ): interval_subquery = "" idp_subquery_join = "" if idp: idp_subquery_join = """ JOIN identityprovidersmap ON identityprovidersmap.id=sourceidpid + AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id + AND identityprovidersmap.tenant_id={1} AND entityid = '{0}' - """.format(idp) + """.format(idp, tenant_id) if startDate and endDate: interval_subquery = """ - WHERE date BETWEEN '{0}' AND '{1}' + AND date BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) logins = session.exec(""" select serviceprovidersmap.name, identifier, serviceid, sum(count) as count from statistics_country_hashed - join serviceprovidersmap ON serviceprovidersmap.id=serviceid + join serviceprovidersmap ON serviceprovidersmap.id=serviceid + AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id {0} - {1} + WHERE statistics_country_hashed.tenant_id = {1} + {2} GROUP BY serviceid, serviceprovidersmap.name, identifier ORDER BY count DESC - """.format(idp_subquery_join, interval_subquery)).all() + """.format(idp_subquery_join, tenant_id, interval_subquery)).all() return logins @@ -519,12 +599,13 @@ def read_logins_per_country( group_by: Union[str, None] = None, startDate: str = None, endDate: str = None, + tenant_id: int ): interval_subquery = "" if group_by: if startDate and endDate: interval_subquery = """ - WHERE date BETWEEN '{0}' AND '{1}' + AND date BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) logins = session.exec(""" @@ -533,22 +614,24 @@ def read_logins_per_country( SELECT date_trunc('{0}', date) as range_date, min(date) as min_login_date, sum(count) as count_country, CONCAT(country,': ',sum(count)) as country from statistics_country_hashed JOIN country_codes ON countryid=country_codes.id - {1} + WHERE tenant_id = {1} + {2} GROUP BY range_date, country ORDER BY range_date,country ASC ) country_logins GROUP BY range_date - """.format(group_by, interval_subquery)).all() + """.format(group_by, tenant_id, interval_subquery)).all() else: if startDate and endDate: interval_subquery = """ - WHERE date BETWEEN '{0}' AND '{1}' + AND date BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) logins = session.exec(""" SELECT country, countrycode,sum(count) as sum from statistics_country_hashed JOIN country_codes ON countryid=country_codes.id - {0} + WHERE tenant_id = {0} + {1} GROUP BY country,countrycode - """.format(interval_subquery)).all() + """.format(tenant_id, interval_subquery)).all() return logins diff --git a/app/models/environment_model.py b/app/models/environment_model.py new file mode 100644 index 0000000..71c0489 --- /dev/null +++ b/app/models/environment_model.py @@ -0,0 +1,20 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .country_hashed_user_model import Statistics_Country_Hashed + +# EnvironmentInfo +class EnvironmentInfoBase(SQLModel): + name: str + description: str + +class EnvironmentInfo(EnvironmentInfoBase, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + #idps: List["Statistics_Country_Hashed"] = Relationship(back_populates="identityprovider_info") + +class EnvironmentInfoRead(EnvironmentInfoBase): + id: int + diff --git a/app/models/tenant_model.py b/app/models/tenant_model.py new file mode 100644 index 0000000..7985326 --- /dev/null +++ b/app/models/tenant_model.py @@ -0,0 +1,20 @@ +from typing import List, Optional,TYPE_CHECKING +from sqlmodel import Field, Relationship, Session, SQLModel +from sqlalchemy import UniqueConstraint +from datetime import date, datetime + +if TYPE_CHECKING: + from .country_hashed_user_model import Statistics_Country_Hashed + +# TenantInfo +class TenantInfoBase(SQLModel): + name: str + description: str + +class TenantInfo(TenantInfoBase, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + #idps: List["Statistics_Country_Hashed"] = Relationship(back_populates="identityprovider_info") + +class TenantInfoRead(TenantInfoBase): + id: int + diff --git a/data_migrations/CHANGELOG.md b/data_migrations/CHANGELOG.md deleted file mode 100644 index cadae94..0000000 --- a/data_migrations/CHANGELOG.md +++ /dev/null @@ -1,19 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [v1.0.1] - 2021-08-31 - -### Fixed - -- Bypass IP addresses that don't exist at database - -## [v1.0.0] - 2021-07-12 - -### Added - -- A Python-based tool for mapping ips to countries and store the respective login information to a DB. - diff --git a/data_migrations/Controller/countryStatisticsController.py b/data_migrations/Controller/countryStatisticsController.py deleted file mode 100644 index 2de895c..0000000 --- a/data_migrations/Controller/countryStatisticsController.py +++ /dev/null @@ -1,23 +0,0 @@ -from datetime import date, timedelta -from Model.ipStatistics import ipStatistics -from Model.countryStatistics import countryStatistics -from datetime import datetime, timedelta -class countryStatisticsController: - @classmethod - def getDataNotMapped(self): - dateFrom = countryStatistics.getLastDate() - - # we dont have any country statistics saved - if dateFrom[0][0] == None: - result = ipStatistics.getAllIpStatistics() - else: - dayAfter = dateFrom[0][0] + timedelta(days=1) - dayFrom = dayAfter.strftime('%Y-%m-%d 00:00:00') - - yesterday = date.today() - timedelta(days=1) - dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') - - result = ipStatistics.getIpStatisticsByDate(dayFrom, dateTo) - return result - - diff --git a/data_migrations/Controller/countryStatisticsHashedUserIdsController.py b/data_migrations/Controller/countryStatisticsHashedUserIdsController.py deleted file mode 100644 index 1c46258..0000000 --- a/data_migrations/Controller/countryStatisticsHashedUserIdsController.py +++ /dev/null @@ -1,23 +0,0 @@ -from datetime import date, timedelta -from Model.ipStatistics import ipStatistics -from Model.countryStatisticsHashedUserId import countryStatisticsHashedUserId -from datetime import datetime, timedelta -class countryStatisticsHashedUserIdsController: - @classmethod - def getDataNotMapped(self): - dateFrom = countryStatisticsHashedUserId.getLastDate() - - # we dont have any country statistics saved - if dateFrom[0][0] == None: - result = ipStatistics.getAllIpStatistics() - else: - dayAfter = dateFrom[0][0] + timedelta(days=1) - dayFrom = dayAfter.strftime('%Y-%m-%d 00:00:00') - - yesterday = date.today() - timedelta(days=1) - dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') - - result = ipStatistics.getIpStatisticsByDate(dayFrom, dateTo) - return result - - diff --git a/data_migrations/Controller/identityProvidersMapController.py b/data_migrations/Controller/identityProvidersMapController.py deleted file mode 100644 index 3e5fc09..0000000 --- a/data_migrations/Controller/identityProvidersMapController.py +++ /dev/null @@ -1,13 +0,0 @@ -from datetime import date, timedelta -from Model.identityProvidersMapFromProxy import identityProvidersMapFromProxy -from Model.identityProvidersMap import identityProvidersMap -from datetime import datetime, timedelta -class identityProvidersMapController: - - @classmethod - def getAllData(self): - - result = identityProvidersMapFromProxy.getAllIdps() - return result - - diff --git a/data_migrations/Controller/serviceProvidersMapController.py b/data_migrations/Controller/serviceProvidersMapController.py deleted file mode 100644 index 7bc72c4..0000000 --- a/data_migrations/Controller/serviceProvidersMapController.py +++ /dev/null @@ -1,13 +0,0 @@ -from datetime import date, timedelta -from Model.serviceProvidersMapFromProxy import serviceProvidersMapFromProxy -from Model.serviceProvidersMap import serviceProvidersMap -from datetime import datetime, timedelta -class serviceProvidersMapController: - - @classmethod - def getAllData(self): - - result = serviceProvidersMapFromProxy.getAllSps() - return result - - diff --git a/data_migrations/Controller/statisticsCountryHashedController.py b/data_migrations/Controller/statisticsCountryHashedController.py deleted file mode 100644 index ec43dd7..0000000 --- a/data_migrations/Controller/statisticsCountryHashedController.py +++ /dev/null @@ -1,73 +0,0 @@ -from datetime import date, timedelta -from multiprocessing.spawn import prepare -from Model.countries import countries -from Model.identityProvidersMap import identityProvidersMap -from Model.serviceProvidersMap import serviceProvidersMap -from Model.statisticsCountryHashed import statisticsCountryHashed -from Model.statisticsCountryHashedFromComanage import statisticsCountryHashedFromComanage -from datetime import datetime, timedelta -from Logger import log - -class statisticsCountryHashedController: - logger = log.get_logger("statisticsCountryHashedController") - - @classmethod - def saveAllData(self): - - dateFrom = statisticsCountryHashed.getLastDate() - today = date.today() - dateTo = today.strftime('%Y-%m-%d 23:59:59') - # we dont have any country statistics saved - if dateFrom[0][0] == None: - result = statisticsCountryHashedFromComanage.getStatsByDate(None, dateTo) - else: - dayAfter = dateFrom[0][0] + timedelta(days=1) - dayFrom = dayAfter.strftime('%Y-%m-%d 00:00:00') - - yesterday = date.today() - timedelta(days=1) - dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') - - result = statisticsCountryHashedFromComanage.getStatsByDate(dayFrom, dateTo) - statisticsCountryHashedController.prepareData(result) - return result - - @classmethod - def prepareData(self, data): - mappedItems = 0 - for item in data: - ## find identityprovider id - result = identityProvidersMap.getIdpIdByIdentifier(item.sourceidp) - if len(result) > 0: - #self.logger.info(result[0][0]) - idpId = result[0][0] - else: - self.logger.error("Identity provider identifier not found") - continue - - ## find serviceprovider id - result = serviceProvidersMap.getSpIdByIdentifier(item.service) - if len(result) > 0: - #self.logger.info(result[0][0]) - spId = result[0][0] - else: - self.logger.error("Service entityid {0} not found".format(item.service)) - continue - ## save country if not exists and get id - country = countries(item.countrycode, item.country) - countries.save(country) - result = countries.getIdByCountryCode(item.countrycode) - if len(result) > 0: - #self.logger.info(result[0][0]) - countryId = result[0][0] - else: - self.logger.error("Country not found") - continue - self.logger.info("{0} ".format(item.date)) - statsCountry = statisticsCountryHashed(item.date, item.hasheduserid, idpId, spId, countryId, item.count) - statisticsCountryHashed.save(statsCountry) - mappedItems += 1 - self.logger.info("{0} Country Stats created".format(mappedItems)) - - - - diff --git a/data_migrations/Controller/usersController.py b/data_migrations/Controller/usersController.py deleted file mode 100644 index 924771d..0000000 --- a/data_migrations/Controller/usersController.py +++ /dev/null @@ -1,27 +0,0 @@ -from ast import Or -from datetime import date, timedelta -from Model.users import users -from Model.usersFromComanage import usersFromComanage -from Model.vos import vos -from datetime import datetime, timedelta -from Logger import log - -class usersController: - logger = log.get_logger("usersController") - - @classmethod - def saveUsers(self): - - usersList = [] - # get memberships with active status - usersComanage = usersFromComanage.getAllUsers() - # save memberships with active status - for item in usersComanage: - usersItem = users(item.hasheduserid, item.created, item.status) - usersList.append(usersItem) - # save data to tables if any - if usersList: - users.saveAll(usersList) - - - diff --git a/data_migrations/Controller/voMembershipsController.py b/data_migrations/Controller/voMembershipsController.py deleted file mode 100644 index e41e4c9..0000000 --- a/data_migrations/Controller/voMembershipsController.py +++ /dev/null @@ -1,80 +0,0 @@ -from ast import Or -from datetime import date, timedelta -from Model.voMemberships import voMemberships -from Model.voMembershipsFromComanage import voMembershipsFromComanage -from Model.vos import vos -from datetime import datetime, timedelta -from Logger import log - -class voMembershipsController: - logger = log.get_logger("voMembershipsController") - @classmethod - def getVoId(self, voName, source): - result = vos.getVoIdFromVoName(voName, source) - return result - - @classmethod - def getDataNotMapped(self): - voMemberships.truncate() - - voMembershipsList = [] - # dateFrom = vos.getLastDate() - - # we dont have any vos saved - # if dateFrom[0][0] == None: - - # get memberships with active status - activeMemberships = voMembershipsFromComanage.getAllVoMembershipsByStatus('A') - # save memberships with active status - for item in activeMemberships: - result = voMembershipsController.getVoId(item.voName, "egi") - - if len(result) > 0: - voId = result[0][0] - self.logger.info("Vo name {0} with id {1}".format(item.voName, result[0][0])) - - voMembershipsItem = voMemberships(voId, item.hasheduserid, item.status) - voMembershipsList.append(voMembershipsItem) - # save data to tables if any - if voMembershipsList: - - voMemberships.saveAll(voMembershipsList) - - # get memberships with grace period - # save only if there isnt any existing membership or status membership is not Active/ Grace Period - gracePeriodVoMembershipsList = [] - graceperiodMemberships = voMembershipsFromComanage.getAllVoMembershipsByStatus('GP') - for item in graceperiodMemberships: - result = voMembershipsController.getVoId(item.voName, "egi") - if len(result) > 0: - voId = result[0][0] - self.logger.info("Vo name {0} with id {1}".format(item.voName, result[0][0])) - #check if already there is a membership with active status saved - statusMembership = voMemberships.getMembershipStatus(voId, item.hasheduserid) - if len(statusMembership) > 0 and (statusMembership[0][0]=='A' or statusMembership[0][0]=='GP'): - continue - voMembershipsItem = voMemberships(voId, item.hasheduserid, item.status) - gracePeriodVoMembershipsList.append(voMembershipsItem) - if len(gracePeriodVoMembershipsList)>0: - voMemberships.saveAll(gracePeriodVoMembershipsList) - - # get memberships with other statuses - # save only if there isnt any existing membership - otherStatusVoMembershipsList = [] - otherStatusMemberships = voMembershipsFromComanage.getAllVoMembershipsByStatus('Other') - for item in otherStatusMemberships: - result = voMembershipsController.getVoId(item.voName, "egi") - if len(result) > 0: - voId = result[0][0] - self.logger.info("Vo name {0} with id {1}".format(item.voName, result[0][0])) - #check if already there is a membership with active status saved - statusMembership = voMemberships.getMembershipStatus(voId, item.hasheduserid) - if len(statusMembership) > 0: - continue - voMembershipsItem = voMemberships(voId, item.hasheduserid, item.status) - otherStatusVoMembershipsList.append(voMembershipsItem) - if len(otherStatusVoMembershipsList)>0: - voMemberships.saveAll(otherStatusVoMembershipsList) - return result - - diff --git a/data_migrations/Controller/vosController.py b/data_migrations/Controller/vosController.py deleted file mode 100644 index fab6aa0..0000000 --- a/data_migrations/Controller/vosController.py +++ /dev/null @@ -1,23 +0,0 @@ -from datetime import date, timedelta -from Model.vosFromComanage import vosFromComanage -from Model.vos import vos -from datetime import datetime, timedelta -class vosController: - @classmethod - def getDataNotMapped(self): - dateFrom = vos.getLastDate() - - # we dont have any vos saved - if dateFrom[0][0] == None: - result = vosFromComanage.getAllVos() - else: - dayAfter = dateFrom[0][0] + timedelta(days=1) - dayFrom = dayAfter.strftime('%Y-%m-%d 00:00:00') - - yesterday = date.today() - timedelta(days=1) - dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') - - result = vosFromComanage.getVosByDate(dayFrom, dateTo) - return result - - diff --git a/data_migrations/LICENSE b/data_migrations/LICENSE deleted file mode 100644 index 7b81d5a..0000000 --- a/data_migrations/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2021 GRNET S.A. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/data_migrations/Logger/log.py b/data_migrations/Logger/log.py deleted file mode 100644 index fdce677..0000000 --- a/data_migrations/Logger/log.py +++ /dev/null @@ -1,29 +0,0 @@ -import logging -import sys -from Utils import configParser -from logging.handlers import TimedRotatingFileHandler - -FORMATTER = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s") -LOG_FILE = "{0}/{1}".format(configParser.getConfig('logging')['folder'] ,configParser.getConfig('logging')['file']) -LEVEL = configParser.getConfig('logging')['level'] - -def get_console_handler(): - console_handler = logging.StreamHandler(sys.stdout) - console_handler.setFormatter(FORMATTER) - return console_handler - -def get_file_handler(): - file_handler = TimedRotatingFileHandler(LOG_FILE, when='midnight') - file_handler.setFormatter(FORMATTER) - return file_handler - -def get_logger(logger_name): - - logger = logging.getLogger(logger_name) - logger.setLevel(LEVEL) - logger.addHandler(get_console_handler()) - logger.addHandler(get_file_handler()) - # with this pattern, it's rarely necessary to propagate the error up to parent - logger.propagate = False - - return logger \ No newline at end of file diff --git a/data_migrations/Model/countries.py b/data_migrations/Model/countries.py deleted file mode 100644 index ca9330e..0000000 --- a/data_migrations/Model/countries.py +++ /dev/null @@ -1,27 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -from Logger import log -class countries(object): - logger = log.get_logger("countries") - COUNTRIESTABLE = configParser.getConfig('destination_tables')['countries'] - - def __init__(self, countrycode, country): - self.countrycode = countrycode - self.country = country - - - @classmethod - def save(self, countries): - pgConn = destinationPgConnector() - pgConn.execute_and_commit( - "INSERT INTO {0}(countrycode, country) VALUES ('{1}', '{2}') ON CONFLICT DO NOTHING".format(countries.COUNTRIESTABLE, countries.countrycode, countries.country) - ) - - @classmethod - def getIdByCountryCode(self, countryCode): - pgConn = destinationPgConnector() - result = pgConn.execute_select( - "SELECT id FROM {0} WHERE countrycode='{1}'".format(countries.COUNTRIESTABLE, countryCode) - ) - return result - diff --git a/data_migrations/Model/countryStatistics.py b/data_migrations/Model/countryStatistics.py deleted file mode 100644 index f66d6fd..0000000 --- a/data_migrations/Model/countryStatistics.py +++ /dev/null @@ -1,34 +0,0 @@ -# from Model.pgConnector import destinationPgConnector -# from Utils import configParser -# class countryStatistics(object): -# STATISTICSTABLE = configParser.getConfig('destination_tables')['countries'] - -# def __init__(self, id, date, sourceIdp, service, countryCode, country, count): -# self.id = id -# self.date = date -# self.service = service -# self.sourceIdp = sourceIdp -# self.countrycode = countryCode -# self.country = country -# self.count = count - -# @classmethod -# def getLastDate(self): -# pgConn = destinationPgConnector() -# result = pgConn.execute_select("SELECT max(date::date) FROM {0}".format(countryStatistics.STATISTICSTABLE)) -# return result - -# @classmethod -# def save(self, countryStatistics): -# pgConn = destinationPgConnector() -# pgConn.execute_and_commit( -# "INSERT INTO {0}(date, sourceidp, service, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', '{5}', {6}) ON CONFLICT (date, sourceidp, service, countrycode) DO UPDATE SET count = {0}.count + 1".format(countryStatistics.STATISTICSTABLE, countryStatistics.date, countryStatistics.sourceIdp, countryStatistics.service, countryStatistics.countrycode, countryStatistics.country, 1) -# ) - -# @classmethod -# def saveAll(self, countryStatisticsList): -# pgConn = destinationPgConnector() -# values = '' -# for item in countryStatisticsList: -# values += "INSERT INTO {0}(date, sourceidp, service, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', '{5}', {6}) ON CONFLICT (date, sourceidp, service, countrycode) DO UPDATE SET count = {0}.count + 1;".format(countryStatistics.STATISTICSTABLE, item.date, item.sourceIdp, item.service, item.countrycode, item.country, 1) -# pgConn.execute_and_commit(values) diff --git a/data_migrations/Model/countryStatisticsHashedUserId.py b/data_migrations/Model/countryStatisticsHashedUserId.py deleted file mode 100644 index 1d047ab..0000000 --- a/data_migrations/Model/countryStatisticsHashedUserId.py +++ /dev/null @@ -1,37 +0,0 @@ -# from Model.pgConnector import destinationPgConnector -# from Utils import configParser -# import hashlib - -# class countryStatisticsHashedUserId(object): -# STATISTICSHASHEDTABLE = configParser.getConfig('destination_tables')['country_hashed_table'] - -# def __init__(self, id, date, hashedUserId, sourceIdp, service, countryCode, country,count): -# self.id = id -# self.date = date -# self.hashedUserId = hashedUserId -# self.sourceIdp = sourceIdp -# self.service = service -# self.countrycode = countryCode -# self.country = country -# self.count = count - -# @classmethod -# def getLastDate(self): -# pgConn = destinationPgConnector() -# result = pgConn.execute_select("SELECT max(date::date) FROM {0}".format(countryStatisticsHashedUserId.STATISTICSHASHEDTABLE)) -# return result - -# @classmethod -# def save(self, countryStatisticsHashedUserId): -# pgConn = destinationPgConnector() -# pgConn.execute_and_commit( -# "INSERT INTO {0}(date, hasheduserid, sourceidp, service, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', '{5}', '{6}', {7}) ON CONFLICT (date, hasheduserid, sourceidp, service, countrycode) DO UPDATE SET count = {0}.count + 1".format(countryStatisticsHashedUserId.STATISTICSHASHEDTABLE, countryStatisticsHashedUserId.date, hashlib.md5(countryStatisticsHashedUserId.hashedUserId.encode()).hexdigest(), countryStatisticsHashedUserId.sourceIdp, countryStatisticsHashedUserId.service, countryStatisticsHashedUserId.countrycode, countryStatisticsHashedUserId.country, 1) -# ) - -# @classmethod -# def saveAll(self, countryStatisticsList): -# pgConn = destinationPgConnector() -# values = '' -# for item in countryStatisticsList: -# values += "INSERT INTO {0}(date, hasheduserid, sourceidp, service, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', '{5}', '{6}', {7}) ON CONFLICT (date, hasheduserid, sourceidp, service, countrycode) DO UPDATE SET count = {0}.count + 1;".format(countryStatisticsHashedUserId.STATISTICSHASHEDTABLE, item.date, hashlib.md5(item.hashedUserId.encode()).hexdigest(), item.sourceIdp, item.service, item.countrycode, item.country, 1) -# pgConn.execute_and_commit(values) diff --git a/data_migrations/Model/identityProvidersMap.py b/data_migrations/Model/identityProvidersMap.py deleted file mode 100644 index 9c41d2d..0000000 --- a/data_migrations/Model/identityProvidersMap.py +++ /dev/null @@ -1,24 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -from Logger import log -class identityProvidersMap(object): - logger = log.get_logger("identityProvidersMap") - IDENTITYPROVIDERSMAPTABLE = configParser.getConfig('destination_tables')['identity_providers_map'] - - def __init__(self, entityid, name): - self.entityid = entityid - self.name = name - - - @classmethod - def save(self, identityProviderMap): - pgConn = destinationPgConnector() - pgConn.execute_and_commit( - "INSERT INTO {0}(entityid, name) VALUES ('{1}', '{2}') ON CONFLICT DO NOTHING".format(identityProviderMap.IDENTITYPROVIDERSMAPTABLE, identityProviderMap.entityid, identityProviderMap.name) - ) - - @classmethod - def getIdpIdByIdentifier(self, entityid): - pgConn = destinationPgConnector() - result = pgConn.execute_select("SELECT id FROM {0} WHERE entityid='{1}'".format(identityProvidersMap.IDENTITYPROVIDERSMAPTABLE, entityid)) - return result diff --git a/data_migrations/Model/identityProvidersMapFromProxy.py b/data_migrations/Model/identityProvidersMapFromProxy.py deleted file mode 100644 index e890b65..0000000 --- a/data_migrations/Model/identityProvidersMapFromProxy.py +++ /dev/null @@ -1,20 +0,0 @@ -from Model.pgConnector import sourcePgConnectorProxy -from Utils import configParser - -class identityProvidersMapFromProxy(object): - IDPPROXYTABLE = configParser.getConfig('source_tables')['identity_providers_map_proxy'] - def __init__(self, entityid, name): - self.entityid = entityid - self.name = name - - @classmethod - def getAllIdps(self): - pgConn = sourcePgConnectorProxy() - result = list(pgConn.execute_select("SELECT entityid, name FROM {0}".format(identityProvidersMapFromProxy.IDPPROXYTABLE))) - data = [] - for row in result: - idpsData = identityProvidersMapFromProxy(row[0], row[1]) - data.append(idpsData) - return data - - diff --git a/data_migrations/Model/ipStatistics.py b/data_migrations/Model/ipStatistics.py deleted file mode 100644 index 7a3b6d8..0000000 --- a/data_migrations/Model/ipStatistics.py +++ /dev/null @@ -1,40 +0,0 @@ -from Model.pgConnector import sourcePgConnector -from Utils import configParser -from datetime import date, timedelta - -class ipStatistics(object): - IPSTATISTICSTABLE = configParser.getConfig('source_tables')['ip_table'] - def __init__(self, accessed, sourceIdp, service, userid, ip, ipVersion): - self.accessed = accessed - self.sourceIdp = sourceIdp - self.service = service - self.userid = userid - self.ip = ip - self.ipVersion = ipVersion - - @classmethod - def getIpStatisticsByDate(self, dateFrom, dateTo): - pgConn = sourcePgConnector() - if(dateFrom != None): - result = list(pgConn.execute_select("SELECT accessed::date, sourceidp, service, userid, ip, ipversion FROM {0} WHERE accessed::date BETWEEN '{1}' AND '{2}'".format(ipStatistics.IPSTATISTICSTABLE, dateFrom, dateTo))) - else: - result = list(pgConn.execute_select("SELECT accessed::date, sourceidp, service, userid, ip, ipversion FROM {0} WHERE accessed::date <= '{1}'".format(ipStatistics.IPSTATISTICSTABLE, dateTo))) - data = [] - for row in result: - ipData = ipStatistics(row[0], row[1], row[2], row[3], row[4], row[5]) - data.append(ipData) - return data - - @classmethod - def getAllIpStatistics(self): - yesterday = date.today() - timedelta(days=1) - dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') - pgConn = sourcePgConnector() - result = list(pgConn.execute_select("SELECT accessed::date, sourceidp, service, userid, ip, ipversion FROM {0} WHERE accessed::date <= '{1}'".format(ipStatistics.IPSTATISTICSTABLE, dateTo))) - data = [] - for row in result: - ipData = ipStatistics(row[0], row[1], row[2], row[3], row[4], row[5]) - data.append(ipData) - return data - - diff --git a/data_migrations/Model/pgConnector.py b/data_migrations/Model/pgConnector.py deleted file mode 100644 index 39569d6..0000000 --- a/data_migrations/Model/pgConnector.py +++ /dev/null @@ -1,117 +0,0 @@ -from configparser import RawConfigParser -import sys -import psycopg2 -# import the error handling libraries for psycopg2 -from psycopg2 import OperationalError, errorcodes, errors -from Logger import log - -def singleton(theClass): - """ decorator for a class to make a singleton out of it """ - classInstances = {} - - def getInstance(*args, **kwargs): - """ creating or just return the one and only class instance. - The singleton depends on the parameters used in __init__ """ - key = (theClass, args, str(kwargs)) - if key not in classInstances: - classInstances[key] = theClass(*args, **kwargs) - return classInstances[key] - - return getInstance - -class pgConnector: - logger = log.get_logger("pgConnector") - conn = None - - def __init__(self, filename = "config.py", section = "source_database"): - - self.filename = filename - self.section = section - self.params = self.config(filename, section) - if self.conn == None: - try: - self.logger.debug('Connecting to the PostgreSQL database...') - self.conn = psycopg2.connect(**self.params) - except psycopg2.OperationalError as err: - self.logger.error(str(err).strip()) - sys.exit(1) - - def config(self, filename='config.py', section='source_database'): - - # create a parser - parser = RawConfigParser() - - # read config file - parser.read(filename) - - # get section, default to source_database - db = {} - - if parser.has_section(section): - params = parser.items(section) - for param in params: - db[param[0]] = param[1] - else: - self.logger.error('Section {0} not found in the {1} file'.format(section, filename)) - raise Exception('Section {0} not found in the {1} file'.format(section, filename)) - - return db - - def execute_select(self, query): - - # create a cursor - cur = self.conn.cursor() - - # execute a statement - cur.execute(query) - - return cur.fetchall() - - def execute_and_commit_with_fetch(self, query): - - try: - cur = self.conn.cursor() - cur.execute(query) - self.conn.commit() - id = cur.fetchone() - if(id is not None) : - self.logger.info("{0}".format(id[0])) - return id[0] - else : - return None - except Exception as err: - self.logger.error(str(err).strip()) - sys.exit(1) - - def execute_and_commit(self, query): - - try: - cur = self.conn.cursor() - cur.execute(query) - self.conn.commit() - except Exception as err: - self.logger.error(str(err).strip()) - sys.exit(1) - - def close(self): - - self.conn.close() - self.logger.debug('Database connection closed.') - -# Subclass of pgConnector -@singleton -class sourcePgConnector(pgConnector): - def __init__(self, filename = "config.py", section = "source_database"): - super().__init__(filename, section) - -# Subclass of pgConnector -@singleton -class sourcePgConnectorProxy(pgConnector): - def __init__(self, filename = "config.py", section = "source_database_proxy"): - super().__init__(filename, section) - -# Subclass of pgConnector -@singleton -class destinationPgConnector(pgConnector): - def __init__(self, filename = "config.py", section = "destination_database"): - super().__init__(filename, section) \ No newline at end of file diff --git a/data_migrations/Model/serviceProvidersMap.py b/data_migrations/Model/serviceProvidersMap.py deleted file mode 100644 index 3d2d9be..0000000 --- a/data_migrations/Model/serviceProvidersMap.py +++ /dev/null @@ -1,24 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -from Logger import log -class serviceProvidersMap(object): - logger = log.get_logger("serviceProvidersMap") - SERVICEPROVIDERSMAPTABLE = configParser.getConfig('destination_tables')['service_providers_map'] - - def __init__(self, identifier, name): - self.identifier = identifier - self.name = name - - - @classmethod - def save(self, serviceProviderMap): - pgConn = destinationPgConnector() - pgConn.execute_and_commit( - "INSERT INTO {0}(identifier, name) VALUES ('{1}', '{2}') ON CONFLICT DO NOTHING".format(serviceProviderMap.SERVICEPROVIDERSMAPTABLE, serviceProviderMap.identifier, serviceProviderMap.name) - ) - - @classmethod - def getSpIdByIdentifier(self, identifier): - pgConn = destinationPgConnector() - result = pgConn.execute_select("SELECT id FROM {0} WHERE identifier='{1}'".format(serviceProvidersMap.SERVICEPROVIDERSMAPTABLE, identifier)) - return result diff --git a/data_migrations/Model/serviceProvidersMapFromProxy.py b/data_migrations/Model/serviceProvidersMapFromProxy.py deleted file mode 100644 index 68450cc..0000000 --- a/data_migrations/Model/serviceProvidersMapFromProxy.py +++ /dev/null @@ -1,20 +0,0 @@ -from Model.pgConnector import sourcePgConnectorProxy -from Utils import configParser - -class serviceProvidersMapFromProxy(object): - SPPROXYTABLE = configParser.getConfig('source_tables')['service_providers_map_proxy'] - def __init__(self, identifier, name): - self.identifier = identifier - self.name = name - - @classmethod - def getAllSps(self): - pgConn = sourcePgConnectorProxy() - result = list(pgConn.execute_select("SELECT identifier, name FROM {0}".format(serviceProvidersMapFromProxy.SPPROXYTABLE))) - data = [] - for row in result: - spsData = serviceProvidersMapFromProxy(row[0], row[1]) - data.append(spsData) - return data - - diff --git a/data_migrations/Model/statisticsCountryHashed.py b/data_migrations/Model/statisticsCountryHashed.py deleted file mode 100644 index a1ac1a2..0000000 --- a/data_migrations/Model/statisticsCountryHashed.py +++ /dev/null @@ -1,36 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -from Logger import log -class statisticsCountryHashed(object): - logger = log.get_logger("statisticsCountryHashed") - STATISTICSCOUNTRYHASHEDTABLE = configParser.getConfig('destination_tables')['statistics_country_hashed'] - - def __init__(self, date, hasheduserid, sourceidpid, serviceid, countryid, count): - self.date = date - self.hasheduserid = hasheduserid - self.sourceidpid = sourceidpid - self.serviceid = serviceid - self.countryid = countryid - self.count = count - - @classmethod - def getLastDate(self): - pgConn = destinationPgConnector() - result = pgConn.execute_select("SELECT max(date::date) FROM {0}".format(statisticsCountryHashed.STATISTICSCOUNTRYHASHEDTABLE)) - return result - - @classmethod - def save(self, statisticsCountryHashed): - pgConn = destinationPgConnector() - pgConn.execute_and_commit( - """INSERT INTO {0}(date, hasheduserid, sourceidpid, serviceid, countryid, count) - VALUES ('{1}', '{2}', {3}, {4}, {5}, {6}) - """.format(statisticsCountryHashed.STATISTICSCOUNTRYHASHEDTABLE, - statisticsCountryHashed.date, - statisticsCountryHashed.hasheduserid, - statisticsCountryHashed.sourceidpid, - statisticsCountryHashed.serviceid, - statisticsCountryHashed.countryid, - statisticsCountryHashed.count, - ) - ) diff --git a/data_migrations/Model/statisticsCountryHashedFromComanage.py b/data_migrations/Model/statisticsCountryHashedFromComanage.py deleted file mode 100644 index 0a50a9e..0000000 --- a/data_migrations/Model/statisticsCountryHashedFromComanage.py +++ /dev/null @@ -1,30 +0,0 @@ -from Model.pgConnector import sourcePgConnector -from Utils import configParser -from datetime import date, timedelta - -class statisticsCountryHashedFromComanage(object): - STATISTICSCOUNTRYHASHEDCOMANAGETABLE = configParser.getConfig('source_tables')['statistics_country_hashed_comanage'] - def __init__(self, date, hasheduserid, sourceidp, service, countrycode, country, count): - self.hasheduserid = hasheduserid - self.date = date - self.sourceidp = sourceidp - self.service = service - self.countrycode = countrycode - self.country = country - self.count = count - - @classmethod - def getStatsByDate(self, dateFrom, dateTo ): - pgConn = sourcePgConnector() - if(dateFrom != None): - result = list(pgConn.execute_select("SELECT date::date, hasheduserid, sourceidp, service, countrycode, country, count FROM {0} WHERE date::date BETWEEN '{1}' AND '{2}'".format(statisticsCountryHashedFromComanage.STATISTICSCOUNTRYHASHEDCOMANAGETABLE, dateFrom, dateTo))) - - else: - result = list(pgConn.execute_select("SELECT date::date, hasheduserid, sourceidp, service, countrycode, country, count FROM {0} WHERE date::date <= '{1}'".format(statisticsCountryHashedFromComanage.STATISTICSCOUNTRYHASHEDCOMANAGETABLE, dateTo))) - data = [] - for row in result: - statsData = statisticsCountryHashedFromComanage(row[0], row[1], row[2], row[3], row[4], row[5], row[6]) - data.append(statsData) - return data - - diff --git a/data_migrations/Model/userCountryStatistics.py b/data_migrations/Model/userCountryStatistics.py deleted file mode 100644 index 41bab6f..0000000 --- a/data_migrations/Model/userCountryStatistics.py +++ /dev/null @@ -1,33 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -class userCountryStatistics(object): - USERCOUNTRYTABLE = configParser.getConfig('destination_tables')['user_country_table'] - - def __init__(self, id, date, userid, countrycode, country, count): - self.id = id - self.date = date - self.userid = userid - self.countrycode = countrycode - self.country = country - self.count = count - - @classmethod - def getLastDate(self): - pgConn = destinationPgConnector() - result = pgConn.execute_select("SELECT max(date::date) FROM {0}".format(userCountryStatistics.USERCOUNTRYTABLE)) - return result - - @classmethod - def save(self, userCountryStatistics): - pgConn = destinationPgConnector() - pgConn.execute_and_commit( - "INSERT INTO {0}(date, userid, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', {5}) ON CONFLICT (date, userid, countrycode) DO UPDATE SET count = {0}.count + 1".format(userCountryStatistics.USERCOUNTRYTABLE, userCountryStatistics.date, userCountryStatistics.userid, userCountryStatistics.countrycode, userCountryStatistics.country, 1) - ) - - @classmethod - def saveAll(self, userCountryStatisticsList): - pgConn = destinationPgConnector() - values = '' - for item in userCountryStatisticsList: - values += "INSERT INTO {0}(date, userid, countrycode, country, count) VALUES ('{1}', '{2}', '{3}', '{4}', {5}) ON CONFLICT (date, userid, countrycode) DO UPDATE SET count = {0}.count + 1;".format(userCountryStatistics.USERCOUNTRYTABLE, item.date, item.userid, item.countrycode, item.country, 1) - pgConn.execute_and_commit(values) \ No newline at end of file diff --git a/data_migrations/Model/users.py b/data_migrations/Model/users.py deleted file mode 100644 index 5beb7f4..0000000 --- a/data_migrations/Model/users.py +++ /dev/null @@ -1,40 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -from Logger import log -import hashlib -class users(object): - logger = log.get_logger("users") - USERSTABLE = configParser.getConfig('destination_tables')['users'] - - def __init__(self, userid, created, status): - - self.hasheduserid = userid - self.created = created - self.status = status - -# @classmethod -# def getLastDate(self): -# pgConn = destinationPgConnector() -# result = pgConn.execute_select("SELECT max(created::date) FROM {0}".format(voMemberships.VOMEMBERSHIPSTABLE)) -# return result - - - - @classmethod - def saveAll(self, usersList): - pgConn = destinationPgConnector() - values = '' - for item in usersList: - values += """INSERT INTO {0}(hasheduserid, created, status) - VALUES ('{1}', '{2}','{3}') - ON CONFLICT(hasheduserid) DO UPDATE SET status='{3}'; - """.format(users.USERSTABLE, item.hasheduserid, item.created, item.status) - pgConn.execute_and_commit(values) - -# @classmethod -# def getMembershipStatus(self, voId, hasheduserid): -# pgConn = destinationPgConnector() -# result = pgConn.execute_select(""" -# SELECT status FROM {0} WHERE community_id={1} AND hasheduserid='{2}'""" -# .format(users.USERSTABLE, voId, hasheduserid)) -# return result \ No newline at end of file diff --git a/data_migrations/Model/usersFromComanage.py b/data_migrations/Model/usersFromComanage.py deleted file mode 100644 index 2fb3cc6..0000000 --- a/data_migrations/Model/usersFromComanage.py +++ /dev/null @@ -1,35 +0,0 @@ -from Model.pgConnector import sourcePgConnector -from Utils import configParser -from datetime import date, timedelta -import hashlib - -class usersFromComanage(object): - USERSCOMANAGETABLE = configParser.getConfig('source_tables')['users_comanage'] - def __init__(self, userid, created, status): - - self.hasheduserid = hashlib.md5(userid.encode()).hexdigest() - self.created = created - self.status = status - - - @classmethod - def getAllUsers(self): - pgConn = sourcePgConnector() - result = (list(pgConn.execute_select(""" - SELECT identifier, cm_co_people.created, cm_co_people.status - FROM cm_co_people - JOIN cm_identifiers - ON cm_co_people.id = cm_identifiers.co_person_id - AND NOT cm_co_people.deleted - AND cm_co_people.co_person_id IS NULL - AND type='epuid' - WHERE NOT cm_identifiers.deleted AND identifier_id IS NULL - AND co_id=2 AND login=true - """))) - data = [] - for row in result: - usersData = usersFromComanage(row[0], row[1], row[2]) - data.append(usersData) - return data - - diff --git a/data_migrations/Model/voMemberships.py b/data_migrations/Model/voMemberships.py deleted file mode 100644 index e63444f..0000000 --- a/data_migrations/Model/voMemberships.py +++ /dev/null @@ -1,48 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -from Logger import log -import hashlib -class voMemberships(object): - logger = log.get_logger("voMemberships") - VOMEMBERSHIPSTABLE = configParser.getConfig('destination_tables')['vo_memberships'] - - def __init__(self, vo_id, userid, status): - self.community_id = vo_id - self.hasheduserid = userid - self.status = status - -# @classmethod -# def getLastDate(self): -# pgConn = destinationPgConnector() -# result = pgConn.execute_select("SELECT max(created::date) FROM {0}".format(voMemberships.VOMEMBERSHIPSTABLE)) -# return result - - - @classmethod - def truncate(self): - pgConn = destinationPgConnector() - # remove all data - pgConn.execute_and_commit( - """ - TRUNCATE TABLE {0} - """.format(voMemberships.VOMEMBERSHIPSTABLE) - ) - - @classmethod - def saveAll(self, voMembershipsList): - pgConn = destinationPgConnector() - values = '' - for item in voMembershipsList: - values += """INSERT INTO {0}(community_id, hasheduserid, status) - VALUES ('{1}', '{2}','{3}') - ON CONFLICT(community_id,hasheduserid) DO UPDATE SET status='{3}'; - """.format(voMemberships.VOMEMBERSHIPSTABLE, item.community_id, item.hasheduserid, item.status) - pgConn.execute_and_commit(values) - - @classmethod - def getMembershipStatus(self, voId, hasheduserid): - pgConn = destinationPgConnector() - result = pgConn.execute_select(""" - SELECT status FROM {0} WHERE community_id={1} AND hasheduserid='{2}'""" - .format(voMemberships.VOMEMBERSHIPSTABLE, voId, hasheduserid)) - return result \ No newline at end of file diff --git a/data_migrations/Model/voMembershipsFromComanage.py b/data_migrations/Model/voMembershipsFromComanage.py deleted file mode 100644 index 7e869e5..0000000 --- a/data_migrations/Model/voMembershipsFromComanage.py +++ /dev/null @@ -1,57 +0,0 @@ -from Model.pgConnector import sourcePgConnector -from Utils import configParser -from datetime import date, timedelta -import hashlib - -class voMembershipsFromComanage(object): - VOMEMBERSHIPSCOMANAGETABLE = configParser.getConfig('source_tables')['vo_memberships_comanage'] - def __init__(self, voName, userid, status): - self.status = status - self.hasheduserid = hashlib.md5(userid.encode()).hexdigest() - self.voName = voName - self.source = "egi" - -# @classmethod -# def getVosByDate(self, dateFrom, dateTo): -# pgConn = sourcePgConnector() -# if(dateFrom != None): -# result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date BETWEEN '{1}' AND '{2}'".format(vosFromComanage.VOSCOMANAGETABLE, dateFrom, dateTo))) - -# else: -# result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date <= '{1}'".format(vosFromComanage.VOSCOMANAGETABLE, dateTo))) -# data = [] -# for row in result: -# vosData = vosFromComanage(row[0], row[1], row[2]) -# data.append(vosData) -# return data - - @classmethod - # getAllVoMemberships - def getAllVoMembershipsByStatus(self, status): - yesterday = date.today() - timedelta(days=1) - dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') - pgConn = sourcePgConnector() - if status == 'Other': - subquery = 'AND cm_co_person_roles.status!=\'A\' AND cm_co_person_roles.status!=\'GP\'' - else: - subquery = 'AND cm_co_person_roles.status=\'{0}\''.format(status) - result = list(pgConn.execute_select(""" - SELECT cm_cous.name, identifier, cm_co_person_roles.status - FROM cm_co_person_roles - JOIN cm_identifiers - ON cm_co_person_roles.co_person_id = cm_identifiers.co_person_id - AND NOT cm_co_person_roles.deleted - AND cm_co_person_roles.co_person_role_id IS NULL - AND type='epuid' - JOIN cm_cous ON cm_cous.id=cm_co_person_roles.cou_id AND cm_cous.cou_id IS NULL - WHERE NOT cm_co_person_roles.deleted - AND NOT cm_identifiers.deleted AND identifier_id IS NULL - {0} - """.format(subquery))) - data = [] - for row in result: - vosData = voMembershipsFromComanage(row[0], row[1], row[2]) - data.append(vosData) - return data - - diff --git a/data_migrations/Model/vos.py b/data_migrations/Model/vos.py deleted file mode 100644 index 7c48540..0000000 --- a/data_migrations/Model/vos.py +++ /dev/null @@ -1,43 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -from Logger import log -class vos(object): - logger = log.get_logger("vos") - VOSTABLE = configParser.getConfig('destination_tables')['vos'] - - def __init__(self, id, created): - self.community_id = id #foreign key coming from vosInfo - self.created = created - - - @classmethod - def getVoIdFromVoName(self, voName, source): - pgConn = destinationPgConnector() - - result = pgConn.execute_select(""" - SELECT id FROM communities JOIN communities_info ON id=community_id - WHERE source='{0}' AND name='{1}' - """.format(source, voName)) - return result - - @classmethod - def getLastDate(self): - pgConn = destinationPgConnector() - result = pgConn.execute_select("SELECT max(created::date) FROM {0}".format(vos.VOSTABLE)) - return result - - @classmethod - def save(self, vos): - pgConn = destinationPgConnector() - pgConn.execute_and_commit( - "INSERT INTO {0}(community_id, created) VALUES ('{1}', '{2}')".format(vos.VOSTABLE, vos.community_id, vos.created) - ) - - -# @classmethod -# def saveAll(self, vosList): -# pgConn = destinationPgConnector() -# values = '' -# for item in vosList: -# values += "INSERT INTO {0}(created, source) VALUES ('{1}', '{2}');".format(vos.VOSTABLE, item.created, item.source) -# pgConn.execute_and_commit(values) diff --git a/data_migrations/Model/vosFromComanage.py b/data_migrations/Model/vosFromComanage.py deleted file mode 100644 index c57ed32..0000000 --- a/data_migrations/Model/vosFromComanage.py +++ /dev/null @@ -1,39 +0,0 @@ -from Model.pgConnector import sourcePgConnector -from Utils import configParser -from datetime import date, timedelta - -class vosFromComanage(object): - VOSCOMANAGETABLE = configParser.getConfig('source_tables')['vos_comanage'] - def __init__(self, created, name, description): - self.name = name - self.description = description - self.created = created - - @classmethod - def getVosByDate(self, dateFrom, dateTo): - pgConn = sourcePgConnector() - if(dateFrom != None): - result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date BETWEEN '{1}' AND '{2}'".format(vosFromComanage.VOSCOMANAGETABLE, dateFrom, dateTo))) - - else: - result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date <= '{1}'".format(vosFromComanage.VOSCOMANAGETABLE, dateTo))) - data = [] - for row in result: - vosData = vosFromComanage(row[0], row[1], row[2]) - data.append(vosData) - return data - - @classmethod - # getAllVos except those created today - def getAllVos(self): - yesterday = date.today() - timedelta(days=1) - dateTo = yesterday.strftime('%Y-%m-%d 23:59:59') - pgConn = sourcePgConnector() - result = list(pgConn.execute_select("SELECT created::date, name, description FROM {0} WHERE NOT deleted AND parent_id IS NULL AND cou_id IS NULL AND created::date <= '{1}'".format(vosFromComanage.VOSCOMANAGETABLE, dateTo))) - data = [] - for row in result: - vosData = vosFromComanage(row[0], row[1], row[2]) - data.append(vosData) - return data - - diff --git a/data_migrations/Model/vosInfo.py b/data_migrations/Model/vosInfo.py deleted file mode 100644 index 7de96e6..0000000 --- a/data_migrations/Model/vosInfo.py +++ /dev/null @@ -1,28 +0,0 @@ -from Model.pgConnector import destinationPgConnector -from Utils import configParser -from Logger import log -class vosInfo(object): - logger = log.get_logger("vosInfo") - VOSINFOTABLE = configParser.getConfig('destination_tables')['vos_information'] - - def __init__(self, voName, voDescription, source): - - self.voName = voName - self.voDescription = voDescription - self.source = source - - @classmethod - def save(self, vosInfo): - pgConn = destinationPgConnector() - id = pgConn.execute_and_commit_with_fetch( - "INSERT INTO {0}(name, description, source) VALUES ('{1}', '{2}', '{3}') RETURNING id".format(vosInfo.VOSINFOTABLE, vosInfo.voName, vosInfo.voDescription, vosInfo.source) - ) - return id - -# @classmethod -# def saveAll(self, vosList): -# pgConn = destinationPgConnector() -# values = '' -# for item in vosList: -# values += "INSERT INTO {0}(community_id, name, description) VALUES ('{1}', '{2}', '{3}');".format(vosInfo.VOSINFOTABLE, item.id, item.voName, item.voDescription) -# pgConn.execute_and_commit(values) diff --git a/data_migrations/README.md b/data_migrations/README.md deleted file mode 100644 index cf52a4b..0000000 --- a/data_migrations/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# rciam-ip2country -A Python-based tool for mapping ips to countries and store the respective login information to a DB. -## Prerequisites -This script uses MaxMind GeoIP2 Databases (commercial version). -You must put the .mmdb files (`GeoLite2-Country.mmdb`) to the folder `databases`. - -## Installation -``` -git clone https://github.com/rciam/rciam-ip2country.git -cd rciam-ip2country -cp config.py.example config.py -vi config.py -``` - -Create a Python virtualenv, install dependencies, and run the script -``` -virtualenv -p python3 .venv -source .venv/bin/activate -(venv) pip3 install -r requirements.txt -(venv) python3 -m Utils.install -(venv) python3 ipToCountry.py -🍺 -``` - -## License -Licensed under the Apache 2.0 license, for details see LICENSE. - - - diff --git a/data_migrations/Service/ipDatabase.py b/data_migrations/Service/ipDatabase.py deleted file mode 100644 index 75a2288..0000000 --- a/data_migrations/Service/ipDatabase.py +++ /dev/null @@ -1,18 +0,0 @@ -from abc import ABC, abstractmethod -from Model.ipStatistics import ipStatistics -from Utils import configParser -import geoip2.database - -class ipDatabase(ABC): - DBFILENAME = configParser.getConfig('database_file')['db_filename'] - @abstractmethod - def getCountryFromIp(self): - pass - -class geoip2Database(ipDatabase): - @classmethod - def getCountryFromIp(self, ip, ipVersion): - gi = geoip2.database.Reader('./databases/{0}'.format(ipDatabase.DBFILENAME)) - return [gi.country(ip).country.iso_code,gi.country(ip).country.name] - - diff --git a/data_migrations/Utils/configParser.py b/data_migrations/Utils/configParser.py deleted file mode 100644 index aa7db27..0000000 --- a/data_migrations/Utils/configParser.py +++ /dev/null @@ -1,32 +0,0 @@ -from configparser import RawConfigParser - -CONFIG_FILE = 'config.py' - -def getConfig(section='source_database'): - - # create a parser - - parser = RawConfigParser() - - # read config file - - parser.read(CONFIG_FILE) - - # get section, default to source_database - - config = {} - - if parser.has_section(section): - - params = parser.items(section) - - for param in params: - - config[param[0]] = param[1] - - else: - - raise Exception('Section {0} not found in the {1} file'.format(section, CONFIG_FILE)) - - - return config diff --git a/data_migrations/Utils/install.py b/data_migrations/Utils/install.py deleted file mode 100644 index 3648494..0000000 --- a/data_migrations/Utils/install.py +++ /dev/null @@ -1,40 +0,0 @@ -from Model.pgConnector import destinationPgConnector - - -pgConn = destinationPgConnector() -# Create tables if not exist -pgConn.execute_and_commit( - open("./config-templates/pgsql_tables.sql", "r").read()) - -# Check if country_statistics has data and country_statistics_hashed doesn't -# dateFrom = countryStatistics.getLastDate() -# dateFromHashed = countryStatisticsHashedUserId.getLastDate() - -# if (dateFrom[0][0] != None and dateFromHashed[0][0] == None): -# logger = log.get_logger("install") -# ipDatabaseHandler = geoip2Database() -# # We must put data at country statistics hashed table -# ipData = ipStatistics.getIpStatisticsByDate(None, dateFrom[0][0]) -# mappedItems = 0 -# countryStatsHashedList = [] - -# for item in ipData: -# # get network address -# ipaddr = ipaddress.ip_network(item.ip).network_address -# # get country code/ name -# countryData = ipDatabaseHandler.getCountryFromIp(str(ipaddr), item.ipVersion) - -# if(countryData[0] != None): -# mappedItems +=1 -# else: -# countryData[0] = 'UN' -# countryData[1] = 'Unknown' -# logger.warning("ip {0} not found at database".format(ipaddr)) -# countryStatisticsHashedItem = countryStatisticsHashedUserId(None, item.accessed, item.userid, item.sourceIdp, item.service, countryData[0], countryData[1], 1) -# countryStatsHashedList.append(countryStatisticsHashedItem) -# if countryStatsHashedList: -# countryStatisticsHashedUserId.saveAll(countryStatsHashedList) -# logger.info("{0} ips mapped to countries".format(mappedItems)) -# else: -# logger.info("No new data found") -pgConn.close() diff --git a/data_migrations/config-templates/pgsql_tables.sql b/data_migrations/config-templates/pgsql_tables.sql deleted file mode 100644 index 5921705..0000000 --- a/data_migrations/config-templates/pgsql_tables.sql +++ /dev/null @@ -1,142 +0,0 @@ --- Statistics for country logins including idp and sp --- CREATE TABLE IF NOT EXISTS statistics_country ( --- id SERIAL PRIMARY KEY, --- date DATE NOT NULL, --- sourceidp character varying(255) NOT NULL, --- service character varying(255) NOT NULL, --- countrycode character varying(2) NOT NULL, --- country character varying(255) NOT NULL, --- count int NOT NULL --- ); - --- CREATE INDEX IF NOT EXISTS statistics_country_i1 ON statistics_country (date); --- CREATE INDEX IF NOT EXISTS statistics_country_i2 ON statistics_country (sourceidp); --- CREATE INDEX IF NOT EXISTS statistics_country_i3 ON statistics_country (service); --- CREATE INDEX IF NOT EXISTS statistics_country_i4 ON statistics_country (countrycode); --- CREATE INDEX IF NOT EXISTS statistics_country_i5 ON statistics_country (country); --- CREATE UNIQUE INDEX IF NOT EXISTS idx_statistics_country --- ON statistics_country(date, sourceidp, service, countrycode); - --- -- Statistics for country logins including idp,sp and hashed userid --- CREATE TABLE IF NOT EXISTS statistics_country_hashed ( --- id SERIAL PRIMARY KEY, --- date DATE NOT NULL, --- hasheduserid character varying(255) NOT NULL, --- sourceidp character varying(255) NOT NULL, --- service character varying(255) NOT NULL, --- countrycode character varying(2) NOT NULL, --- country character varying(255) NOT NULL, --- count int NOT NULL --- ); - --- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i1 ON statistics_country_hashed (date); --- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i2 ON statistics_country_hashed (sourceidp); --- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i3 ON statistics_country_hashed (service); --- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i4 ON statistics_country_hashed (countrycode); --- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i5 ON statistics_country_hashed (country); --- CREATE INDEX IF NOT EXISTS statistics_country_hashed_i6 ON statistics_country_hashed (hasheduserid); --- CREATE UNIQUE INDEX IF NOT EXISTS idx_statistics_country_hashed --- ON statistics_country_hashed(date, hasheduserid, sourceidp, service, countrycode); - --- -- Statistics for country logins including userid --- CREATE TABLE IF NOT EXISTS statistics_user_country ( --- id SERIAL PRIMARY KEY, --- date DATE NOT NULL, --- userid character varying(255) NOT NULL, --- countrycode character varying(2) NOT NULL, --- country character varying(255) NOT NULL, --- count int NOT NULL --- ); - --- CREATE INDEX IF NOT EXISTS statistics_user_country_i1 ON statistics_user_country (date); --- CREATE INDEX IF NOT EXISTS statistics_user_country_i2 ON statistics_user_country (userid); --- CREATE INDEX IF NOT EXISTS statistics_user_country_i3 ON statistics_user_country (countrycode); --- CREATE INDEX IF NOT EXISTS statistics_user_country_i4 ON statistics_user_country (country); --- CREATE UNIQUE INDEX IF NOT EXISTS idx_statistics_user_country ON statistics_user_country(date, userid, countrycode); - -CREATE TABLE IF NOT EXISTS community_info ( - id SERIAL PRIMARY KEY, - name character varying(255) NOT NULL, - description character varying(255) NOT NULL, - source character varying(255) NOT NULL -); - -CREATE TABLE IF NOT EXISTS community ( - community_id INT, - created DATE NOT NULL, - PRIMARY KEY(community_id), - CONSTRAINT fk_community - FOREIGN KEY(community_id) - REFERENCES community_info(id) -); - - -CREATE TABLE IF NOT EXISTS members ( - community_id INT, - hasheduserid character varying(1024) NOT NULL, - status character varying(255) NOT NULL, - CONSTRAINT fk_community - FOREIGN KEY(community_id) - REFERENCES community_info(id) -); -CREATE UNIQUE INDEX IF NOT EXISTS idx_members ON members(community_id,hasheduserid); -CREATE INDEX IF NOT EXISTS community_i1 ON community (created); -CREATE INDEX IF NOT EXISTS community_info_i1 ON community_info (name); -CREATE UNIQUE INDEX IF NOT EXISTS idx_community_info ON community_info(name); - -CREATE TABLE IF NOT EXISTS identityprovidersmap ( - id SERIAL PRIMARY KEY, - entityid character varying(255) NOT NULL, - name character varying(255) NOT NULL -); - -CREATE UNIQUE INDEX IF NOT EXISTS idx_identityprovidersmap ON identityprovidersmap(entityid); - -CREATE TABLE IF NOT EXISTS serviceprovidersmap ( - id SERIAL PRIMARY KEY, - identifier character varying(255) NOT NULL, - name character varying(255) NOT NULL -); - -CREATE UNIQUE INDEX IF NOT EXISTS idx_serviceprovidersmap ON serviceprovidersmap(identifier); - -CREATE TABLE IF NOT EXISTS country_codes ( - id SERIAL PRIMARY KEY, - countrycode character varying(2) NOT NULL, - country character varying(255) NOT NULL -); - -CREATE UNIQUE INDEX IF NOT EXISTS idx_country_codes ON country_codes(countrycode); -CREATE UNIQUE INDEX IF NOT EXISTS idxx_country_codes ON country_codes (country); - -CREATE TABLE IF NOT EXISTS users ( - hasheduserid character varying(1024) NOT NULL, - created DATE NOT NULL, - status character varying(255) NOT NULL -); - -CREATE UNIQUE INDEX IF NOT EXISTS idx_users ON users(hasheduserid); - -CREATE TABLE IF NOT EXISTS statistics_country_hashed ( - id SERIAL PRIMARY KEY, - date DATE NOT NULL, - hasheduserid character varying(1024) NOT NULL, - sourceidpid INT NOT NULL, - serviceid INT NOT NULL, - countryid INT NOT NULL, - count INT NOT NULL, - CONSTRAINT fk_idp - FOREIGN KEY(sourceidpid) - REFERENCES identityprovidersmap(id), - CONSTRAINT fk_service - FOREIGN KEY(serviceid) - REFERENCES serviceprovidersmap(id), - CONSTRAINT fk_country - FOREIGN KEY(countryid) - REFERENCES country_codes(id) -); - -CREATE INDEX IF NOT EXISTS statistics_country_hashed_i1 ON statistics_country_hashed (hasheduserid); -CREATE INDEX IF NOT EXISTS statistics_country_hashed_i2 ON statistics_country_hashed (sourceidpid); -CREATE INDEX IF NOT EXISTS statistics_country_hashed_i3 ON statistics_country_hashed (serviceid); -CREATE INDEX IF NOT EXISTS statistics_country_hashed_i4 ON statistics_country_hashed (countryid); diff --git a/data_migrations/config.py b/data_migrations/config.py deleted file mode 100644 index 7290995..0000000 --- a/data_migrations/config.py +++ /dev/null @@ -1,59 +0,0 @@ -[source_database] - -host=localhost -database=egi_dev_registry -user=postgres -password=71902102 - -[source_database_proxy] - -host=localhost -database=egi_dev_proxy -user=postgres -password=71902102 - -[source_tables] - -ip_table=statistics_ip -vos_comanage=cm_cous -users_comanage=cm_co_people -vo_memberships_comanage=cm_co_person_roles -statistics_country_hashed_comanage=statistics_country_hashed -identity_providers_map_proxy=identityprovidersmap -service_providers_map_proxy=serviceprovidersmap - -[destination_database] - -# host=localhost -# database=rciam_metrics -# user=postgres -# password=71902102 - -host=172.19.0.2 -database=metrics_dev -user=rciam -password=secret - -[destination_tables] - -#country_table=statistics_country - -#user_country_table=statistics_user_country -vos=community -vos_information=community_info -vo_memberships=members -users=users -identity_providers_map=identityprovidersmap -service_providers_map=serviceprovidersmap -statistics_country_hashed=statistics_country_hashed -countries=country_codes - -[logging] - -level = INFO -folder = log -file = metricsMigrate.log - -[database_file] - -db_filename = GeoLite2-Country.mmdb \ No newline at end of file diff --git a/data_migrations/config.py.example b/data_migrations/config.py.example deleted file mode 100644 index c53a4f6..0000000 --- a/data_migrations/config.py.example +++ /dev/null @@ -1,35 +0,0 @@ -[source_database] - -host=localhost -database=db_name -user=db_user -password=db_password - -[source_tables] - -ip_table=statistics_ip -vos_comanage=cm_cous - -[destination_database] - -host=localhost -database=db_name -user=db_user -password=db_password - -[destination_tables] - -country_table=statistics_country -country_hashed_table=statistics_country_hashed -user_country_table=statistics_user_country -vos=communities - -[logging] - -level = INFO -folder = log -file = metricsMigrate.log - -[database_file] - -db_filename = GeoLite2-Country.mmdb \ No newline at end of file diff --git a/data_migrations/databases/empty b/data_migrations/databases/empty deleted file mode 100644 index e69de29..0000000 diff --git a/data_migrations/ipToCountry.py b/data_migrations/ipToCountry.py deleted file mode 100644 index 08d96db..0000000 --- a/data_migrations/ipToCountry.py +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/local/bin/python3 -import os -import sys -# change working directory -os.chdir(os.path.dirname(os.path.abspath(sys.argv[0]))) -from Model.countryStatistics import countryStatistics -from Model.countryStatisticsHashedUserId import countryStatisticsHashedUserId -from Model.userCountryStatistics import userCountryStatistics -from Controller.countryStatisticsController import countryStatisticsController -from Service.ipDatabase import geoip2Database -from Logger import log -import ipaddress - -class ipToCountry: - logger = log.get_logger("ipToCountry") - - @classmethod - def mapIpToCountry(self): - # handler for ip databases - ipDatabaseHandler = geoip2Database() - ipData = countryStatisticsController.getDataNotMapped() - countryStatsList = [] - usercountryStatsList = [] - countryStatsHashedList = [] - mappedItems = 0 - for item in ipData: - try: - # get network address - ipaddr = ipaddress.ip_network(item.ip).network_address - # get country code/ name - countryData = ipDatabaseHandler.getCountryFromIp(str(ipaddr), item.ipVersion) - if(countryData[0] != None): - mappedItems +=1 - else: - countryData[0] = 'UN' - countryData[1] = 'Unknown' - self.logger.warning("ip {0} not found at database".format(ipaddr)) - - countryStatisticsItem = countryStatistics(None, item.accessed, item.sourceIdp, item.service, countryData[0], countryData[1], 1) - countryStatsList.append(countryStatisticsItem) - usercountryStatisticsItem = userCountryStatistics(None, item.accessed, item.userid, countryData[0], countryData[1], 1) - usercountryStatsList.append(usercountryStatisticsItem) - countryStatisticsHashedItem = countryStatisticsHashedUserId(None, item.accessed, item.userid, item.sourceIdp, item.service, countryData[0], countryData[1], 1) - countryStatsHashedList.append(countryStatisticsHashedItem) - except: - pass - # save data to tables if any - if countryStatsList: - countryStatistics.saveAll(countryStatsList) - userCountryStatistics.saveAll(usercountryStatsList) - countryStatisticsHashedUserId.saveAll(countryStatsHashedList) - self.logger.info("{0} ips mapped to countries".format(mappedItems)) - else: - self.logger.info("No new data found") - - -#run script -ipToCountry.mapIpToCountry() - diff --git a/data_migrations/log/empty b/data_migrations/log/empty deleted file mode 100644 index e69de29..0000000 diff --git a/data_migrations/log/metricsMigrate.log.2022-11-04 b/data_migrations/log/metricsMigrate.log.2022-11-04 deleted file mode 100644 index 4af3470..0000000 --- a/data_migrations/log/metricsMigrate.log.2022-11-04 +++ /dev/null @@ -1,2330 +0,0 @@ -2022-11-04 10:10:32,244 - pgConnector - ERROR - FATAL: database "egi_registry" does not exist -2022-11-04 10:12:30,176 - pgConnector - ERROR - syntax error at or near "INSERT" -LINE 1: ...ership', '2016-09-27', 'AARC Pilot User Sponsors')INSERT INT... - ^ -2022-11-04 10:13:27,560 - pgConnector - ERROR - column "voname" of relation "communities" does not exist -LINE 1: INSERT INTO communities(created, voName, voDescription) VALU... - ^ -2022-11-04 10:14:38,588 - pgConnector - ERROR - invalid input syntax for type date: "Users who are eligible to sponsor AARC Pilot User Community membership" -LINE 1: ...O communities(created, name, description) VALUES ('Users who... - ^ -2022-11-04 10:15:57,674 - migrateData - INFO - 82 vos created -2022-11-04 10:22:35,049 - pgConnector - ERROR - duplicate key value violates unique constraint "idx_communities" -DETAIL: Key (name)=(www.astron.nl) already exists. -2022-11-04 10:28:06,980 - migrateData - INFO - 28 vos created -2022-11-04 11:21:19,775 - pgConnector - ERROR - syntax error at or near ")" -LINE 62: ); - ^ -2022-11-04 11:21:56,372 - pgConnector - ERROR - syntax error at or near ")" -LINE 62: ); - ^ -2022-11-04 11:22:11,228 - pgConnector - ERROR - column "community_id" named in key does not exist -LINE 63: PRIMARY KEY(community_id), - ^ -2022-11-04 11:24:45,113 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist -2022-11-04 11:26:26,095 - migrateData - INFO - No new data found -2022-11-04 11:27:27,183 - migrateData - INFO - No new data found -2022-11-04 11:29:45,284 - migrateData - INFO - None item -2022-11-04 11:29:45,286 - migrateData - INFO - None item -2022-11-04 11:29:45,287 - migrateData - INFO - None item -2022-11-04 11:29:45,288 - migrateData - INFO - None item -2022-11-04 11:29:45,289 - migrateData - INFO - None item -2022-11-04 11:29:45,290 - migrateData - INFO - None item -2022-11-04 11:29:45,291 - migrateData - INFO - None item -2022-11-04 11:29:45,292 - migrateData - INFO - None item -2022-11-04 11:29:45,293 - migrateData - INFO - None item -2022-11-04 11:29:45,294 - migrateData - INFO - None item -2022-11-04 11:29:45,294 - migrateData - INFO - None item -2022-11-04 11:29:45,295 - migrateData - INFO - None item -2022-11-04 11:29:45,296 - migrateData - INFO - None item -2022-11-04 11:29:45,297 - migrateData - INFO - None item -2022-11-04 11:29:45,298 - migrateData - INFO - None item -2022-11-04 11:29:45,299 - migrateData - INFO - None item -2022-11-04 11:29:45,300 - migrateData - INFO - None item -2022-11-04 11:29:45,301 - migrateData - INFO - None item -2022-11-04 11:29:45,302 - migrateData - INFO - None item -2022-11-04 11:29:45,303 - migrateData - INFO - None item -2022-11-04 11:29:45,304 - migrateData - INFO - None item -2022-11-04 11:29:45,305 - migrateData - INFO - None item -2022-11-04 11:29:45,306 - migrateData - INFO - None item -2022-11-04 11:29:45,307 - migrateData - INFO - None item -2022-11-04 11:29:45,308 - migrateData - INFO - None item -2022-11-04 11:29:45,309 - migrateData - INFO - None item -2022-11-04 11:29:45,310 - migrateData - INFO - None item -2022-11-04 11:29:45,311 - migrateData - INFO - None item -2022-11-04 11:29:45,311 - migrateData - INFO - No new data found -2022-11-04 11:31:10,867 - migrateData - INFO - 0 item -2022-11-04 11:31:10,869 - migrateData - INFO - 0 item -2022-11-04 11:31:10,870 - migrateData - INFO - 0 item -2022-11-04 11:31:10,873 - migrateData - INFO - 0 item -2022-11-04 11:31:10,874 - migrateData - INFO - 0 item -2022-11-04 11:31:10,875 - migrateData - INFO - 0 item -2022-11-04 11:31:10,876 - migrateData - INFO - 0 item -2022-11-04 11:31:10,877 - migrateData - INFO - 0 item -2022-11-04 11:31:10,879 - migrateData - INFO - 0 item -2022-11-04 11:31:10,879 - migrateData - INFO - 0 item -2022-11-04 11:31:10,880 - migrateData - INFO - 0 item -2022-11-04 11:31:10,881 - migrateData - INFO - 0 item -2022-11-04 11:31:10,882 - migrateData - INFO - 0 item -2022-11-04 11:31:10,883 - migrateData - INFO - 0 item -2022-11-04 11:31:10,885 - migrateData - INFO - 0 item -2022-11-04 11:31:10,886 - migrateData - INFO - 0 item -2022-11-04 11:31:10,887 - migrateData - INFO - 0 item -2022-11-04 11:31:10,888 - migrateData - INFO - 0 item -2022-11-04 11:31:10,889 - migrateData - INFO - 0 item -2022-11-04 11:31:10,891 - migrateData - INFO - 0 item -2022-11-04 11:31:10,892 - migrateData - INFO - 0 item -2022-11-04 11:31:10,893 - migrateData - INFO - 0 item -2022-11-04 11:31:10,894 - migrateData - INFO - 0 item -2022-11-04 11:31:10,896 - migrateData - INFO - 0 item -2022-11-04 11:31:10,897 - migrateData - INFO - 0 item -2022-11-04 11:31:10,898 - migrateData - INFO - 0 item -2022-11-04 11:31:10,900 - migrateData - INFO - 0 item -2022-11-04 11:31:10,901 - migrateData - INFO - 0 item -2022-11-04 11:31:10,901 - migrateData - INFO - No new data found -2022-11-04 11:34:45,530 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,531 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,533 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,534 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,535 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,537 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,538 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,539 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,541 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,542 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,543 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,544 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,545 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,546 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,547 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,548 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,549 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,550 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,551 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,552 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,553 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,555 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,557 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,558 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,559 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,560 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,561 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,563 - pgConnector - ERROR - no results to fetch -2022-11-04 11:34:45,563 - migrateData - INFO - No new data found -2022-11-04 11:35:48,042 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,043 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,044 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,046 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,048 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,049 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,050 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,051 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,053 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,054 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,055 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,055 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,056 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,057 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,058 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,059 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,060 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,061 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,062 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,063 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,064 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,065 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,067 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,068 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,069 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,070 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,071 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,072 - pgConnector - ERROR - no results to fetch -2022-11-04 11:35:48,072 - migrateData - INFO - No new data found -2022-11-04 11:37:17,065 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,065 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,065 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,066 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,066 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,066 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,067 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,068 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,068 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,068 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,069 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,070 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,070 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,070 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,071 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,071 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,071 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,071 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,072 - pgConnector - ERROR - no results to fetch -2022-11-04 11:37:17,073 - migrateData - INFO - No new data found -2022-11-04 11:38:09,478 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,479 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,480 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,482 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,483 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,484 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,485 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,487 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,488 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,489 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,490 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,491 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,492 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,493 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,494 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,495 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,496 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,497 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,499 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,500 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,502 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,503 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,504 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,506 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,507 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,508 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,509 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,510 - pgConnector - ERROR - no results to fetch -2022-11-04 11:38:09,510 - migrateData - INFO - No new data found -2022-11-04 11:43:00,750 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,751 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,752 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,754 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,756 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,756 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,757 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,758 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,759 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,760 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,761 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,763 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,764 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,765 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,766 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,767 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,768 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,769 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,769 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,770 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,771 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,772 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,775 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,776 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,777 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,778 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,779 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,780 - pgConnector - ERROR - no results to fetch -2022-11-04 11:43:00,780 - migrateData - INFO - No new data found -2022-11-04 11:43:43,767 - migrateData - INFO - None item -2022-11-04 11:43:43,768 - migrateData - INFO - None item -2022-11-04 11:43:43,769 - migrateData - INFO - None item -2022-11-04 11:43:43,771 - migrateData - INFO - None item -2022-11-04 11:43:43,772 - migrateData - INFO - None item -2022-11-04 11:43:43,773 - migrateData - INFO - None item -2022-11-04 11:43:43,775 - migrateData - INFO - None item -2022-11-04 11:43:43,776 - migrateData - INFO - None item -2022-11-04 11:43:43,777 - migrateData - INFO - None item -2022-11-04 11:43:43,779 - migrateData - INFO - None item -2022-11-04 11:43:43,780 - migrateData - INFO - None item -2022-11-04 11:43:43,781 - migrateData - INFO - None item -2022-11-04 11:43:43,782 - migrateData - INFO - None item -2022-11-04 11:43:43,783 - migrateData - INFO - None item -2022-11-04 11:43:43,783 - migrateData - INFO - None item -2022-11-04 11:43:43,785 - migrateData - INFO - None item -2022-11-04 11:43:43,786 - migrateData - INFO - None item -2022-11-04 11:43:43,786 - migrateData - INFO - None item -2022-11-04 11:43:43,787 - migrateData - INFO - None item -2022-11-04 11:43:43,789 - migrateData - INFO - None item -2022-11-04 11:43:43,790 - migrateData - INFO - None item -2022-11-04 11:43:43,792 - migrateData - INFO - None item -2022-11-04 11:43:43,793 - migrateData - INFO - None item -2022-11-04 11:43:43,795 - migrateData - INFO - None item -2022-11-04 11:43:43,796 - migrateData - INFO - None item -2022-11-04 11:43:43,797 - migrateData - INFO - None item -2022-11-04 11:43:43,798 - migrateData - INFO - None item -2022-11-04 11:43:43,799 - migrateData - INFO - None item -2022-11-04 11:43:43,799 - migrateData - INFO - No new data found -2022-11-04 11:44:55,670 - migrateData - INFO - 1 item -2022-11-04 11:44:55,672 - migrateData - INFO - 1 item -2022-11-04 11:44:55,673 - migrateData - INFO - 1 item -2022-11-04 11:44:55,674 - migrateData - INFO - 1 item -2022-11-04 11:44:55,675 - migrateData - INFO - 1 item -2022-11-04 11:44:55,677 - migrateData - INFO - 1 item -2022-11-04 11:44:55,678 - migrateData - INFO - 1 item -2022-11-04 11:44:55,679 - migrateData - INFO - 1 item -2022-11-04 11:44:55,680 - migrateData - INFO - 1 item -2022-11-04 11:44:55,681 - migrateData - INFO - 1 item -2022-11-04 11:44:55,683 - migrateData - INFO - 1 item -2022-11-04 11:44:55,684 - migrateData - INFO - 1 item -2022-11-04 11:44:55,685 - migrateData - INFO - 1 item -2022-11-04 11:44:55,686 - migrateData - INFO - 1 item -2022-11-04 11:44:55,687 - migrateData - INFO - 1 item -2022-11-04 11:44:55,688 - migrateData - INFO - 1 item -2022-11-04 11:44:55,690 - migrateData - INFO - 1 item -2022-11-04 11:44:55,691 - migrateData - INFO - 1 item -2022-11-04 11:44:55,692 - migrateData - INFO - 1 item -2022-11-04 11:44:55,693 - migrateData - INFO - 1 item -2022-11-04 11:44:55,694 - migrateData - INFO - 1 item -2022-11-04 11:44:55,696 - migrateData - INFO - 1 item -2022-11-04 11:44:55,697 - migrateData - INFO - 1 item -2022-11-04 11:44:55,698 - migrateData - INFO - 1 item -2022-11-04 11:44:55,700 - migrateData - INFO - 1 item -2022-11-04 11:44:55,701 - migrateData - INFO - 1 item -2022-11-04 11:44:55,703 - migrateData - INFO - 1 item -2022-11-04 11:44:55,704 - migrateData - INFO - 1 item -2022-11-04 11:44:55,704 - migrateData - INFO - No new data found -2022-11-04 11:45:42,277 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-07-24', 'egi') -2022-11-04 11:45:42,277 - migrateData - INFO - 1 item -2022-11-04 11:45:42,279 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-07-25', 'egi') -2022-11-04 11:45:42,279 - migrateData - INFO - 1 item -2022-11-04 11:45:42,280 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-07-25', 'egi') -2022-11-04 11:45:42,280 - migrateData - INFO - 1 item -2022-11-04 11:45:42,281 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2017-06-01', 'egi') -2022-11-04 11:45:42,281 - migrateData - INFO - 1 item -2022-11-04 11:45:42,282 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-01-19', 'egi') -2022-11-04 11:45:42,282 - migrateData - INFO - 1 item -2022-11-04 11:45:42,283 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-01-19', 'egi') -2022-11-04 11:45:42,283 - migrateData - INFO - 1 item -2022-11-04 11:45:42,284 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2016-09-23', 'egi') -2022-11-04 11:45:42,284 - migrateData - INFO - 1 item -2022-11-04 11:45:42,285 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2017-12-14', 'egi') -2022-11-04 11:45:42,286 - migrateData - INFO - 1 item -2022-11-04 11:45:42,287 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-01-19', 'egi') -2022-11-04 11:45:42,287 - migrateData - INFO - 1 item -2022-11-04 11:45:42,288 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-02-09', 'egi') -2022-11-04 11:45:42,288 - migrateData - INFO - 1 item -2022-11-04 11:45:42,290 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-02-09', 'egi') -2022-11-04 11:45:42,290 - migrateData - INFO - 1 item -2022-11-04 11:45:42,291 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2018-11-02', 'egi') -2022-11-04 11:45:42,291 - migrateData - INFO - 1 item -2022-11-04 11:45:42,293 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-10-25', 'egi') -2022-11-04 11:45:42,293 - migrateData - INFO - 1 item -2022-11-04 11:45:42,294 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-11-07', 'egi') -2022-11-04 11:45:42,294 - migrateData - INFO - 1 item -2022-11-04 11:45:42,295 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-05-07', 'egi') -2022-11-04 11:45:42,295 - migrateData - INFO - 1 item -2022-11-04 11:45:42,296 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-06-02', 'egi') -2022-11-04 11:45:42,296 - migrateData - INFO - 1 item -2022-11-04 11:45:42,298 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-06-10', 'egi') -2022-11-04 11:45:42,298 - migrateData - INFO - 1 item -2022-11-04 11:45:42,299 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-06-29', 'egi') -2022-11-04 11:45:42,299 - migrateData - INFO - 1 item -2022-11-04 11:45:42,300 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-07-16', 'egi') -2022-11-04 11:45:42,300 - migrateData - INFO - 1 item -2022-11-04 11:45:42,302 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-07-16', 'egi') -2022-11-04 11:45:42,302 - migrateData - INFO - 1 item -2022-11-04 11:45:42,303 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-02-05', 'egi') -2022-11-04 11:45:42,303 - migrateData - INFO - 1 item -2022-11-04 11:45:42,304 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-06-20', 'egi') -2022-11-04 11:45:42,304 - migrateData - INFO - 1 item -2022-11-04 11:45:42,306 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-09-16', 'egi') -2022-11-04 11:45:42,307 - migrateData - INFO - 1 item -2022-11-04 11:45:42,308 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2019-09-26', 'egi') -2022-11-04 11:45:42,308 - migrateData - INFO - 1 item -2022-11-04 11:45:42,309 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-07-29', 'egi') -2022-11-04 11:45:42,309 - migrateData - INFO - 1 item -2022-11-04 11:45:42,310 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2020-08-04', 'egi') -2022-11-04 11:45:42,310 - migrateData - INFO - 1 item -2022-11-04 11:45:42,311 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2021-05-24', 'egi') -2022-11-04 11:45:42,311 - migrateData - INFO - 1 item -2022-11-04 11:45:42,312 - pgConnector - INFO - Query??? INSERT INTO communities(created, source) VALUES ('2021-05-26', 'egi') -2022-11-04 11:45:42,312 - migrateData - INFO - 1 item -2022-11-04 11:45:42,312 - migrateData - INFO - No new data found -2022-11-04 11:46:00,650 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,650 - migrateData - INFO - 1 item -2022-11-04 11:46:00,651 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,651 - migrateData - INFO - 1 item -2022-11-04 11:46:00,652 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,652 - migrateData - INFO - 1 item -2022-11-04 11:46:00,653 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,653 - migrateData - INFO - 1 item -2022-11-04 11:46:00,654 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,654 - migrateData - INFO - 1 item -2022-11-04 11:46:00,655 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,655 - migrateData - INFO - 1 item -2022-11-04 11:46:00,656 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,656 - migrateData - INFO - 1 item -2022-11-04 11:46:00,657 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,657 - migrateData - INFO - 1 item -2022-11-04 11:46:00,658 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,658 - migrateData - INFO - 1 item -2022-11-04 11:46:00,659 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,659 - migrateData - INFO - 1 item -2022-11-04 11:46:00,660 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,660 - migrateData - INFO - 1 item -2022-11-04 11:46:00,661 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,661 - migrateData - INFO - 1 item -2022-11-04 11:46:00,662 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,662 - migrateData - INFO - 1 item -2022-11-04 11:46:00,663 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,663 - migrateData - INFO - 1 item -2022-11-04 11:46:00,664 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,665 - migrateData - INFO - 1 item -2022-11-04 11:46:00,666 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,666 - migrateData - INFO - 1 item -2022-11-04 11:46:00,667 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,667 - migrateData - INFO - 1 item -2022-11-04 11:46:00,668 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,668 - migrateData - INFO - 1 item -2022-11-04 11:46:00,669 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,669 - migrateData - INFO - 1 item -2022-11-04 11:46:00,670 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,670 - migrateData - INFO - 1 item -2022-11-04 11:46:00,672 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,672 - migrateData - INFO - 1 item -2022-11-04 11:46:00,673 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,673 - migrateData - INFO - 1 item -2022-11-04 11:46:00,675 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,675 - migrateData - INFO - 1 item -2022-11-04 11:46:00,677 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,677 - migrateData - INFO - 1 item -2022-11-04 11:46:00,678 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,678 - migrateData - INFO - 1 item -2022-11-04 11:46:00,679 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,679 - migrateData - INFO - 1 item -2022-11-04 11:46:00,680 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,680 - migrateData - INFO - 1 item -2022-11-04 11:46:00,681 - pgConnector - INFO - Query??? 0 -2022-11-04 11:46:00,681 - migrateData - INFO - 1 item -2022-11-04 11:46:00,682 - migrateData - INFO - No new data found -2022-11-04 11:48:48,525 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,526 - migrateData - INFO - 1 item -2022-11-04 11:48:48,527 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,527 - migrateData - INFO - 1 item -2022-11-04 11:48:48,528 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,529 - migrateData - INFO - 1 item -2022-11-04 11:48:48,529 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,530 - migrateData - INFO - 1 item -2022-11-04 11:48:48,531 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,531 - migrateData - INFO - 1 item -2022-11-04 11:48:48,532 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,533 - migrateData - INFO - 1 item -2022-11-04 11:48:48,533 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,534 - migrateData - INFO - 1 item -2022-11-04 11:48:48,535 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,537 - migrateData - INFO - 1 item -2022-11-04 11:48:48,538 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,538 - migrateData - INFO - 1 item -2022-11-04 11:48:48,539 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,539 - migrateData - INFO - 1 item -2022-11-04 11:48:48,540 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,541 - migrateData - INFO - 1 item -2022-11-04 11:48:48,541 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,542 - migrateData - INFO - 1 item -2022-11-04 11:48:48,542 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,543 - migrateData - INFO - 1 item -2022-11-04 11:48:48,543 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,544 - migrateData - INFO - 1 item -2022-11-04 11:48:48,544 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,545 - migrateData - INFO - 1 item -2022-11-04 11:48:48,545 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,546 - migrateData - INFO - 1 item -2022-11-04 11:48:48,546 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,547 - migrateData - INFO - 1 item -2022-11-04 11:48:48,547 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,548 - migrateData - INFO - 1 item -2022-11-04 11:48:48,548 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,550 - migrateData - INFO - 1 item -2022-11-04 11:48:48,551 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,552 - migrateData - INFO - 1 item -2022-11-04 11:48:48,552 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,553 - migrateData - INFO - 1 item -2022-11-04 11:48:48,553 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,554 - migrateData - INFO - 1 item -2022-11-04 11:48:48,555 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,555 - migrateData - INFO - 1 item -2022-11-04 11:48:48,556 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,557 - migrateData - INFO - 1 item -2022-11-04 11:48:48,557 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,558 - migrateData - INFO - 1 item -2022-11-04 11:48:48,559 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,559 - migrateData - INFO - 1 item -2022-11-04 11:48:48,560 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,561 - migrateData - INFO - 1 item -2022-11-04 11:48:48,561 - pgConnector - INFO - Query??? 0 -2022-11-04 11:48:48,562 - migrateData - INFO - 1 item -2022-11-04 11:48:48,562 - migrateData - INFO - No new data found -2022-11-04 11:50:25,740 - pgConnector - ERROR - syntax error at or near "PRIMARY" -LINE 58: id PRIMARY KEY AUTO_INCREMENT, - ^ -2022-11-04 11:50:42,307 - pgConnector - ERROR - syntax error at or near "AUTO_INCREMENT" -LINE 58: id SERIAL PRIMARY KEY AUTO_INCREMENT, - ^ -2022-11-04 11:52:45,789 - pgConnector - ERROR - syntax error at or near "NOT" -LINE 58: id NOT NULL AUTO_INCREMENT, - ^ -2022-11-04 11:53:06,326 - pgConnector - ERROR - syntax error at or near "AUTO_INCREMENT" -LINE 58: id INT NOT NULL AUTO_INCREMENT, - ^ -2022-11-04 11:57:29,219 - pgConnector - ERROR - no results to fetch -2022-11-04 11:58:35,440 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,442 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,443 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,445 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,445 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,447 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,448 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,449 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,450 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,451 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,452 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,453 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,454 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,456 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,465 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,466 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,467 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,468 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,470 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,473 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,474 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,475 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,476 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,478 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,479 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,480 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,481 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,482 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:58:35,482 - migrateData - INFO - No new data found -2022-11-04 11:59:38,917 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,919 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,920 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,921 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,922 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,932 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,933 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,934 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,935 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,936 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,937 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,938 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,939 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,943 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,944 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,945 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,946 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,947 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,948 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,949 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,950 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,951 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,952 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,953 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,954 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,955 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,956 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,957 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 11:59:38,957 - migrateData - INFO - No new data found -2022-11-04 12:03:15,978 - pgConnector - INFO - (57,) -2022-11-04 12:03:15,978 - migrateData - INFO - None item -2022-11-04 12:03:15,979 - pgConnector - INFO - (58,) -2022-11-04 12:03:15,979 - migrateData - INFO - None item -2022-11-04 12:03:15,980 - pgConnector - INFO - (59,) -2022-11-04 12:03:15,980 - migrateData - INFO - None item -2022-11-04 12:03:15,981 - pgConnector - INFO - (60,) -2022-11-04 12:03:15,981 - migrateData - INFO - None item -2022-11-04 12:03:15,982 - pgConnector - INFO - (61,) -2022-11-04 12:03:15,983 - migrateData - INFO - None item -2022-11-04 12:03:15,986 - pgConnector - INFO - (62,) -2022-11-04 12:03:15,986 - migrateData - INFO - None item -2022-11-04 12:03:15,991 - pgConnector - INFO - (63,) -2022-11-04 12:03:15,991 - migrateData - INFO - None item -2022-11-04 12:03:15,992 - pgConnector - INFO - (64,) -2022-11-04 12:03:15,992 - migrateData - INFO - None item -2022-11-04 12:03:15,993 - pgConnector - INFO - (65,) -2022-11-04 12:03:15,993 - migrateData - INFO - None item -2022-11-04 12:03:15,994 - pgConnector - INFO - (66,) -2022-11-04 12:03:15,994 - migrateData - INFO - None item -2022-11-04 12:03:15,995 - pgConnector - INFO - (67,) -2022-11-04 12:03:15,996 - migrateData - INFO - None item -2022-11-04 12:03:15,997 - pgConnector - INFO - (68,) -2022-11-04 12:03:15,997 - migrateData - INFO - None item -2022-11-04 12:03:15,998 - pgConnector - INFO - (69,) -2022-11-04 12:03:15,998 - migrateData - INFO - None item -2022-11-04 12:03:15,999 - pgConnector - INFO - (70,) -2022-11-04 12:03:15,999 - migrateData - INFO - None item -2022-11-04 12:03:16,000 - pgConnector - INFO - (71,) -2022-11-04 12:03:16,000 - migrateData - INFO - None item -2022-11-04 12:03:16,001 - pgConnector - INFO - (72,) -2022-11-04 12:03:16,001 - migrateData - INFO - None item -2022-11-04 12:03:16,002 - pgConnector - INFO - (73,) -2022-11-04 12:03:16,002 - migrateData - INFO - None item -2022-11-04 12:03:16,003 - pgConnector - INFO - (74,) -2022-11-04 12:03:16,003 - migrateData - INFO - None item -2022-11-04 12:03:16,004 - pgConnector - INFO - (75,) -2022-11-04 12:03:16,004 - migrateData - INFO - None item -2022-11-04 12:03:16,006 - pgConnector - INFO - (76,) -2022-11-04 12:03:16,006 - migrateData - INFO - None item -2022-11-04 12:03:16,007 - pgConnector - INFO - (77,) -2022-11-04 12:03:16,007 - migrateData - INFO - None item -2022-11-04 12:03:16,010 - pgConnector - INFO - (78,) -2022-11-04 12:03:16,010 - migrateData - INFO - None item -2022-11-04 12:03:16,011 - pgConnector - INFO - (79,) -2022-11-04 12:03:16,011 - migrateData - INFO - None item -2022-11-04 12:03:16,018 - pgConnector - INFO - (80,) -2022-11-04 12:03:16,018 - migrateData - INFO - None item -2022-11-04 12:03:16,019 - pgConnector - INFO - (81,) -2022-11-04 12:03:16,019 - migrateData - INFO - None item -2022-11-04 12:03:16,020 - pgConnector - INFO - (82,) -2022-11-04 12:03:16,021 - migrateData - INFO - None item -2022-11-04 12:03:16,022 - pgConnector - INFO - (83,) -2022-11-04 12:03:16,022 - migrateData - INFO - None item -2022-11-04 12:03:16,023 - pgConnector - INFO - (84,) -2022-11-04 12:03:16,023 - migrateData - INFO - None item -2022-11-04 12:03:16,023 - migrateData - INFO - No new data found -2022-11-04 12:03:41,344 - pgConnector - INFO - 85 -2022-11-04 12:03:41,344 - migrateData - INFO - None item -2022-11-04 12:03:41,345 - pgConnector - INFO - 86 -2022-11-04 12:03:41,345 - migrateData - INFO - None item -2022-11-04 12:03:41,346 - pgConnector - INFO - 87 -2022-11-04 12:03:41,346 - migrateData - INFO - None item -2022-11-04 12:03:41,348 - pgConnector - INFO - 88 -2022-11-04 12:03:41,348 - migrateData - INFO - None item -2022-11-04 12:03:41,349 - pgConnector - INFO - 89 -2022-11-04 12:03:41,350 - migrateData - INFO - None item -2022-11-04 12:03:41,351 - pgConnector - INFO - 90 -2022-11-04 12:03:41,351 - migrateData - INFO - None item -2022-11-04 12:03:41,352 - pgConnector - INFO - 91 -2022-11-04 12:03:41,352 - migrateData - INFO - None item -2022-11-04 12:03:41,354 - pgConnector - INFO - 92 -2022-11-04 12:03:41,354 - migrateData - INFO - None item -2022-11-04 12:03:41,355 - pgConnector - INFO - 93 -2022-11-04 12:03:41,355 - migrateData - INFO - None item -2022-11-04 12:03:41,356 - pgConnector - INFO - 94 -2022-11-04 12:03:41,356 - migrateData - INFO - None item -2022-11-04 12:03:41,358 - pgConnector - INFO - 95 -2022-11-04 12:03:41,358 - migrateData - INFO - None item -2022-11-04 12:03:41,359 - pgConnector - INFO - 96 -2022-11-04 12:03:41,359 - migrateData - INFO - None item -2022-11-04 12:03:41,360 - pgConnector - INFO - 97 -2022-11-04 12:03:41,360 - migrateData - INFO - None item -2022-11-04 12:03:41,361 - pgConnector - INFO - 98 -2022-11-04 12:03:41,361 - migrateData - INFO - None item -2022-11-04 12:03:41,362 - pgConnector - INFO - 99 -2022-11-04 12:03:41,362 - migrateData - INFO - None item -2022-11-04 12:03:41,364 - pgConnector - INFO - 100 -2022-11-04 12:03:41,364 - migrateData - INFO - None item -2022-11-04 12:03:41,365 - pgConnector - INFO - 101 -2022-11-04 12:03:41,365 - migrateData - INFO - None item -2022-11-04 12:03:41,366 - pgConnector - INFO - 102 -2022-11-04 12:03:41,366 - migrateData - INFO - None item -2022-11-04 12:03:41,367 - pgConnector - INFO - 103 -2022-11-04 12:03:41,367 - migrateData - INFO - None item -2022-11-04 12:03:41,368 - pgConnector - INFO - 104 -2022-11-04 12:03:41,368 - migrateData - INFO - None item -2022-11-04 12:03:41,368 - pgConnector - INFO - 105 -2022-11-04 12:03:41,369 - migrateData - INFO - None item -2022-11-04 12:03:41,369 - pgConnector - INFO - 106 -2022-11-04 12:03:41,370 - migrateData - INFO - None item -2022-11-04 12:03:41,371 - pgConnector - INFO - 107 -2022-11-04 12:03:41,371 - migrateData - INFO - None item -2022-11-04 12:03:41,372 - pgConnector - INFO - 108 -2022-11-04 12:03:41,372 - migrateData - INFO - None item -2022-11-04 12:03:41,373 - pgConnector - INFO - 109 -2022-11-04 12:03:41,373 - migrateData - INFO - None item -2022-11-04 12:03:41,374 - pgConnector - INFO - 110 -2022-11-04 12:03:41,374 - migrateData - INFO - None item -2022-11-04 12:03:41,374 - pgConnector - INFO - 111 -2022-11-04 12:03:41,374 - migrateData - INFO - None item -2022-11-04 12:03:41,375 - pgConnector - INFO - 112 -2022-11-04 12:03:41,376 - migrateData - INFO - None item -2022-11-04 12:03:41,376 - migrateData - INFO - No new data found -2022-11-04 12:09:07,337 - pgConnector - INFO - 113 -2022-11-04 12:09:07,338 - pgConnector - INFO - 114 -2022-11-04 12:09:07,340 - pgConnector - INFO - 115 -2022-11-04 12:09:07,341 - pgConnector - INFO - 116 -2022-11-04 12:09:07,343 - pgConnector - INFO - 117 -2022-11-04 12:09:07,344 - pgConnector - INFO - 118 -2022-11-04 12:09:07,346 - pgConnector - INFO - 119 -2022-11-04 12:09:07,348 - pgConnector - INFO - 120 -2022-11-04 12:09:07,348 - pgConnector - INFO - 121 -2022-11-04 12:09:07,350 - pgConnector - INFO - 122 -2022-11-04 12:09:07,351 - pgConnector - INFO - 123 -2022-11-04 12:09:07,365 - pgConnector - INFO - 124 -2022-11-04 12:09:07,375 - pgConnector - INFO - 125 -2022-11-04 12:09:07,376 - pgConnector - INFO - 126 -2022-11-04 12:09:07,377 - pgConnector - INFO - 127 -2022-11-04 12:09:07,378 - pgConnector - INFO - 128 -2022-11-04 12:09:07,379 - pgConnector - INFO - 129 -2022-11-04 12:09:07,381 - pgConnector - INFO - 130 -2022-11-04 12:09:07,382 - pgConnector - INFO - 131 -2022-11-04 12:09:07,383 - pgConnector - INFO - 132 -2022-11-04 12:09:07,384 - pgConnector - INFO - 133 -2022-11-04 12:09:07,385 - pgConnector - INFO - 134 -2022-11-04 12:09:07,386 - pgConnector - INFO - 135 -2022-11-04 12:09:07,388 - pgConnector - INFO - 136 -2022-11-04 12:09:07,388 - pgConnector - INFO - 137 -2022-11-04 12:09:07,389 - pgConnector - INFO - 138 -2022-11-04 12:09:07,390 - pgConnector - INFO - 139 -2022-11-04 12:09:07,391 - pgConnector - INFO - 140 -2022-11-04 12:09:07,391 - migrateData - INFO - 28 vos created -2022-11-04 12:10:12,639 - pgConnector - INFO - 141 -2022-11-04 12:10:12,640 - pgConnector - INFO - 142 -2022-11-04 12:10:12,641 - pgConnector - INFO - 143 -2022-11-04 12:10:12,642 - pgConnector - INFO - 144 -2022-11-04 12:10:12,646 - pgConnector - INFO - 145 -2022-11-04 12:10:12,647 - pgConnector - INFO - 146 -2022-11-04 12:10:12,648 - pgConnector - INFO - 147 -2022-11-04 12:10:12,649 - pgConnector - INFO - 148 -2022-11-04 12:10:12,652 - pgConnector - INFO - 149 -2022-11-04 12:10:12,653 - pgConnector - INFO - 150 -2022-11-04 12:10:12,657 - pgConnector - INFO - 151 -2022-11-04 12:10:12,659 - pgConnector - INFO - 152 -2022-11-04 12:10:12,660 - pgConnector - INFO - 153 -2022-11-04 12:10:12,662 - pgConnector - INFO - 154 -2022-11-04 12:10:12,664 - pgConnector - INFO - 155 -2022-11-04 12:10:12,665 - pgConnector - INFO - 156 -2022-11-04 12:10:12,666 - pgConnector - INFO - 157 -2022-11-04 12:10:12,667 - pgConnector - INFO - 158 -2022-11-04 12:10:12,668 - pgConnector - INFO - 159 -2022-11-04 12:10:12,669 - pgConnector - INFO - 160 -2022-11-04 12:10:12,670 - pgConnector - INFO - 161 -2022-11-04 12:10:12,670 - pgConnector - INFO - 162 -2022-11-04 12:10:12,672 - pgConnector - INFO - 163 -2022-11-04 12:10:12,673 - pgConnector - INFO - 164 -2022-11-04 12:10:12,675 - pgConnector - INFO - 165 -2022-11-04 12:10:12,677 - pgConnector - INFO - 166 -2022-11-04 12:10:12,678 - pgConnector - INFO - 167 -2022-11-04 12:10:12,680 - pgConnector - INFO - 168 -2022-11-04 12:10:12,680 - migrateData - INFO - 28 vos created -2022-11-04 12:10:35,268 - pgConnector - INFO - 169 -2022-11-04 12:10:35,268 - migrateData - INFO - None item -2022-11-04 12:10:35,270 - pgConnector - INFO - 170 -2022-11-04 12:10:35,270 - migrateData - INFO - None item -2022-11-04 12:10:35,271 - pgConnector - INFO - 171 -2022-11-04 12:10:35,271 - migrateData - INFO - None item -2022-11-04 12:10:35,273 - pgConnector - INFO - 172 -2022-11-04 12:10:35,273 - migrateData - INFO - None item -2022-11-04 12:10:35,274 - pgConnector - INFO - 173 -2022-11-04 12:10:35,274 - migrateData - INFO - None item -2022-11-04 12:10:35,275 - pgConnector - INFO - 174 -2022-11-04 12:10:35,276 - migrateData - INFO - None item -2022-11-04 12:10:35,278 - pgConnector - INFO - 175 -2022-11-04 12:10:35,279 - migrateData - INFO - None item -2022-11-04 12:10:35,279 - pgConnector - INFO - 176 -2022-11-04 12:10:35,280 - migrateData - INFO - None item -2022-11-04 12:10:35,281 - pgConnector - INFO - 177 -2022-11-04 12:10:35,281 - migrateData - INFO - None item -2022-11-04 12:10:35,282 - pgConnector - INFO - 178 -2022-11-04 12:10:35,282 - migrateData - INFO - None item -2022-11-04 12:10:35,283 - pgConnector - INFO - 179 -2022-11-04 12:10:35,283 - migrateData - INFO - None item -2022-11-04 12:10:35,284 - pgConnector - INFO - 180 -2022-11-04 12:10:35,285 - migrateData - INFO - None item -2022-11-04 12:10:35,286 - pgConnector - INFO - 181 -2022-11-04 12:10:35,286 - migrateData - INFO - None item -2022-11-04 12:10:35,287 - pgConnector - INFO - 182 -2022-11-04 12:10:35,287 - migrateData - INFO - None item -2022-11-04 12:10:35,288 - pgConnector - INFO - 183 -2022-11-04 12:10:35,288 - migrateData - INFO - None item -2022-11-04 12:10:35,289 - pgConnector - INFO - 184 -2022-11-04 12:10:35,289 - migrateData - INFO - None item -2022-11-04 12:10:35,290 - pgConnector - INFO - 185 -2022-11-04 12:10:35,290 - migrateData - INFO - None item -2022-11-04 12:10:35,291 - pgConnector - INFO - 186 -2022-11-04 12:10:35,291 - migrateData - INFO - None item -2022-11-04 12:10:35,294 - pgConnector - INFO - 187 -2022-11-04 12:10:35,295 - migrateData - INFO - None item -2022-11-04 12:10:35,296 - pgConnector - INFO - 188 -2022-11-04 12:10:35,296 - migrateData - INFO - None item -2022-11-04 12:10:35,297 - pgConnector - INFO - 189 -2022-11-04 12:10:35,297 - migrateData - INFO - None item -2022-11-04 12:10:35,298 - pgConnector - INFO - 190 -2022-11-04 12:10:35,298 - migrateData - INFO - None item -2022-11-04 12:10:35,299 - pgConnector - INFO - 191 -2022-11-04 12:10:35,299 - migrateData - INFO - None item -2022-11-04 12:10:35,300 - pgConnector - INFO - 192 -2022-11-04 12:10:35,300 - migrateData - INFO - None item -2022-11-04 12:10:35,301 - pgConnector - INFO - 193 -2022-11-04 12:10:35,301 - migrateData - INFO - None item -2022-11-04 12:10:35,302 - pgConnector - INFO - 194 -2022-11-04 12:10:35,302 - migrateData - INFO - None item -2022-11-04 12:10:35,303 - pgConnector - INFO - 195 -2022-11-04 12:10:35,303 - migrateData - INFO - None item -2022-11-04 12:10:35,304 - pgConnector - INFO - 196 -2022-11-04 12:10:35,304 - migrateData - INFO - None item -2022-11-04 12:10:35,304 - migrateData - INFO - 28 vos created -2022-11-04 12:12:08,524 - pgConnector - INFO - 197 -2022-11-04 12:12:08,524 - vos - INFO - None -2022-11-04 12:12:08,524 - migrateData - INFO - None item -2022-11-04 12:12:08,526 - pgConnector - INFO - 198 -2022-11-04 12:12:08,526 - vos - INFO - None -2022-11-04 12:12:08,526 - migrateData - INFO - None item -2022-11-04 12:12:08,528 - pgConnector - INFO - 199 -2022-11-04 12:12:08,528 - vos - INFO - None -2022-11-04 12:12:08,528 - migrateData - INFO - None item -2022-11-04 12:12:08,530 - pgConnector - INFO - 200 -2022-11-04 12:12:08,530 - vos - INFO - None -2022-11-04 12:12:08,530 - migrateData - INFO - None item -2022-11-04 12:12:08,534 - pgConnector - INFO - 201 -2022-11-04 12:12:08,534 - vos - INFO - None -2022-11-04 12:12:08,534 - migrateData - INFO - None item -2022-11-04 12:12:08,535 - pgConnector - INFO - 202 -2022-11-04 12:12:08,535 - vos - INFO - None -2022-11-04 12:12:08,536 - migrateData - INFO - None item -2022-11-04 12:12:08,537 - pgConnector - INFO - 203 -2022-11-04 12:12:08,537 - vos - INFO - None -2022-11-04 12:12:08,537 - migrateData - INFO - None item -2022-11-04 12:12:08,538 - pgConnector - INFO - 204 -2022-11-04 12:12:08,539 - vos - INFO - None -2022-11-04 12:12:08,539 - migrateData - INFO - None item -2022-11-04 12:12:08,540 - pgConnector - INFO - 205 -2022-11-04 12:12:08,540 - vos - INFO - None -2022-11-04 12:12:08,540 - migrateData - INFO - None item -2022-11-04 12:12:08,541 - pgConnector - INFO - 206 -2022-11-04 12:12:08,541 - vos - INFO - None -2022-11-04 12:12:08,541 - migrateData - INFO - None item -2022-11-04 12:12:08,542 - pgConnector - INFO - 207 -2022-11-04 12:12:08,542 - vos - INFO - None -2022-11-04 12:12:08,542 - migrateData - INFO - None item -2022-11-04 12:12:08,543 - pgConnector - INFO - 208 -2022-11-04 12:12:08,543 - vos - INFO - None -2022-11-04 12:12:08,543 - migrateData - INFO - None item -2022-11-04 12:12:08,544 - pgConnector - INFO - 209 -2022-11-04 12:12:08,545 - vos - INFO - None -2022-11-04 12:12:08,545 - migrateData - INFO - None item -2022-11-04 12:12:08,546 - pgConnector - INFO - 210 -2022-11-04 12:12:08,546 - vos - INFO - None -2022-11-04 12:12:08,546 - migrateData - INFO - None item -2022-11-04 12:12:08,547 - pgConnector - INFO - 211 -2022-11-04 12:12:08,547 - vos - INFO - None -2022-11-04 12:12:08,547 - migrateData - INFO - None item -2022-11-04 12:12:08,548 - pgConnector - INFO - 212 -2022-11-04 12:12:08,548 - vos - INFO - None -2022-11-04 12:12:08,548 - migrateData - INFO - None item -2022-11-04 12:12:08,549 - pgConnector - INFO - 213 -2022-11-04 12:12:08,549 - vos - INFO - None -2022-11-04 12:12:08,549 - migrateData - INFO - None item -2022-11-04 12:12:08,550 - pgConnector - INFO - 214 -2022-11-04 12:12:08,550 - vos - INFO - None -2022-11-04 12:12:08,550 - migrateData - INFO - None item -2022-11-04 12:12:08,552 - pgConnector - INFO - 215 -2022-11-04 12:12:08,552 - vos - INFO - None -2022-11-04 12:12:08,552 - migrateData - INFO - None item -2022-11-04 12:12:08,555 - pgConnector - INFO - 216 -2022-11-04 12:12:08,556 - vos - INFO - None -2022-11-04 12:12:08,556 - migrateData - INFO - None item -2022-11-04 12:12:08,557 - pgConnector - INFO - 217 -2022-11-04 12:12:08,557 - vos - INFO - None -2022-11-04 12:12:08,557 - migrateData - INFO - None item -2022-11-04 12:12:08,559 - pgConnector - INFO - 218 -2022-11-04 12:12:08,559 - vos - INFO - None -2022-11-04 12:12:08,559 - migrateData - INFO - None item -2022-11-04 12:12:08,560 - pgConnector - INFO - 219 -2022-11-04 12:12:08,560 - vos - INFO - None -2022-11-04 12:12:08,560 - migrateData - INFO - None item -2022-11-04 12:12:08,561 - pgConnector - INFO - 220 -2022-11-04 12:12:08,561 - vos - INFO - None -2022-11-04 12:12:08,561 - migrateData - INFO - None item -2022-11-04 12:12:08,562 - pgConnector - INFO - 221 -2022-11-04 12:12:08,562 - vos - INFO - None -2022-11-04 12:12:08,562 - migrateData - INFO - None item -2022-11-04 12:12:08,563 - pgConnector - INFO - 222 -2022-11-04 12:12:08,563 - vos - INFO - None -2022-11-04 12:12:08,563 - migrateData - INFO - None item -2022-11-04 12:12:08,564 - pgConnector - INFO - 223 -2022-11-04 12:12:08,564 - vos - INFO - None -2022-11-04 12:12:08,564 - migrateData - INFO - None item -2022-11-04 12:12:08,565 - pgConnector - INFO - 224 -2022-11-04 12:12:08,565 - vos - INFO - None -2022-11-04 12:12:08,565 - migrateData - INFO - None item -2022-11-04 12:12:08,565 - migrateData - INFO - 28 vos created -2022-11-04 12:12:50,643 - pgConnector - INFO - 225 -2022-11-04 12:12:50,643 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,644 - pgConnector - INFO - 226 -2022-11-04 12:12:50,644 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,645 - pgConnector - INFO - 227 -2022-11-04 12:12:50,645 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,648 - pgConnector - INFO - 228 -2022-11-04 12:12:50,648 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,651 - pgConnector - INFO - 229 -2022-11-04 12:12:50,651 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,652 - pgConnector - INFO - 230 -2022-11-04 12:12:50,652 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,653 - pgConnector - INFO - 231 -2022-11-04 12:12:50,653 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,654 - pgConnector - INFO - 232 -2022-11-04 12:12:50,654 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,655 - pgConnector - INFO - 233 -2022-11-04 12:12:50,655 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,656 - pgConnector - INFO - 234 -2022-11-04 12:12:50,656 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,657 - pgConnector - INFO - 235 -2022-11-04 12:12:50,657 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,658 - pgConnector - INFO - 236 -2022-11-04 12:12:50,658 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,659 - pgConnector - INFO - 237 -2022-11-04 12:12:50,660 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,661 - pgConnector - INFO - 238 -2022-11-04 12:12:50,661 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,662 - pgConnector - INFO - 239 -2022-11-04 12:12:50,662 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,663 - pgConnector - INFO - 240 -2022-11-04 12:12:50,663 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,665 - pgConnector - INFO - 241 -2022-11-04 12:12:50,665 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,666 - pgConnector - INFO - 242 -2022-11-04 12:12:50,666 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,667 - pgConnector - INFO - 243 -2022-11-04 12:12:50,667 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,668 - pgConnector - INFO - 244 -2022-11-04 12:12:50,668 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,669 - pgConnector - INFO - 245 -2022-11-04 12:12:50,669 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,670 - pgConnector - INFO - 246 -2022-11-04 12:12:50,670 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,672 - pgConnector - INFO - 247 -2022-11-04 12:12:50,672 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,673 - pgConnector - INFO - 248 -2022-11-04 12:12:50,673 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,675 - pgConnector - INFO - 249 -2022-11-04 12:12:50,675 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,676 - pgConnector - INFO - 250 -2022-11-04 12:12:50,676 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,678 - pgConnector - INFO - 251 -2022-11-04 12:12:50,678 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,679 - pgConnector - INFO - 252 -2022-11-04 12:12:50,679 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:12:50,679 - migrateData - INFO - No new data found -2022-11-04 12:14:17,865 - pgConnector - INFO - 253 -2022-11-04 12:14:17,865 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,867 - pgConnector - INFO - 254 -2022-11-04 12:14:17,867 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,868 - pgConnector - INFO - 255 -2022-11-04 12:14:17,868 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,869 - pgConnector - INFO - 256 -2022-11-04 12:14:17,869 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,870 - pgConnector - INFO - 257 -2022-11-04 12:14:17,871 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,873 - pgConnector - INFO - 258 -2022-11-04 12:14:17,873 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,882 - pgConnector - INFO - 259 -2022-11-04 12:14:17,882 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,885 - pgConnector - INFO - 260 -2022-11-04 12:14:17,885 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,887 - pgConnector - INFO - 261 -2022-11-04 12:14:17,887 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,889 - pgConnector - INFO - 262 -2022-11-04 12:14:17,889 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,892 - pgConnector - INFO - 263 -2022-11-04 12:14:17,893 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,894 - pgConnector - INFO - 264 -2022-11-04 12:14:17,894 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,895 - pgConnector - INFO - 265 -2022-11-04 12:14:17,895 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,896 - pgConnector - INFO - 266 -2022-11-04 12:14:17,896 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,897 - pgConnector - INFO - 267 -2022-11-04 12:14:17,897 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,898 - pgConnector - INFO - 268 -2022-11-04 12:14:17,898 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,899 - pgConnector - INFO - 269 -2022-11-04 12:14:17,899 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,900 - pgConnector - INFO - 270 -2022-11-04 12:14:17,900 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,901 - pgConnector - INFO - 271 -2022-11-04 12:14:17,901 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,902 - pgConnector - INFO - 272 -2022-11-04 12:14:17,903 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,903 - pgConnector - INFO - 273 -2022-11-04 12:14:17,903 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,904 - pgConnector - INFO - 274 -2022-11-04 12:14:17,905 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,906 - pgConnector - INFO - 275 -2022-11-04 12:14:17,906 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,907 - pgConnector - INFO - 276 -2022-11-04 12:14:17,907 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,908 - pgConnector - INFO - 277 -2022-11-04 12:14:17,908 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,909 - pgConnector - INFO - 278 -2022-11-04 12:14:17,909 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,910 - pgConnector - INFO - 279 -2022-11-04 12:14:17,910 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,911 - pgConnector - INFO - 280 -2022-11-04 12:14:17,911 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:17,911 - migrateData - INFO - No new data found -2022-11-04 12:14:30,067 - pgConnector - INFO - 281 -2022-11-04 12:14:30,067 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,069 - pgConnector - INFO - 282 -2022-11-04 12:14:30,069 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,070 - pgConnector - INFO - 283 -2022-11-04 12:14:30,070 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,071 - pgConnector - INFO - 284 -2022-11-04 12:14:30,071 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,073 - pgConnector - INFO - 285 -2022-11-04 12:14:30,073 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,074 - pgConnector - INFO - 286 -2022-11-04 12:14:30,074 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,076 - pgConnector - INFO - 287 -2022-11-04 12:14:30,076 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,077 - pgConnector - INFO - 288 -2022-11-04 12:14:30,077 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,078 - pgConnector - INFO - 289 -2022-11-04 12:14:30,078 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,079 - pgConnector - INFO - 290 -2022-11-04 12:14:30,079 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,080 - pgConnector - INFO - 291 -2022-11-04 12:14:30,080 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,081 - pgConnector - INFO - 292 -2022-11-04 12:14:30,081 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,082 - pgConnector - INFO - 293 -2022-11-04 12:14:30,082 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,083 - pgConnector - INFO - 294 -2022-11-04 12:14:30,083 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,083 - pgConnector - INFO - 295 -2022-11-04 12:14:30,084 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,085 - pgConnector - INFO - 296 -2022-11-04 12:14:30,085 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,086 - pgConnector - INFO - 297 -2022-11-04 12:14:30,086 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,087 - pgConnector - INFO - 298 -2022-11-04 12:14:30,087 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,088 - pgConnector - INFO - 299 -2022-11-04 12:14:30,088 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,090 - pgConnector - INFO - 300 -2022-11-04 12:14:30,090 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,091 - pgConnector - INFO - 301 -2022-11-04 12:14:30,091 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,092 - pgConnector - INFO - 302 -2022-11-04 12:14:30,092 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,093 - pgConnector - INFO - 303 -2022-11-04 12:14:30,093 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,094 - pgConnector - INFO - 304 -2022-11-04 12:14:30,094 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,095 - pgConnector - INFO - 305 -2022-11-04 12:14:30,095 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,096 - pgConnector - INFO - 306 -2022-11-04 12:14:30,096 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,097 - pgConnector - INFO - 307 -2022-11-04 12:14:30,097 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,098 - pgConnector - INFO - 308 -2022-11-04 12:14:30,098 - pgConnector - ERROR - 'NoneType' object has no attribute 'count' -2022-11-04 12:14:30,098 - migrateData - INFO - No new data found -2022-11-04 12:15:30,714 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,715 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,716 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,717 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,718 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,719 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,722 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,723 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,725 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,726 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,727 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,727 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,728 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,729 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,730 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,731 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,732 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,742 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,743 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,745 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,746 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,748 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,749 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,750 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,752 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,753 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,759 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,763 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:15:30,764 - migrateData - INFO - No new data found -2022-11-04 12:16:37,145 - pgConnector - INFO - None -2022-11-04 12:16:37,145 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,146 - pgConnector - INFO - None -2022-11-04 12:16:37,146 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,147 - pgConnector - INFO - None -2022-11-04 12:16:37,147 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,148 - pgConnector - INFO - None -2022-11-04 12:16:37,149 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,150 - pgConnector - INFO - None -2022-11-04 12:16:37,150 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,151 - pgConnector - INFO - None -2022-11-04 12:16:37,151 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,152 - pgConnector - INFO - None -2022-11-04 12:16:37,152 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,153 - pgConnector - INFO - None -2022-11-04 12:16:37,153 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,155 - pgConnector - INFO - None -2022-11-04 12:16:37,155 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,157 - pgConnector - INFO - None -2022-11-04 12:16:37,157 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,159 - pgConnector - INFO - None -2022-11-04 12:16:37,159 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,160 - pgConnector - INFO - None -2022-11-04 12:16:37,160 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,161 - pgConnector - INFO - None -2022-11-04 12:16:37,161 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,162 - pgConnector - INFO - None -2022-11-04 12:16:37,162 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,163 - pgConnector - INFO - None -2022-11-04 12:16:37,163 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,164 - pgConnector - INFO - None -2022-11-04 12:16:37,164 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,166 - pgConnector - INFO - None -2022-11-04 12:16:37,166 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,167 - pgConnector - INFO - None -2022-11-04 12:16:37,167 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,168 - pgConnector - INFO - None -2022-11-04 12:16:37,168 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,169 - pgConnector - INFO - None -2022-11-04 12:16:37,170 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,171 - pgConnector - INFO - None -2022-11-04 12:16:37,171 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,172 - pgConnector - INFO - None -2022-11-04 12:16:37,172 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,173 - pgConnector - INFO - None -2022-11-04 12:16:37,173 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,175 - pgConnector - INFO - None -2022-11-04 12:16:37,175 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,176 - pgConnector - INFO - None -2022-11-04 12:16:37,176 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,178 - pgConnector - INFO - None -2022-11-04 12:16:37,178 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,179 - pgConnector - INFO - None -2022-11-04 12:16:37,179 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,180 - pgConnector - INFO - None -2022-11-04 12:16:37,180 - pgConnector - ERROR - 'NoneType' object is not subscriptable -2022-11-04 12:16:37,180 - migrateData - INFO - No new data found -2022-11-04 12:17:03,061 - pgConnector - INFO - (365,) -2022-11-04 12:17:03,062 - vos - INFO - None -2022-11-04 12:17:03,062 - migrateData - INFO - None item -2022-11-04 12:17:03,063 - pgConnector - INFO - (366,) -2022-11-04 12:17:03,063 - vos - INFO - None -2022-11-04 12:17:03,063 - migrateData - INFO - None item -2022-11-04 12:17:03,064 - pgConnector - INFO - (367,) -2022-11-04 12:17:03,064 - vos - INFO - None -2022-11-04 12:17:03,064 - migrateData - INFO - None item -2022-11-04 12:17:03,065 - pgConnector - INFO - (368,) -2022-11-04 12:17:03,065 - vos - INFO - None -2022-11-04 12:17:03,065 - migrateData - INFO - None item -2022-11-04 12:17:03,066 - pgConnector - INFO - (369,) -2022-11-04 12:17:03,067 - vos - INFO - None -2022-11-04 12:17:03,067 - migrateData - INFO - None item -2022-11-04 12:17:03,068 - pgConnector - INFO - (370,) -2022-11-04 12:17:03,068 - vos - INFO - None -2022-11-04 12:17:03,068 - migrateData - INFO - None item -2022-11-04 12:17:03,074 - pgConnector - INFO - (371,) -2022-11-04 12:17:03,074 - vos - INFO - None -2022-11-04 12:17:03,074 - migrateData - INFO - None item -2022-11-04 12:17:03,075 - pgConnector - INFO - (372,) -2022-11-04 12:17:03,075 - vos - INFO - None -2022-11-04 12:17:03,075 - migrateData - INFO - None item -2022-11-04 12:17:03,077 - pgConnector - INFO - (373,) -2022-11-04 12:17:03,077 - vos - INFO - None -2022-11-04 12:17:03,077 - migrateData - INFO - None item -2022-11-04 12:17:03,078 - pgConnector - INFO - (374,) -2022-11-04 12:17:03,078 - vos - INFO - None -2022-11-04 12:17:03,078 - migrateData - INFO - None item -2022-11-04 12:17:03,079 - pgConnector - INFO - (375,) -2022-11-04 12:17:03,079 - vos - INFO - None -2022-11-04 12:17:03,080 - migrateData - INFO - None item -2022-11-04 12:17:03,081 - pgConnector - INFO - (376,) -2022-11-04 12:17:03,081 - vos - INFO - None -2022-11-04 12:17:03,081 - migrateData - INFO - None item -2022-11-04 12:17:03,082 - pgConnector - INFO - (377,) -2022-11-04 12:17:03,082 - vos - INFO - None -2022-11-04 12:17:03,082 - migrateData - INFO - None item -2022-11-04 12:17:03,084 - pgConnector - INFO - (378,) -2022-11-04 12:17:03,084 - vos - INFO - None -2022-11-04 12:17:03,084 - migrateData - INFO - None item -2022-11-04 12:17:03,085 - pgConnector - INFO - (379,) -2022-11-04 12:17:03,085 - vos - INFO - None -2022-11-04 12:17:03,085 - migrateData - INFO - None item -2022-11-04 12:17:03,087 - pgConnector - INFO - (380,) -2022-11-04 12:17:03,087 - vos - INFO - None -2022-11-04 12:17:03,087 - migrateData - INFO - None item -2022-11-04 12:17:03,088 - pgConnector - INFO - (381,) -2022-11-04 12:17:03,088 - vos - INFO - None -2022-11-04 12:17:03,088 - migrateData - INFO - None item -2022-11-04 12:17:03,089 - pgConnector - INFO - (382,) -2022-11-04 12:17:03,089 - vos - INFO - None -2022-11-04 12:17:03,089 - migrateData - INFO - None item -2022-11-04 12:17:03,091 - pgConnector - INFO - (383,) -2022-11-04 12:17:03,091 - vos - INFO - None -2022-11-04 12:17:03,091 - migrateData - INFO - None item -2022-11-04 12:17:03,092 - pgConnector - INFO - (384,) -2022-11-04 12:17:03,092 - vos - INFO - None -2022-11-04 12:17:03,092 - migrateData - INFO - None item -2022-11-04 12:17:03,093 - pgConnector - INFO - (385,) -2022-11-04 12:17:03,093 - vos - INFO - None -2022-11-04 12:17:03,093 - migrateData - INFO - None item -2022-11-04 12:17:03,094 - pgConnector - INFO - (386,) -2022-11-04 12:17:03,094 - vos - INFO - None -2022-11-04 12:17:03,094 - migrateData - INFO - None item -2022-11-04 12:17:03,095 - pgConnector - INFO - (387,) -2022-11-04 12:17:03,095 - vos - INFO - None -2022-11-04 12:17:03,095 - migrateData - INFO - None item -2022-11-04 12:17:03,096 - pgConnector - INFO - (388,) -2022-11-04 12:17:03,096 - vos - INFO - None -2022-11-04 12:17:03,096 - migrateData - INFO - None item -2022-11-04 12:17:03,097 - pgConnector - INFO - (389,) -2022-11-04 12:17:03,097 - vos - INFO - None -2022-11-04 12:17:03,097 - migrateData - INFO - None item -2022-11-04 12:17:03,098 - pgConnector - INFO - (390,) -2022-11-04 12:17:03,098 - vos - INFO - None -2022-11-04 12:17:03,098 - migrateData - INFO - None item -2022-11-04 12:17:03,099 - pgConnector - INFO - (391,) -2022-11-04 12:17:03,099 - vos - INFO - None -2022-11-04 12:17:03,099 - migrateData - INFO - None item -2022-11-04 12:17:03,100 - pgConnector - INFO - (392,) -2022-11-04 12:17:03,100 - vos - INFO - None -2022-11-04 12:17:03,100 - migrateData - INFO - None item -2022-11-04 12:17:03,100 - migrateData - INFO - 28 vos created -2022-11-04 12:18:04,361 - pgConnector - INFO - (393,) -2022-11-04 12:18:04,361 - vos - INFO - None -2022-11-04 12:18:04,361 - migrateData - INFO - None item -2022-11-04 12:18:04,363 - pgConnector - INFO - (394,) -2022-11-04 12:18:04,363 - vos - INFO - None -2022-11-04 12:18:04,363 - migrateData - INFO - None item -2022-11-04 12:18:04,364 - pgConnector - INFO - (395,) -2022-11-04 12:18:04,364 - vos - INFO - None -2022-11-04 12:18:04,364 - migrateData - INFO - None item -2022-11-04 12:18:04,365 - pgConnector - INFO - (396,) -2022-11-04 12:18:04,366 - vos - INFO - None -2022-11-04 12:18:04,366 - migrateData - INFO - None item -2022-11-04 12:18:04,367 - pgConnector - INFO - (397,) -2022-11-04 12:18:04,367 - vos - INFO - None -2022-11-04 12:18:04,367 - migrateData - INFO - None item -2022-11-04 12:18:04,369 - pgConnector - INFO - (398,) -2022-11-04 12:18:04,369 - vos - INFO - None -2022-11-04 12:18:04,369 - migrateData - INFO - None item -2022-11-04 12:18:04,370 - pgConnector - INFO - (399,) -2022-11-04 12:18:04,370 - vos - INFO - None -2022-11-04 12:18:04,370 - migrateData - INFO - None item -2022-11-04 12:18:04,371 - pgConnector - INFO - (400,) -2022-11-04 12:18:04,371 - vos - INFO - None -2022-11-04 12:18:04,371 - migrateData - INFO - None item -2022-11-04 12:18:04,372 - pgConnector - INFO - (401,) -2022-11-04 12:18:04,372 - vos - INFO - None -2022-11-04 12:18:04,372 - migrateData - INFO - None item -2022-11-04 12:18:04,373 - pgConnector - INFO - (402,) -2022-11-04 12:18:04,373 - vos - INFO - None -2022-11-04 12:18:04,373 - migrateData - INFO - None item -2022-11-04 12:18:04,375 - pgConnector - INFO - (403,) -2022-11-04 12:18:04,375 - vos - INFO - None -2022-11-04 12:18:04,375 - migrateData - INFO - None item -2022-11-04 12:18:04,376 - pgConnector - INFO - (404,) -2022-11-04 12:18:04,376 - vos - INFO - None -2022-11-04 12:18:04,376 - migrateData - INFO - None item -2022-11-04 12:18:04,377 - pgConnector - INFO - (405,) -2022-11-04 12:18:04,377 - vos - INFO - None -2022-11-04 12:18:04,377 - migrateData - INFO - None item -2022-11-04 12:18:04,378 - pgConnector - INFO - (406,) -2022-11-04 12:18:04,378 - vos - INFO - None -2022-11-04 12:18:04,378 - migrateData - INFO - None item -2022-11-04 12:18:04,379 - pgConnector - INFO - (407,) -2022-11-04 12:18:04,379 - vos - INFO - None -2022-11-04 12:18:04,380 - migrateData - INFO - None item -2022-11-04 12:18:04,381 - pgConnector - INFO - (408,) -2022-11-04 12:18:04,381 - vos - INFO - None -2022-11-04 12:18:04,381 - migrateData - INFO - None item -2022-11-04 12:18:04,382 - pgConnector - INFO - (409,) -2022-11-04 12:18:04,382 - vos - INFO - None -2022-11-04 12:18:04,382 - migrateData - INFO - None item -2022-11-04 12:18:04,383 - pgConnector - INFO - (410,) -2022-11-04 12:18:04,383 - vos - INFO - None -2022-11-04 12:18:04,383 - migrateData - INFO - None item -2022-11-04 12:18:04,385 - pgConnector - INFO - (411,) -2022-11-04 12:18:04,385 - vos - INFO - None -2022-11-04 12:18:04,385 - migrateData - INFO - None item -2022-11-04 12:18:04,386 - pgConnector - INFO - (412,) -2022-11-04 12:18:04,386 - vos - INFO - None -2022-11-04 12:18:04,386 - migrateData - INFO - None item -2022-11-04 12:18:04,388 - pgConnector - INFO - (413,) -2022-11-04 12:18:04,388 - vos - INFO - None -2022-11-04 12:18:04,388 - migrateData - INFO - None item -2022-11-04 12:18:04,389 - pgConnector - INFO - (414,) -2022-11-04 12:18:04,389 - vos - INFO - None -2022-11-04 12:18:04,389 - migrateData - INFO - None item -2022-11-04 12:18:04,390 - pgConnector - INFO - (415,) -2022-11-04 12:18:04,390 - vos - INFO - None -2022-11-04 12:18:04,390 - migrateData - INFO - None item -2022-11-04 12:18:04,391 - pgConnector - INFO - (416,) -2022-11-04 12:18:04,392 - vos - INFO - None -2022-11-04 12:18:04,392 - migrateData - INFO - None item -2022-11-04 12:18:04,393 - pgConnector - INFO - (417,) -2022-11-04 12:18:04,393 - vos - INFO - None -2022-11-04 12:18:04,393 - migrateData - INFO - None item -2022-11-04 12:18:04,394 - pgConnector - INFO - (418,) -2022-11-04 12:18:04,394 - vos - INFO - None -2022-11-04 12:18:04,394 - migrateData - INFO - None item -2022-11-04 12:18:04,395 - pgConnector - INFO - (419,) -2022-11-04 12:18:04,395 - vos - INFO - None -2022-11-04 12:18:04,395 - migrateData - INFO - None item -2022-11-04 12:18:04,396 - pgConnector - INFO - (420,) -2022-11-04 12:18:04,396 - vos - INFO - None -2022-11-04 12:18:04,396 - migrateData - INFO - None item -2022-11-04 12:18:04,396 - migrateData - INFO - 28 vos created -2022-11-04 12:18:40,872 - pgConnector - INFO - (421,) -2022-11-04 12:18:40,872 - vos - INFO - None -2022-11-04 12:18:40,872 - migrateData - INFO - None item -2022-11-04 12:18:40,874 - pgConnector - INFO - (422,) -2022-11-04 12:18:40,874 - vos - INFO - None -2022-11-04 12:18:40,874 - migrateData - INFO - None item -2022-11-04 12:18:40,875 - pgConnector - INFO - (423,) -2022-11-04 12:18:40,875 - vos - INFO - None -2022-11-04 12:18:40,875 - migrateData - INFO - None item -2022-11-04 12:18:40,877 - pgConnector - INFO - (424,) -2022-11-04 12:18:40,877 - vos - INFO - None -2022-11-04 12:18:40,877 - migrateData - INFO - None item -2022-11-04 12:18:40,878 - pgConnector - INFO - (425,) -2022-11-04 12:18:40,878 - vos - INFO - None -2022-11-04 12:18:40,879 - migrateData - INFO - None item -2022-11-04 12:18:40,881 - pgConnector - INFO - (426,) -2022-11-04 12:18:40,882 - vos - INFO - None -2022-11-04 12:18:40,882 - migrateData - INFO - None item -2022-11-04 12:18:40,883 - pgConnector - INFO - (427,) -2022-11-04 12:18:40,883 - vos - INFO - None -2022-11-04 12:18:40,883 - migrateData - INFO - None item -2022-11-04 12:18:40,884 - pgConnector - INFO - (428,) -2022-11-04 12:18:40,884 - vos - INFO - None -2022-11-04 12:18:40,884 - migrateData - INFO - None item -2022-11-04 12:18:40,885 - pgConnector - INFO - (429,) -2022-11-04 12:18:40,885 - vos - INFO - None -2022-11-04 12:18:40,885 - migrateData - INFO - None item -2022-11-04 12:18:40,886 - pgConnector - INFO - (430,) -2022-11-04 12:18:40,887 - vos - INFO - None -2022-11-04 12:18:40,887 - migrateData - INFO - None item -2022-11-04 12:18:40,888 - pgConnector - INFO - (431,) -2022-11-04 12:18:40,888 - vos - INFO - None -2022-11-04 12:18:40,888 - migrateData - INFO - None item -2022-11-04 12:18:40,888 - pgConnector - INFO - (432,) -2022-11-04 12:18:40,889 - vos - INFO - None -2022-11-04 12:18:40,889 - migrateData - INFO - None item -2022-11-04 12:18:40,889 - pgConnector - INFO - (433,) -2022-11-04 12:18:40,889 - vos - INFO - None -2022-11-04 12:18:40,890 - migrateData - INFO - None item -2022-11-04 12:18:40,890 - pgConnector - INFO - (434,) -2022-11-04 12:18:40,891 - vos - INFO - None -2022-11-04 12:18:40,891 - migrateData - INFO - None item -2022-11-04 12:18:40,891 - pgConnector - INFO - (435,) -2022-11-04 12:18:40,891 - vos - INFO - None -2022-11-04 12:18:40,892 - migrateData - INFO - None item -2022-11-04 12:18:40,893 - pgConnector - INFO - (436,) -2022-11-04 12:18:40,893 - vos - INFO - None -2022-11-04 12:18:40,893 - migrateData - INFO - None item -2022-11-04 12:18:40,894 - pgConnector - INFO - (437,) -2022-11-04 12:18:40,894 - vos - INFO - None -2022-11-04 12:18:40,894 - migrateData - INFO - None item -2022-11-04 12:18:40,895 - pgConnector - INFO - (438,) -2022-11-04 12:18:40,895 - vos - INFO - None -2022-11-04 12:18:40,895 - migrateData - INFO - None item -2022-11-04 12:18:40,896 - pgConnector - INFO - (439,) -2022-11-04 12:18:40,896 - vos - INFO - None -2022-11-04 12:18:40,897 - migrateData - INFO - None item -2022-11-04 12:18:40,898 - pgConnector - INFO - (440,) -2022-11-04 12:18:40,898 - vos - INFO - None -2022-11-04 12:18:40,898 - migrateData - INFO - None item -2022-11-04 12:18:40,899 - pgConnector - INFO - (441,) -2022-11-04 12:18:40,899 - vos - INFO - None -2022-11-04 12:18:40,899 - migrateData - INFO - None item -2022-11-04 12:18:40,900 - pgConnector - INFO - (442,) -2022-11-04 12:18:40,901 - vos - INFO - None -2022-11-04 12:18:40,901 - migrateData - INFO - None item -2022-11-04 12:18:40,903 - pgConnector - INFO - (443,) -2022-11-04 12:18:40,903 - vos - INFO - None -2022-11-04 12:18:40,903 - migrateData - INFO - None item -2022-11-04 12:18:40,905 - pgConnector - INFO - (444,) -2022-11-04 12:18:40,905 - vos - INFO - None -2022-11-04 12:18:40,905 - migrateData - INFO - None item -2022-11-04 12:18:40,906 - pgConnector - INFO - (445,) -2022-11-04 12:18:40,906 - vos - INFO - None -2022-11-04 12:18:40,906 - migrateData - INFO - None item -2022-11-04 12:18:40,907 - pgConnector - INFO - (446,) -2022-11-04 12:18:40,908 - vos - INFO - None -2022-11-04 12:18:40,908 - migrateData - INFO - None item -2022-11-04 12:18:40,910 - pgConnector - INFO - (447,) -2022-11-04 12:18:40,910 - vos - INFO - None -2022-11-04 12:18:40,910 - migrateData - INFO - None item -2022-11-04 12:18:40,911 - pgConnector - INFO - (448,) -2022-11-04 12:18:40,911 - vos - INFO - None -2022-11-04 12:18:40,911 - migrateData - INFO - None item -2022-11-04 12:18:40,911 - migrateData - INFO - 28 vos created -2022-11-04 12:19:35,396 - pgConnector - INFO - 449 -2022-11-04 12:19:35,397 - vos - INFO - 449 -2022-11-04 12:19:35,397 - migrateData - INFO - 449 item -2022-11-04 12:19:35,398 - pgConnector - INFO - 450 -2022-11-04 12:19:35,398 - vos - INFO - 450 -2022-11-04 12:19:35,398 - migrateData - INFO - 450 item -2022-11-04 12:19:35,399 - pgConnector - INFO - 451 -2022-11-04 12:19:35,400 - vos - INFO - 451 -2022-11-04 12:19:35,400 - migrateData - INFO - 451 item -2022-11-04 12:19:35,401 - pgConnector - INFO - 452 -2022-11-04 12:19:35,402 - vos - INFO - 452 -2022-11-04 12:19:35,402 - migrateData - INFO - 452 item -2022-11-04 12:19:35,407 - pgConnector - INFO - 453 -2022-11-04 12:19:35,407 - vos - INFO - 453 -2022-11-04 12:19:35,407 - migrateData - INFO - 453 item -2022-11-04 12:19:35,408 - pgConnector - INFO - 454 -2022-11-04 12:19:35,409 - vos - INFO - 454 -2022-11-04 12:19:35,409 - migrateData - INFO - 454 item -2022-11-04 12:19:35,410 - pgConnector - INFO - 455 -2022-11-04 12:19:35,410 - vos - INFO - 455 -2022-11-04 12:19:35,410 - migrateData - INFO - 455 item -2022-11-04 12:19:35,412 - pgConnector - INFO - 456 -2022-11-04 12:19:35,412 - vos - INFO - 456 -2022-11-04 12:19:35,412 - migrateData - INFO - 456 item -2022-11-04 12:19:35,413 - pgConnector - INFO - 457 -2022-11-04 12:19:35,413 - vos - INFO - 457 -2022-11-04 12:19:35,413 - migrateData - INFO - 457 item -2022-11-04 12:19:35,414 - pgConnector - INFO - 458 -2022-11-04 12:19:35,414 - vos - INFO - 458 -2022-11-04 12:19:35,414 - migrateData - INFO - 458 item -2022-11-04 12:19:35,415 - pgConnector - INFO - 459 -2022-11-04 12:19:35,415 - vos - INFO - 459 -2022-11-04 12:19:35,415 - migrateData - INFO - 459 item -2022-11-04 12:19:35,416 - pgConnector - INFO - 460 -2022-11-04 12:19:35,416 - vos - INFO - 460 -2022-11-04 12:19:35,416 - migrateData - INFO - 460 item -2022-11-04 12:19:35,417 - pgConnector - INFO - 461 -2022-11-04 12:19:35,417 - vos - INFO - 461 -2022-11-04 12:19:35,417 - migrateData - INFO - 461 item -2022-11-04 12:19:35,418 - pgConnector - INFO - 462 -2022-11-04 12:19:35,418 - vos - INFO - 462 -2022-11-04 12:19:35,418 - migrateData - INFO - 462 item -2022-11-04 12:19:35,419 - pgConnector - INFO - 463 -2022-11-04 12:19:35,419 - vos - INFO - 463 -2022-11-04 12:19:35,419 - migrateData - INFO - 463 item -2022-11-04 12:19:35,420 - pgConnector - INFO - 464 -2022-11-04 12:19:35,420 - vos - INFO - 464 -2022-11-04 12:19:35,420 - migrateData - INFO - 464 item -2022-11-04 12:19:35,422 - pgConnector - INFO - 465 -2022-11-04 12:19:35,423 - vos - INFO - 465 -2022-11-04 12:19:35,423 - migrateData - INFO - 465 item -2022-11-04 12:19:35,424 - pgConnector - INFO - 466 -2022-11-04 12:19:35,424 - vos - INFO - 466 -2022-11-04 12:19:35,424 - migrateData - INFO - 466 item -2022-11-04 12:19:35,425 - pgConnector - INFO - 467 -2022-11-04 12:19:35,426 - vos - INFO - 467 -2022-11-04 12:19:35,427 - migrateData - INFO - 467 item -2022-11-04 12:19:35,428 - pgConnector - INFO - 468 -2022-11-04 12:19:35,428 - vos - INFO - 468 -2022-11-04 12:19:35,428 - migrateData - INFO - 468 item -2022-11-04 12:19:35,429 - pgConnector - INFO - 469 -2022-11-04 12:19:35,429 - vos - INFO - 469 -2022-11-04 12:19:35,429 - migrateData - INFO - 469 item -2022-11-04 12:19:35,430 - pgConnector - INFO - 470 -2022-11-04 12:19:35,430 - vos - INFO - 470 -2022-11-04 12:19:35,430 - migrateData - INFO - 470 item -2022-11-04 12:19:35,431 - pgConnector - INFO - 471 -2022-11-04 12:19:35,431 - vos - INFO - 471 -2022-11-04 12:19:35,432 - migrateData - INFO - 471 item -2022-11-04 12:19:35,433 - pgConnector - INFO - 472 -2022-11-04 12:19:35,433 - vos - INFO - 472 -2022-11-04 12:19:35,433 - migrateData - INFO - 472 item -2022-11-04 12:19:35,435 - pgConnector - INFO - 473 -2022-11-04 12:19:35,435 - vos - INFO - 473 -2022-11-04 12:19:35,435 - migrateData - INFO - 473 item -2022-11-04 12:19:35,436 - pgConnector - INFO - 474 -2022-11-04 12:19:35,436 - vos - INFO - 474 -2022-11-04 12:19:35,436 - migrateData - INFO - 474 item -2022-11-04 12:19:35,439 - pgConnector - INFO - 475 -2022-11-04 12:19:35,439 - vos - INFO - 475 -2022-11-04 12:19:35,439 - migrateData - INFO - 475 item -2022-11-04 12:19:35,440 - pgConnector - INFO - 476 -2022-11-04 12:19:35,440 - vos - INFO - 476 -2022-11-04 12:19:35,440 - migrateData - INFO - 476 item -2022-11-04 12:19:35,440 - migrateData - INFO - No new data found -2022-11-04 12:20:59,151 - pgConnector - INFO - 477 -2022-11-04 12:20:59,152 - vos - INFO - 477 -2022-11-04 12:20:59,152 - migrateData - INFO - 477 item -2022-11-04 12:20:59,153 - pgConnector - INFO - 478 -2022-11-04 12:20:59,153 - vos - INFO - 478 -2022-11-04 12:20:59,153 - migrateData - INFO - 478 item -2022-11-04 12:20:59,154 - pgConnector - INFO - 479 -2022-11-04 12:20:59,154 - vos - INFO - 479 -2022-11-04 12:20:59,155 - migrateData - INFO - 479 item -2022-11-04 12:20:59,156 - pgConnector - INFO - 480 -2022-11-04 12:20:59,156 - vos - INFO - 480 -2022-11-04 12:20:59,156 - migrateData - INFO - 480 item -2022-11-04 12:20:59,157 - pgConnector - INFO - 481 -2022-11-04 12:20:59,157 - vos - INFO - 481 -2022-11-04 12:20:59,157 - migrateData - INFO - 481 item -2022-11-04 12:20:59,159 - pgConnector - INFO - 482 -2022-11-04 12:20:59,159 - vos - INFO - 482 -2022-11-04 12:20:59,159 - migrateData - INFO - 482 item -2022-11-04 12:20:59,160 - pgConnector - INFO - 483 -2022-11-04 12:20:59,160 - vos - INFO - 483 -2022-11-04 12:20:59,160 - migrateData - INFO - 483 item -2022-11-04 12:20:59,166 - pgConnector - INFO - 484 -2022-11-04 12:20:59,167 - vos - INFO - 484 -2022-11-04 12:20:59,167 - migrateData - INFO - 484 item -2022-11-04 12:20:59,171 - pgConnector - INFO - 485 -2022-11-04 12:20:59,171 - vos - INFO - 485 -2022-11-04 12:20:59,171 - migrateData - INFO - 485 item -2022-11-04 12:20:59,172 - pgConnector - INFO - 486 -2022-11-04 12:20:59,172 - vos - INFO - 486 -2022-11-04 12:20:59,172 - migrateData - INFO - 486 item -2022-11-04 12:20:59,173 - pgConnector - INFO - 487 -2022-11-04 12:20:59,173 - vos - INFO - 487 -2022-11-04 12:20:59,173 - migrateData - INFO - 487 item -2022-11-04 12:20:59,175 - pgConnector - INFO - 488 -2022-11-04 12:20:59,175 - vos - INFO - 488 -2022-11-04 12:20:59,175 - migrateData - INFO - 488 item -2022-11-04 12:20:59,176 - pgConnector - INFO - 489 -2022-11-04 12:20:59,176 - vos - INFO - 489 -2022-11-04 12:20:59,176 - migrateData - INFO - 489 item -2022-11-04 12:20:59,177 - pgConnector - INFO - 490 -2022-11-04 12:20:59,177 - vos - INFO - 490 -2022-11-04 12:20:59,177 - migrateData - INFO - 490 item -2022-11-04 12:20:59,178 - pgConnector - INFO - 491 -2022-11-04 12:20:59,178 - vos - INFO - 491 -2022-11-04 12:20:59,178 - migrateData - INFO - 491 item -2022-11-04 12:20:59,181 - pgConnector - INFO - 492 -2022-11-04 12:20:59,181 - vos - INFO - 492 -2022-11-04 12:20:59,181 - migrateData - INFO - 492 item -2022-11-04 12:20:59,183 - pgConnector - INFO - 493 -2022-11-04 12:20:59,183 - vos - INFO - 493 -2022-11-04 12:20:59,183 - migrateData - INFO - 493 item -2022-11-04 12:20:59,184 - pgConnector - INFO - 494 -2022-11-04 12:20:59,185 - vos - INFO - 494 -2022-11-04 12:20:59,185 - migrateData - INFO - 494 item -2022-11-04 12:20:59,186 - pgConnector - INFO - 495 -2022-11-04 12:20:59,186 - vos - INFO - 495 -2022-11-04 12:20:59,186 - migrateData - INFO - 495 item -2022-11-04 12:20:59,187 - pgConnector - INFO - 496 -2022-11-04 12:20:59,187 - vos - INFO - 496 -2022-11-04 12:20:59,188 - migrateData - INFO - 496 item -2022-11-04 12:20:59,189 - pgConnector - INFO - 497 -2022-11-04 12:20:59,189 - vos - INFO - 497 -2022-11-04 12:20:59,189 - migrateData - INFO - 497 item -2022-11-04 12:20:59,190 - pgConnector - INFO - 498 -2022-11-04 12:20:59,190 - vos - INFO - 498 -2022-11-04 12:20:59,190 - migrateData - INFO - 498 item -2022-11-04 12:20:59,191 - pgConnector - INFO - 499 -2022-11-04 12:20:59,191 - vos - INFO - 499 -2022-11-04 12:20:59,191 - migrateData - INFO - 499 item -2022-11-04 12:20:59,192 - pgConnector - INFO - 500 -2022-11-04 12:20:59,192 - vos - INFO - 500 -2022-11-04 12:20:59,192 - migrateData - INFO - 500 item -2022-11-04 12:20:59,192 - pgConnector - INFO - 501 -2022-11-04 12:20:59,193 - vos - INFO - 501 -2022-11-04 12:20:59,193 - migrateData - INFO - 501 item -2022-11-04 12:20:59,195 - pgConnector - INFO - 502 -2022-11-04 12:20:59,195 - vos - INFO - 502 -2022-11-04 12:20:59,195 - migrateData - INFO - 502 item -2022-11-04 12:20:59,196 - pgConnector - INFO - 503 -2022-11-04 12:20:59,196 - vos - INFO - 503 -2022-11-04 12:20:59,196 - migrateData - INFO - 503 item -2022-11-04 12:20:59,197 - pgConnector - INFO - 504 -2022-11-04 12:20:59,197 - vos - INFO - 504 -2022-11-04 12:20:59,198 - migrateData - INFO - 504 item -2022-11-04 12:20:59,198 - migrateData - INFO - No new data found -2022-11-04 12:23:33,851 - pgConnector - INFO - 505 -2022-11-04 12:23:33,851 - vos - INFO - 505 -2022-11-04 12:23:33,851 - migrateData - INFO - 505 item -2022-11-04 12:23:33,853 - pgConnector - INFO - 506 -2022-11-04 12:23:33,853 - vos - INFO - 506 -2022-11-04 12:23:33,853 - migrateData - INFO - 506 item -2022-11-04 12:23:33,854 - pgConnector - INFO - 507 -2022-11-04 12:23:33,855 - vos - INFO - 507 -2022-11-04 12:23:33,855 - migrateData - INFO - 507 item -2022-11-04 12:23:33,856 - pgConnector - INFO - 508 -2022-11-04 12:23:33,856 - vos - INFO - 508 -2022-11-04 12:23:33,856 - migrateData - INFO - 508 item -2022-11-04 12:23:33,859 - pgConnector - INFO - 509 -2022-11-04 12:23:33,859 - vos - INFO - 509 -2022-11-04 12:23:33,859 - migrateData - INFO - 509 item -2022-11-04 12:23:33,861 - pgConnector - INFO - 510 -2022-11-04 12:23:33,861 - vos - INFO - 510 -2022-11-04 12:23:33,861 - migrateData - INFO - 510 item -2022-11-04 12:23:33,862 - pgConnector - INFO - 511 -2022-11-04 12:23:33,862 - vos - INFO - 511 -2022-11-04 12:23:33,862 - migrateData - INFO - 511 item -2022-11-04 12:23:33,863 - pgConnector - INFO - 512 -2022-11-04 12:23:33,863 - vos - INFO - 512 -2022-11-04 12:23:33,863 - migrateData - INFO - 512 item -2022-11-04 12:23:33,864 - pgConnector - INFO - 513 -2022-11-04 12:23:33,864 - vos - INFO - 513 -2022-11-04 12:23:33,864 - migrateData - INFO - 513 item -2022-11-04 12:23:33,865 - pgConnector - INFO - 514 -2022-11-04 12:23:33,865 - vos - INFO - 514 -2022-11-04 12:23:33,865 - migrateData - INFO - 514 item -2022-11-04 12:23:33,866 - pgConnector - INFO - 515 -2022-11-04 12:23:33,866 - vos - INFO - 515 -2022-11-04 12:23:33,866 - migrateData - INFO - 515 item -2022-11-04 12:23:33,867 - pgConnector - INFO - 516 -2022-11-04 12:23:33,867 - vos - INFO - 516 -2022-11-04 12:23:33,867 - migrateData - INFO - 516 item -2022-11-04 12:23:33,868 - pgConnector - INFO - 517 -2022-11-04 12:23:33,868 - vos - INFO - 517 -2022-11-04 12:23:33,868 - migrateData - INFO - 517 item -2022-11-04 12:23:33,869 - pgConnector - INFO - 518 -2022-11-04 12:23:33,869 - vos - INFO - 518 -2022-11-04 12:23:33,869 - migrateData - INFO - 518 item -2022-11-04 12:23:33,870 - pgConnector - INFO - 519 -2022-11-04 12:23:33,870 - vos - INFO - 519 -2022-11-04 12:23:33,870 - migrateData - INFO - 519 item -2022-11-04 12:23:33,871 - pgConnector - INFO - 520 -2022-11-04 12:23:33,871 - vos - INFO - 520 -2022-11-04 12:23:33,871 - migrateData - INFO - 520 item -2022-11-04 12:23:33,872 - pgConnector - INFO - 521 -2022-11-04 12:23:33,872 - vos - INFO - 521 -2022-11-04 12:23:33,872 - migrateData - INFO - 521 item -2022-11-04 12:23:33,873 - pgConnector - INFO - 522 -2022-11-04 12:23:33,873 - vos - INFO - 522 -2022-11-04 12:23:33,873 - migrateData - INFO - 522 item -2022-11-04 12:23:33,874 - pgConnector - INFO - 523 -2022-11-04 12:23:33,874 - vos - INFO - 523 -2022-11-04 12:23:33,874 - migrateData - INFO - 523 item -2022-11-04 12:23:33,876 - pgConnector - INFO - 524 -2022-11-04 12:23:33,876 - vos - INFO - 524 -2022-11-04 12:23:33,876 - migrateData - INFO - 524 item -2022-11-04 12:23:33,877 - pgConnector - INFO - 525 -2022-11-04 12:23:33,877 - vos - INFO - 525 -2022-11-04 12:23:33,877 - migrateData - INFO - 525 item -2022-11-04 12:23:33,878 - pgConnector - INFO - 526 -2022-11-04 12:23:33,878 - vos - INFO - 526 -2022-11-04 12:23:33,878 - migrateData - INFO - 526 item -2022-11-04 12:23:33,879 - pgConnector - INFO - 527 -2022-11-04 12:23:33,879 - vos - INFO - 527 -2022-11-04 12:23:33,879 - migrateData - INFO - 527 item -2022-11-04 12:23:33,880 - pgConnector - INFO - 528 -2022-11-04 12:23:33,880 - vos - INFO - 528 -2022-11-04 12:23:33,881 - migrateData - INFO - 528 item -2022-11-04 12:23:33,881 - pgConnector - INFO - 529 -2022-11-04 12:23:33,881 - vos - INFO - 529 -2022-11-04 12:23:33,882 - migrateData - INFO - 529 item -2022-11-04 12:23:33,883 - pgConnector - INFO - 530 -2022-11-04 12:23:33,883 - vos - INFO - 530 -2022-11-04 12:23:33,883 - migrateData - INFO - 530 item -2022-11-04 12:23:33,884 - pgConnector - INFO - 531 -2022-11-04 12:23:33,885 - vos - INFO - 531 -2022-11-04 12:23:33,885 - migrateData - INFO - 531 item -2022-11-04 12:23:33,886 - pgConnector - INFO - 532 -2022-11-04 12:23:33,886 - vos - INFO - 532 -2022-11-04 12:23:33,886 - migrateData - INFO - 532 item -2022-11-04 12:23:33,886 - migrateData - INFO - No new data found -2022-11-04 12:24:41,390 - pgConnector - INFO - 533 -2022-11-04 12:24:41,390 - vos - INFO - 533 -2022-11-04 12:24:41,390 - migrateData - INFO - 533 item -2022-11-04 12:24:41,402 - pgConnector - INFO - 534 -2022-11-04 12:24:41,402 - vos - INFO - 534 -2022-11-04 12:24:41,402 - migrateData - INFO - 534 item -2022-11-04 12:24:41,412 - pgConnector - INFO - 535 -2022-11-04 12:24:41,412 - vos - INFO - 535 -2022-11-04 12:24:41,412 - migrateData - INFO - 535 item -2022-11-04 12:24:41,413 - pgConnector - INFO - 536 -2022-11-04 12:24:41,414 - vos - INFO - 536 -2022-11-04 12:24:41,414 - migrateData - INFO - 536 item -2022-11-04 12:24:41,418 - pgConnector - INFO - 537 -2022-11-04 12:24:41,419 - vos - INFO - 537 -2022-11-04 12:24:41,419 - migrateData - INFO - 537 item -2022-11-04 12:24:41,420 - pgConnector - INFO - 538 -2022-11-04 12:24:41,420 - vos - INFO - 538 -2022-11-04 12:24:41,420 - migrateData - INFO - 538 item -2022-11-04 12:24:41,422 - pgConnector - INFO - 539 -2022-11-04 12:24:41,422 - vos - INFO - 539 -2022-11-04 12:24:41,422 - migrateData - INFO - 539 item -2022-11-04 12:24:41,423 - pgConnector - INFO - 540 -2022-11-04 12:24:41,424 - vos - INFO - 540 -2022-11-04 12:24:41,424 - migrateData - INFO - 540 item -2022-11-04 12:24:41,425 - pgConnector - INFO - 541 -2022-11-04 12:24:41,425 - vos - INFO - 541 -2022-11-04 12:24:41,425 - migrateData - INFO - 541 item -2022-11-04 12:24:41,426 - pgConnector - INFO - 542 -2022-11-04 12:24:41,426 - vos - INFO - 542 -2022-11-04 12:24:41,426 - migrateData - INFO - 542 item -2022-11-04 12:24:41,427 - pgConnector - INFO - 543 -2022-11-04 12:24:41,427 - vos - INFO - 543 -2022-11-04 12:24:41,427 - migrateData - INFO - 543 item -2022-11-04 12:24:41,428 - pgConnector - INFO - 544 -2022-11-04 12:24:41,428 - vos - INFO - 544 -2022-11-04 12:24:41,428 - migrateData - INFO - 544 item -2022-11-04 12:24:41,429 - pgConnector - INFO - 545 -2022-11-04 12:24:41,429 - vos - INFO - 545 -2022-11-04 12:24:41,429 - migrateData - INFO - 545 item -2022-11-04 12:24:41,430 - pgConnector - INFO - 546 -2022-11-04 12:24:41,430 - vos - INFO - 546 -2022-11-04 12:24:41,430 - migrateData - INFO - 546 item -2022-11-04 12:24:41,431 - pgConnector - INFO - 547 -2022-11-04 12:24:41,431 - vos - INFO - 547 -2022-11-04 12:24:41,431 - migrateData - INFO - 547 item -2022-11-04 12:24:41,434 - pgConnector - INFO - 548 -2022-11-04 12:24:41,435 - vos - INFO - 548 -2022-11-04 12:24:41,435 - migrateData - INFO - 548 item -2022-11-04 12:24:41,436 - pgConnector - INFO - 549 -2022-11-04 12:24:41,436 - vos - INFO - 549 -2022-11-04 12:24:41,436 - migrateData - INFO - 549 item -2022-11-04 12:24:41,438 - pgConnector - INFO - 550 -2022-11-04 12:24:41,438 - vos - INFO - 550 -2022-11-04 12:24:41,438 - migrateData - INFO - 550 item -2022-11-04 12:24:41,439 - pgConnector - INFO - 551 -2022-11-04 12:24:41,439 - vos - INFO - 551 -2022-11-04 12:24:41,440 - migrateData - INFO - 551 item -2022-11-04 12:24:41,441 - pgConnector - INFO - 552 -2022-11-04 12:24:41,441 - vos - INFO - 552 -2022-11-04 12:24:41,441 - migrateData - INFO - 552 item -2022-11-04 12:24:41,442 - pgConnector - INFO - 553 -2022-11-04 12:24:41,442 - vos - INFO - 553 -2022-11-04 12:24:41,442 - migrateData - INFO - 553 item -2022-11-04 12:24:41,443 - pgConnector - INFO - 554 -2022-11-04 12:24:41,443 - vos - INFO - 554 -2022-11-04 12:24:41,443 - migrateData - INFO - 554 item -2022-11-04 12:24:41,444 - pgConnector - INFO - 555 -2022-11-04 12:24:41,445 - vos - INFO - 555 -2022-11-04 12:24:41,445 - migrateData - INFO - 555 item -2022-11-04 12:24:41,446 - pgConnector - INFO - 556 -2022-11-04 12:24:41,446 - vos - INFO - 556 -2022-11-04 12:24:41,446 - migrateData - INFO - 556 item -2022-11-04 12:24:41,447 - pgConnector - INFO - 557 -2022-11-04 12:24:41,447 - vos - INFO - 557 -2022-11-04 12:24:41,447 - migrateData - INFO - 557 item -2022-11-04 12:24:41,448 - pgConnector - INFO - 558 -2022-11-04 12:24:41,448 - vos - INFO - 558 -2022-11-04 12:24:41,448 - migrateData - INFO - 558 item -2022-11-04 12:24:41,449 - pgConnector - INFO - 559 -2022-11-04 12:24:41,450 - vos - INFO - 559 -2022-11-04 12:24:41,450 - migrateData - INFO - 559 item -2022-11-04 12:24:41,451 - pgConnector - INFO - 560 -2022-11-04 12:24:41,451 - vos - INFO - 560 -2022-11-04 12:24:41,451 - migrateData - INFO - 560 item -2022-11-04 12:24:41,451 - migrateData - INFO - No new data found -2022-11-04 12:26:12,449 - pgConnector - INFO - 561 -2022-11-04 12:26:12,449 - vos - INFO - 561 -2022-11-04 12:26:12,450 - migrateData - INFO - 561 item atataatatat -2022-11-04 12:26:12,451 - pgConnector - INFO - 562 -2022-11-04 12:26:12,451 - vos - INFO - 562 -2022-11-04 12:26:12,451 - migrateData - INFO - 562 item atataatatat -2022-11-04 12:26:12,452 - pgConnector - INFO - 563 -2022-11-04 12:26:12,452 - vos - INFO - 563 -2022-11-04 12:26:12,452 - migrateData - INFO - 563 item atataatatat -2022-11-04 12:26:12,453 - pgConnector - INFO - 564 -2022-11-04 12:26:12,453 - vos - INFO - 564 -2022-11-04 12:26:12,453 - migrateData - INFO - 564 item atataatatat -2022-11-04 12:26:12,455 - pgConnector - INFO - 565 -2022-11-04 12:26:12,455 - vos - INFO - 565 -2022-11-04 12:26:12,455 - migrateData - INFO - 565 item atataatatat -2022-11-04 12:26:12,456 - pgConnector - INFO - 566 -2022-11-04 12:26:12,456 - vos - INFO - 566 -2022-11-04 12:26:12,456 - migrateData - INFO - 566 item atataatatat -2022-11-04 12:26:12,458 - pgConnector - INFO - 567 -2022-11-04 12:26:12,458 - vos - INFO - 567 -2022-11-04 12:26:12,458 - migrateData - INFO - 567 item atataatatat -2022-11-04 12:26:12,459 - pgConnector - INFO - 568 -2022-11-04 12:26:12,459 - vos - INFO - 568 -2022-11-04 12:26:12,459 - migrateData - INFO - 568 item atataatatat -2022-11-04 12:26:12,460 - pgConnector - INFO - 569 -2022-11-04 12:26:12,460 - vos - INFO - 569 -2022-11-04 12:26:12,460 - migrateData - INFO - 569 item atataatatat -2022-11-04 12:26:12,461 - pgConnector - INFO - 570 -2022-11-04 12:26:12,462 - vos - INFO - 570 -2022-11-04 12:26:12,462 - migrateData - INFO - 570 item atataatatat -2022-11-04 12:26:12,463 - pgConnector - INFO - 571 -2022-11-04 12:26:12,463 - vos - INFO - 571 -2022-11-04 12:26:12,463 - migrateData - INFO - 571 item atataatatat -2022-11-04 12:26:12,464 - pgConnector - INFO - 572 -2022-11-04 12:26:12,464 - vos - INFO - 572 -2022-11-04 12:26:12,464 - migrateData - INFO - 572 item atataatatat -2022-11-04 12:26:12,465 - pgConnector - INFO - 573 -2022-11-04 12:26:12,465 - vos - INFO - 573 -2022-11-04 12:26:12,465 - migrateData - INFO - 573 item atataatatat -2022-11-04 12:26:12,466 - pgConnector - INFO - 574 -2022-11-04 12:26:12,466 - vos - INFO - 574 -2022-11-04 12:26:12,466 - migrateData - INFO - 574 item atataatatat -2022-11-04 12:26:12,467 - pgConnector - INFO - 575 -2022-11-04 12:26:12,467 - vos - INFO - 575 -2022-11-04 12:26:12,467 - migrateData - INFO - 575 item atataatatat -2022-11-04 12:26:12,468 - pgConnector - INFO - 576 -2022-11-04 12:26:12,468 - vos - INFO - 576 -2022-11-04 12:26:12,468 - migrateData - INFO - 576 item atataatatat -2022-11-04 12:26:12,469 - pgConnector - INFO - 577 -2022-11-04 12:26:12,469 - vos - INFO - 577 -2022-11-04 12:26:12,469 - migrateData - INFO - 577 item atataatatat -2022-11-04 12:26:12,470 - pgConnector - INFO - 578 -2022-11-04 12:26:12,470 - vos - INFO - 578 -2022-11-04 12:26:12,470 - migrateData - INFO - 578 item atataatatat -2022-11-04 12:26:12,472 - pgConnector - INFO - 579 -2022-11-04 12:26:12,472 - vos - INFO - 579 -2022-11-04 12:26:12,472 - migrateData - INFO - 579 item atataatatat -2022-11-04 12:26:12,473 - pgConnector - INFO - 580 -2022-11-04 12:26:12,473 - vos - INFO - 580 -2022-11-04 12:26:12,473 - migrateData - INFO - 580 item atataatatat -2022-11-04 12:26:12,474 - pgConnector - INFO - 581 -2022-11-04 12:26:12,474 - vos - INFO - 581 -2022-11-04 12:26:12,474 - migrateData - INFO - 581 item atataatatat -2022-11-04 12:26:12,475 - pgConnector - INFO - 582 -2022-11-04 12:26:12,475 - vos - INFO - 582 -2022-11-04 12:26:12,475 - migrateData - INFO - 582 item atataatatat -2022-11-04 12:26:12,476 - pgConnector - INFO - 583 -2022-11-04 12:26:12,476 - vos - INFO - 583 -2022-11-04 12:26:12,476 - migrateData - INFO - 583 item atataatatat -2022-11-04 12:26:12,477 - pgConnector - INFO - 584 -2022-11-04 12:26:12,477 - vos - INFO - 584 -2022-11-04 12:26:12,477 - migrateData - INFO - 584 item atataatatat -2022-11-04 12:26:12,478 - pgConnector - INFO - 585 -2022-11-04 12:26:12,478 - vos - INFO - 585 -2022-11-04 12:26:12,478 - migrateData - INFO - 585 item atataatatat -2022-11-04 12:26:12,479 - pgConnector - INFO - 586 -2022-11-04 12:26:12,479 - vos - INFO - 586 -2022-11-04 12:26:12,479 - migrateData - INFO - 586 item atataatatat -2022-11-04 12:26:12,480 - pgConnector - INFO - 587 -2022-11-04 12:26:12,480 - vos - INFO - 587 -2022-11-04 12:26:12,480 - migrateData - INFO - 587 item atataatatat -2022-11-04 12:26:12,481 - pgConnector - INFO - 588 -2022-11-04 12:26:12,482 - vos - INFO - 588 -2022-11-04 12:26:12,482 - migrateData - INFO - 588 item atataatatat -2022-11-04 12:26:12,482 - migrateData - INFO - No new data found -2022-11-04 12:26:50,477 - pgConnector - INFO - 589 -2022-11-04 12:26:50,478 - vos - INFO - 589 -2022-11-04 12:26:50,479 - pgConnector - INFO - 590 -2022-11-04 12:26:50,479 - vos - INFO - 590 -2022-11-04 12:26:50,480 - pgConnector - INFO - 591 -2022-11-04 12:26:50,481 - vos - INFO - 591 -2022-11-04 12:26:50,482 - pgConnector - INFO - 592 -2022-11-04 12:26:50,482 - vos - INFO - 592 -2022-11-04 12:26:50,483 - pgConnector - INFO - 593 -2022-11-04 12:26:50,483 - vos - INFO - 593 -2022-11-04 12:26:50,484 - pgConnector - INFO - 594 -2022-11-04 12:26:50,484 - vos - INFO - 594 -2022-11-04 12:26:50,485 - pgConnector - INFO - 595 -2022-11-04 12:26:50,485 - vos - INFO - 595 -2022-11-04 12:26:50,486 - pgConnector - INFO - 596 -2022-11-04 12:26:50,486 - vos - INFO - 596 -2022-11-04 12:26:50,488 - pgConnector - INFO - 597 -2022-11-04 12:26:50,488 - vos - INFO - 597 -2022-11-04 12:26:50,489 - pgConnector - INFO - 598 -2022-11-04 12:26:50,489 - vos - INFO - 598 -2022-11-04 12:26:50,490 - pgConnector - INFO - 599 -2022-11-04 12:26:50,490 - vos - INFO - 599 -2022-11-04 12:26:50,491 - pgConnector - INFO - 600 -2022-11-04 12:26:50,491 - vos - INFO - 600 -2022-11-04 12:26:50,492 - pgConnector - INFO - 601 -2022-11-04 12:26:50,492 - vos - INFO - 601 -2022-11-04 12:26:50,493 - pgConnector - INFO - 602 -2022-11-04 12:26:50,493 - vos - INFO - 602 -2022-11-04 12:26:50,494 - pgConnector - INFO - 603 -2022-11-04 12:26:50,494 - vos - INFO - 603 -2022-11-04 12:26:50,495 - pgConnector - INFO - 604 -2022-11-04 12:26:50,495 - vos - INFO - 604 -2022-11-04 12:26:50,497 - pgConnector - INFO - 605 -2022-11-04 12:26:50,497 - vos - INFO - 605 -2022-11-04 12:26:50,499 - pgConnector - INFO - 606 -2022-11-04 12:26:50,499 - vos - INFO - 606 -2022-11-04 12:26:50,500 - pgConnector - INFO - 607 -2022-11-04 12:26:50,500 - vos - INFO - 607 -2022-11-04 12:26:50,501 - pgConnector - INFO - 608 -2022-11-04 12:26:50,501 - vos - INFO - 608 -2022-11-04 12:26:50,502 - pgConnector - INFO - 609 -2022-11-04 12:26:50,502 - vos - INFO - 609 -2022-11-04 12:26:50,503 - pgConnector - INFO - 610 -2022-11-04 12:26:50,503 - vos - INFO - 610 -2022-11-04 12:26:50,504 - pgConnector - INFO - 611 -2022-11-04 12:26:50,504 - vos - INFO - 611 -2022-11-04 12:26:50,505 - pgConnector - INFO - 612 -2022-11-04 12:26:50,505 - vos - INFO - 612 -2022-11-04 12:26:50,506 - pgConnector - INFO - 613 -2022-11-04 12:26:50,506 - vos - INFO - 613 -2022-11-04 12:26:50,507 - pgConnector - INFO - 614 -2022-11-04 12:26:50,507 - vos - INFO - 614 -2022-11-04 12:26:50,508 - pgConnector - INFO - 615 -2022-11-04 12:26:50,508 - vos - INFO - 615 -2022-11-04 12:26:50,509 - pgConnector - INFO - 616 -2022-11-04 12:26:50,509 - vos - INFO - 616 -2022-11-04 12:26:50,509 - migrateData - INFO - No new data found -2022-11-04 12:27:05,781 - pgConnector - INFO - 617 -2022-11-04 12:27:05,781 - vos - INFO - 617 -2022-11-04 12:27:05,782 - pgConnector - INFO - 618 -2022-11-04 12:27:05,782 - vos - INFO - 618 -2022-11-04 12:27:05,783 - pgConnector - INFO - 619 -2022-11-04 12:27:05,783 - vos - INFO - 619 -2022-11-04 12:27:05,793 - pgConnector - INFO - 620 -2022-11-04 12:27:05,793 - vos - INFO - 620 -2022-11-04 12:27:05,795 - pgConnector - INFO - 621 -2022-11-04 12:27:05,795 - vos - INFO - 621 -2022-11-04 12:27:05,796 - pgConnector - INFO - 622 -2022-11-04 12:27:05,796 - vos - INFO - 622 -2022-11-04 12:27:05,798 - pgConnector - INFO - 623 -2022-11-04 12:27:05,798 - vos - INFO - 623 -2022-11-04 12:27:05,798 - pgConnector - INFO - 624 -2022-11-04 12:27:05,799 - vos - INFO - 624 -2022-11-04 12:27:05,800 - pgConnector - INFO - 625 -2022-11-04 12:27:05,800 - vos - INFO - 625 -2022-11-04 12:27:05,801 - pgConnector - INFO - 626 -2022-11-04 12:27:05,801 - vos - INFO - 626 -2022-11-04 12:27:05,802 - pgConnector - INFO - 627 -2022-11-04 12:27:05,802 - vos - INFO - 627 -2022-11-04 12:27:05,803 - pgConnector - INFO - 628 -2022-11-04 12:27:05,803 - vos - INFO - 628 -2022-11-04 12:27:05,804 - pgConnector - INFO - 629 -2022-11-04 12:27:05,805 - vos - INFO - 629 -2022-11-04 12:27:05,806 - pgConnector - INFO - 630 -2022-11-04 12:27:05,806 - vos - INFO - 630 -2022-11-04 12:27:05,807 - pgConnector - INFO - 631 -2022-11-04 12:27:05,807 - vos - INFO - 631 -2022-11-04 12:27:05,808 - pgConnector - INFO - 632 -2022-11-04 12:27:05,808 - vos - INFO - 632 -2022-11-04 12:27:05,809 - pgConnector - INFO - 633 -2022-11-04 12:27:05,809 - vos - INFO - 633 -2022-11-04 12:27:05,810 - pgConnector - INFO - 634 -2022-11-04 12:27:05,810 - vos - INFO - 634 -2022-11-04 12:27:05,811 - pgConnector - INFO - 635 -2022-11-04 12:27:05,811 - vos - INFO - 635 -2022-11-04 12:27:05,812 - pgConnector - INFO - 636 -2022-11-04 12:27:05,812 - vos - INFO - 636 -2022-11-04 12:27:05,813 - pgConnector - INFO - 637 -2022-11-04 12:27:05,813 - vos - INFO - 637 -2022-11-04 12:27:05,814 - pgConnector - INFO - 638 -2022-11-04 12:27:05,814 - vos - INFO - 638 -2022-11-04 12:27:05,815 - pgConnector - INFO - 639 -2022-11-04 12:27:05,815 - vos - INFO - 639 -2022-11-04 12:27:05,817 - pgConnector - INFO - 640 -2022-11-04 12:27:05,817 - vos - INFO - 640 -2022-11-04 12:27:05,818 - pgConnector - INFO - 641 -2022-11-04 12:27:05,818 - vos - INFO - 641 -2022-11-04 12:27:05,819 - pgConnector - INFO - 642 -2022-11-04 12:27:05,819 - vos - INFO - 642 -2022-11-04 12:27:05,820 - pgConnector - INFO - 643 -2022-11-04 12:27:05,820 - vos - INFO - 643 -2022-11-04 12:27:05,823 - pgConnector - INFO - 644 -2022-11-04 12:27:05,823 - vos - INFO - 644 -2022-11-04 12:27:05,823 - migrateData - INFO - No new data found -2022-11-04 12:29:30,116 - pgConnector - INFO - 645 -2022-11-04 12:29:30,116 - vos - INFO - 645 -2022-11-04 12:29:30,116 - migrateData - INFO - 645 item atataatatat -2022-11-04 12:29:30,116 - vosInfo - INFO - 645 testetste -2022-11-04 12:29:30,118 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,119 - pgConnector - INFO - 646 -2022-11-04 12:29:30,119 - vos - INFO - 646 -2022-11-04 12:29:30,119 - migrateData - INFO - 646 item atataatatat -2022-11-04 12:29:30,119 - vosInfo - INFO - 646 testetste -2022-11-04 12:29:30,121 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,122 - pgConnector - INFO - 647 -2022-11-04 12:29:30,122 - vos - INFO - 647 -2022-11-04 12:29:30,122 - migrateData - INFO - 647 item atataatatat -2022-11-04 12:29:30,122 - vosInfo - INFO - 647 testetste -2022-11-04 12:29:30,124 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,125 - pgConnector - INFO - 648 -2022-11-04 12:29:30,125 - vos - INFO - 648 -2022-11-04 12:29:30,126 - migrateData - INFO - 648 item atataatatat -2022-11-04 12:29:30,126 - vosInfo - INFO - 648 testetste -2022-11-04 12:29:30,126 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,127 - pgConnector - INFO - 649 -2022-11-04 12:29:30,127 - vos - INFO - 649 -2022-11-04 12:29:30,128 - migrateData - INFO - 649 item atataatatat -2022-11-04 12:29:30,128 - vosInfo - INFO - 649 testetste -2022-11-04 12:29:30,128 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,129 - pgConnector - INFO - 650 -2022-11-04 12:29:30,129 - vos - INFO - 650 -2022-11-04 12:29:30,129 - migrateData - INFO - 650 item atataatatat -2022-11-04 12:29:30,129 - vosInfo - INFO - 650 testetste -2022-11-04 12:29:30,130 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,131 - pgConnector - INFO - 651 -2022-11-04 12:29:30,131 - vos - INFO - 651 -2022-11-04 12:29:30,131 - migrateData - INFO - 651 item atataatatat -2022-11-04 12:29:30,131 - vosInfo - INFO - 651 testetste -2022-11-04 12:29:30,132 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,133 - pgConnector - INFO - 652 -2022-11-04 12:29:30,133 - vos - INFO - 652 -2022-11-04 12:29:30,133 - migrateData - INFO - 652 item atataatatat -2022-11-04 12:29:30,133 - vosInfo - INFO - 652 testetste -2022-11-04 12:29:30,134 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,135 - pgConnector - INFO - 653 -2022-11-04 12:29:30,135 - vos - INFO - 653 -2022-11-04 12:29:30,135 - migrateData - INFO - 653 item atataatatat -2022-11-04 12:29:30,135 - vosInfo - INFO - 653 testetste -2022-11-04 12:29:30,136 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,137 - pgConnector - INFO - 654 -2022-11-04 12:29:30,137 - vos - INFO - 654 -2022-11-04 12:29:30,137 - migrateData - INFO - 654 item atataatatat -2022-11-04 12:29:30,138 - vosInfo - INFO - 654 testetste -2022-11-04 12:29:30,138 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,139 - pgConnector - INFO - 655 -2022-11-04 12:29:30,139 - vos - INFO - 655 -2022-11-04 12:29:30,139 - migrateData - INFO - 655 item atataatatat -2022-11-04 12:29:30,140 - vosInfo - INFO - 655 testetste -2022-11-04 12:29:30,140 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,142 - pgConnector - INFO - 656 -2022-11-04 12:29:30,142 - vos - INFO - 656 -2022-11-04 12:29:30,142 - migrateData - INFO - 656 item atataatatat -2022-11-04 12:29:30,142 - vosInfo - INFO - 656 testetste -2022-11-04 12:29:30,145 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,146 - pgConnector - INFO - 657 -2022-11-04 12:29:30,147 - vos - INFO - 657 -2022-11-04 12:29:30,147 - migrateData - INFO - 657 item atataatatat -2022-11-04 12:29:30,147 - vosInfo - INFO - 657 testetste -2022-11-04 12:29:30,148 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,149 - pgConnector - INFO - 658 -2022-11-04 12:29:30,149 - vos - INFO - 658 -2022-11-04 12:29:30,149 - migrateData - INFO - 658 item atataatatat -2022-11-04 12:29:30,149 - vosInfo - INFO - 658 testetste -2022-11-04 12:29:30,150 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,151 - pgConnector - INFO - 659 -2022-11-04 12:29:30,151 - vos - INFO - 659 -2022-11-04 12:29:30,151 - migrateData - INFO - 659 item atataatatat -2022-11-04 12:29:30,152 - vosInfo - INFO - 659 testetste -2022-11-04 12:29:30,153 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,154 - pgConnector - INFO - 660 -2022-11-04 12:29:30,154 - vos - INFO - 660 -2022-11-04 12:29:30,154 - migrateData - INFO - 660 item atataatatat -2022-11-04 12:29:30,154 - vosInfo - INFO - 660 testetste -2022-11-04 12:29:30,155 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,157 - pgConnector - INFO - 661 -2022-11-04 12:29:30,157 - vos - INFO - 661 -2022-11-04 12:29:30,157 - migrateData - INFO - 661 item atataatatat -2022-11-04 12:29:30,157 - vosInfo - INFO - 661 testetste -2022-11-04 12:29:30,158 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,159 - pgConnector - INFO - 662 -2022-11-04 12:29:30,159 - vos - INFO - 662 -2022-11-04 12:29:30,159 - migrateData - INFO - 662 item atataatatat -2022-11-04 12:29:30,159 - vosInfo - INFO - 662 testetste -2022-11-04 12:29:30,160 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,161 - pgConnector - INFO - 663 -2022-11-04 12:29:30,161 - vos - INFO - 663 -2022-11-04 12:29:30,161 - migrateData - INFO - 663 item atataatatat -2022-11-04 12:29:30,161 - vosInfo - INFO - 663 testetste -2022-11-04 12:29:30,162 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,163 - pgConnector - INFO - 664 -2022-11-04 12:29:30,163 - vos - INFO - 664 -2022-11-04 12:29:30,163 - migrateData - INFO - 664 item atataatatat -2022-11-04 12:29:30,163 - vosInfo - INFO - 664 testetste -2022-11-04 12:29:30,166 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,167 - pgConnector - INFO - 665 -2022-11-04 12:29:30,167 - vos - INFO - 665 -2022-11-04 12:29:30,167 - migrateData - INFO - 665 item atataatatat -2022-11-04 12:29:30,167 - vosInfo - INFO - 665 testetste -2022-11-04 12:29:30,168 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,169 - pgConnector - INFO - 666 -2022-11-04 12:29:30,170 - vos - INFO - 666 -2022-11-04 12:29:30,170 - migrateData - INFO - 666 item atataatatat -2022-11-04 12:29:30,170 - vosInfo - INFO - 666 testetste -2022-11-04 12:29:30,171 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,172 - pgConnector - INFO - 667 -2022-11-04 12:29:30,172 - vos - INFO - 667 -2022-11-04 12:29:30,172 - migrateData - INFO - 667 item atataatatat -2022-11-04 12:29:30,172 - vosInfo - INFO - 667 testetste -2022-11-04 12:29:30,173 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,174 - pgConnector - INFO - 668 -2022-11-04 12:29:30,174 - vos - INFO - 668 -2022-11-04 12:29:30,174 - migrateData - INFO - 668 item atataatatat -2022-11-04 12:29:30,174 - vosInfo - INFO - 668 testetste -2022-11-04 12:29:30,175 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,176 - pgConnector - INFO - 669 -2022-11-04 12:29:30,176 - vos - INFO - 669 -2022-11-04 12:29:30,176 - migrateData - INFO - 669 item atataatatat -2022-11-04 12:29:30,176 - vosInfo - INFO - 669 testetste -2022-11-04 12:29:30,177 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,179 - pgConnector - INFO - 670 -2022-11-04 12:29:30,179 - vos - INFO - 670 -2022-11-04 12:29:30,179 - migrateData - INFO - 670 item atataatatat -2022-11-04 12:29:30,179 - vosInfo - INFO - 670 testetste -2022-11-04 12:29:30,180 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,181 - pgConnector - INFO - 671 -2022-11-04 12:29:30,181 - vos - INFO - 671 -2022-11-04 12:29:30,181 - migrateData - INFO - 671 item atataatatat -2022-11-04 12:29:30,181 - vosInfo - INFO - 671 testetste -2022-11-04 12:29:30,182 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,182 - pgConnector - INFO - 672 -2022-11-04 12:29:30,182 - vos - INFO - 672 -2022-11-04 12:29:30,183 - migrateData - INFO - 672 item atataatatat -2022-11-04 12:29:30,183 - vosInfo - INFO - 672 testetste -2022-11-04 12:29:30,183 - pgConnector - ERROR - no results to fetch -2022-11-04 12:29:30,184 - migrateData - INFO - No new data found -2022-11-04 12:37:51,800 - pgConnector - INFO - 673 -2022-11-04 12:37:51,800 - vos - INFO - 673 -2022-11-04 12:37:51,800 - migrateData - INFO - 673 item atataatatat -2022-11-04 12:37:51,800 - vosInfo - INFO - 673 testetste -2022-11-04 12:37:51,801 - pgConnector - ERROR - duplicate key value violates unique constraint "idx_communities_info" -DETAIL: Key (name)=(vo.geoss.eu) already exists. -2022-11-04 12:37:51,802 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,802 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,802 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,803 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,803 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,804 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,804 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,804 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,805 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,807 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,807 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,808 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,808 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,808 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,808 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,809 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,809 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,810 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,811 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:37:51,811 - migrateData - INFO - No new data found -2022-11-04 12:38:55,966 - pgConnector - INFO - 674 -2022-11-04 12:38:55,966 - vos - INFO - 674 -2022-11-04 12:38:55,966 - migrateData - INFO - 674 item atataatatat -2022-11-04 12:38:55,966 - vosInfo - INFO - 674 testetste -2022-11-04 12:38:55,967 - pgConnector - ERROR - duplicate key value violates unique constraint "idx_communities_info" -DETAIL: Key (name)=(vo.geoss.eu) already exists. -2022-11-04 12:38:55,967 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,968 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,968 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,970 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,970 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,970 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,971 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,972 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,973 - pgConnector - ERROR - current transaction is aborted, commands ignored until end of transaction block -2022-11-04 12:38:55,973 - migrateData - INFO - No new data found -2022-11-04 12:40:26,066 - pgConnector - INFO - 1 -2022-11-04 12:40:26,066 - vos - INFO - 1 -2022-11-04 12:40:26,066 - migrateData - INFO - 1 item atataatatat -2022-11-04 12:40:26,066 - vosInfo - INFO - 1 testetste -2022-11-04 12:40:26,069 - pgConnector - INFO - 2 -2022-11-04 12:40:26,069 - vos - INFO - 2 -2022-11-04 12:40:26,069 - migrateData - INFO - 2 item atataatatat -2022-11-04 12:40:26,069 - vosInfo - INFO - 2 testetste -2022-11-04 12:40:26,071 - pgConnector - INFO - 3 -2022-11-04 12:40:26,071 - vos - INFO - 3 -2022-11-04 12:40:26,071 - migrateData - INFO - 3 item atataatatat -2022-11-04 12:40:26,071 - vosInfo - INFO - 3 testetste -2022-11-04 12:40:26,073 - pgConnector - INFO - 4 -2022-11-04 12:40:26,073 - vos - INFO - 4 -2022-11-04 12:40:26,073 - migrateData - INFO - 4 item atataatatat -2022-11-04 12:40:26,073 - vosInfo - INFO - 4 testetste -2022-11-04 12:40:26,076 - pgConnector - INFO - 5 -2022-11-04 12:40:26,076 - vos - INFO - 5 -2022-11-04 12:40:26,076 - migrateData - INFO - 5 item atataatatat -2022-11-04 12:40:26,076 - vosInfo - INFO - 5 testetste -2022-11-04 12:40:26,078 - pgConnector - INFO - 6 -2022-11-04 12:40:26,078 - vos - INFO - 6 -2022-11-04 12:40:26,078 - migrateData - INFO - 6 item atataatatat -2022-11-04 12:40:26,078 - vosInfo - INFO - 6 testetste -2022-11-04 12:40:26,080 - pgConnector - INFO - 7 -2022-11-04 12:40:26,080 - vos - INFO - 7 -2022-11-04 12:40:26,080 - migrateData - INFO - 7 item atataatatat -2022-11-04 12:40:26,080 - vosInfo - INFO - 7 testetste -2022-11-04 12:40:26,082 - pgConnector - INFO - 8 -2022-11-04 12:40:26,082 - vos - INFO - 8 -2022-11-04 12:40:26,082 - migrateData - INFO - 8 item atataatatat -2022-11-04 12:40:26,082 - vosInfo - INFO - 8 testetste -2022-11-04 12:40:26,084 - pgConnector - INFO - 9 -2022-11-04 12:40:26,084 - vos - INFO - 9 -2022-11-04 12:40:26,084 - migrateData - INFO - 9 item atataatatat -2022-11-04 12:40:26,084 - vosInfo - INFO - 9 testetste -2022-11-04 12:40:26,086 - pgConnector - INFO - 10 -2022-11-04 12:40:26,086 - vos - INFO - 10 -2022-11-04 12:40:26,086 - migrateData - INFO - 10 item atataatatat -2022-11-04 12:40:26,086 - vosInfo - INFO - 10 testetste -2022-11-04 12:40:26,088 - pgConnector - INFO - 11 -2022-11-04 12:40:26,088 - vos - INFO - 11 -2022-11-04 12:40:26,088 - migrateData - INFO - 11 item atataatatat -2022-11-04 12:40:26,088 - vosInfo - INFO - 11 testetste -2022-11-04 12:40:26,090 - pgConnector - INFO - 12 -2022-11-04 12:40:26,090 - vos - INFO - 12 -2022-11-04 12:40:26,090 - migrateData - INFO - 12 item atataatatat -2022-11-04 12:40:26,090 - vosInfo - INFO - 12 testetste -2022-11-04 12:40:26,091 - pgConnector - INFO - 13 -2022-11-04 12:40:26,092 - vos - INFO - 13 -2022-11-04 12:40:26,092 - migrateData - INFO - 13 item atataatatat -2022-11-04 12:40:26,092 - vosInfo - INFO - 13 testetste -2022-11-04 12:40:26,094 - pgConnector - INFO - 14 -2022-11-04 12:40:26,094 - vos - INFO - 14 -2022-11-04 12:40:26,094 - migrateData - INFO - 14 item atataatatat -2022-11-04 12:40:26,094 - vosInfo - INFO - 14 testetste -2022-11-04 12:40:26,096 - pgConnector - INFO - 15 -2022-11-04 12:40:26,096 - vos - INFO - 15 -2022-11-04 12:40:26,096 - migrateData - INFO - 15 item atataatatat -2022-11-04 12:40:26,096 - vosInfo - INFO - 15 testetste -2022-11-04 12:40:26,098 - pgConnector - INFO - 16 -2022-11-04 12:40:26,099 - vos - INFO - 16 -2022-11-04 12:40:26,099 - migrateData - INFO - 16 item atataatatat -2022-11-04 12:40:26,099 - vosInfo - INFO - 16 testetste -2022-11-04 12:40:26,100 - pgConnector - INFO - 17 -2022-11-04 12:40:26,101 - vos - INFO - 17 -2022-11-04 12:40:26,101 - migrateData - INFO - 17 item atataatatat -2022-11-04 12:40:26,101 - vosInfo - INFO - 17 testetste -2022-11-04 12:40:26,102 - pgConnector - INFO - 18 -2022-11-04 12:40:26,103 - vos - INFO - 18 -2022-11-04 12:40:26,103 - migrateData - INFO - 18 item atataatatat -2022-11-04 12:40:26,103 - vosInfo - INFO - 18 testetste -2022-11-04 12:40:26,105 - pgConnector - INFO - 19 -2022-11-04 12:40:26,105 - vos - INFO - 19 -2022-11-04 12:40:26,105 - migrateData - INFO - 19 item atataatatat -2022-11-04 12:40:26,105 - vosInfo - INFO - 19 testetste -2022-11-04 12:40:26,107 - pgConnector - INFO - 20 -2022-11-04 12:40:26,107 - vos - INFO - 20 -2022-11-04 12:40:26,107 - migrateData - INFO - 20 item atataatatat -2022-11-04 12:40:26,107 - vosInfo - INFO - 20 testetste -2022-11-04 12:40:26,109 - pgConnector - INFO - 21 -2022-11-04 12:40:26,109 - vos - INFO - 21 -2022-11-04 12:40:26,109 - migrateData - INFO - 21 item atataatatat -2022-11-04 12:40:26,109 - vosInfo - INFO - 21 testetste -2022-11-04 12:40:26,110 - pgConnector - INFO - 22 -2022-11-04 12:40:26,111 - vos - INFO - 22 -2022-11-04 12:40:26,111 - migrateData - INFO - 22 item atataatatat -2022-11-04 12:40:26,111 - vosInfo - INFO - 22 testetste -2022-11-04 12:40:26,112 - pgConnector - INFO - 23 -2022-11-04 12:40:26,112 - vos - INFO - 23 -2022-11-04 12:40:26,112 - migrateData - INFO - 23 item atataatatat -2022-11-04 12:40:26,112 - vosInfo - INFO - 23 testetste -2022-11-04 12:40:26,114 - pgConnector - INFO - 24 -2022-11-04 12:40:26,114 - vos - INFO - 24 -2022-11-04 12:40:26,114 - migrateData - INFO - 24 item atataatatat -2022-11-04 12:40:26,114 - vosInfo - INFO - 24 testetste -2022-11-04 12:40:26,118 - pgConnector - INFO - 25 -2022-11-04 12:40:26,118 - vos - INFO - 25 -2022-11-04 12:40:26,118 - migrateData - INFO - 25 item atataatatat -2022-11-04 12:40:26,118 - vosInfo - INFO - 25 testetste -2022-11-04 12:40:26,120 - pgConnector - INFO - 26 -2022-11-04 12:40:26,120 - vos - INFO - 26 -2022-11-04 12:40:26,120 - migrateData - INFO - 26 item atataatatat -2022-11-04 12:40:26,120 - vosInfo - INFO - 26 testetste -2022-11-04 12:40:26,122 - pgConnector - INFO - 27 -2022-11-04 12:40:26,122 - vos - INFO - 27 -2022-11-04 12:40:26,122 - migrateData - INFO - 27 item atataatatat -2022-11-04 12:40:26,122 - vosInfo - INFO - 27 testetste -2022-11-04 12:40:26,124 - pgConnector - INFO - 28 -2022-11-04 12:40:26,124 - vos - INFO - 28 -2022-11-04 12:40:26,124 - migrateData - INFO - 28 item atataatatat -2022-11-04 12:40:26,124 - vosInfo - INFO - 28 testetste -2022-11-04 12:40:26,125 - migrateData - INFO - 28 vos created -2022-11-04 12:41:26,389 - pgConnector - INFO - 29 -2022-11-04 12:41:26,389 - vos - INFO - 29 -2022-11-04 12:41:26,389 - migrateData - INFO - 29 item atataatatat -2022-11-04 12:41:26,389 - vosInfo - INFO - 29 testetste -2022-11-04 12:41:26,392 - pgConnector - INFO - 30 -2022-11-04 12:41:26,393 - vos - INFO - 30 -2022-11-04 12:41:26,402 - migrateData - INFO - 30 item atataatatat -2022-11-04 12:41:26,402 - vosInfo - INFO - 30 testetste -2022-11-04 12:41:26,404 - pgConnector - INFO - 31 -2022-11-04 12:41:26,404 - vos - INFO - 31 -2022-11-04 12:41:26,404 - migrateData - INFO - 31 item atataatatat -2022-11-04 12:41:26,404 - vosInfo - INFO - 31 testetste -2022-11-04 12:41:26,406 - pgConnector - INFO - 32 -2022-11-04 12:41:26,406 - vos - INFO - 32 -2022-11-04 12:41:26,406 - migrateData - INFO - 32 item atataatatat -2022-11-04 12:41:26,406 - vosInfo - INFO - 32 testetste -2022-11-04 12:41:26,408 - pgConnector - INFO - 33 -2022-11-04 12:41:26,408 - vos - INFO - 33 -2022-11-04 12:41:26,408 - migrateData - INFO - 33 item atataatatat -2022-11-04 12:41:26,408 - vosInfo - INFO - 33 testetste -2022-11-04 12:41:26,410 - pgConnector - INFO - 34 -2022-11-04 12:41:26,410 - vos - INFO - 34 -2022-11-04 12:41:26,410 - migrateData - INFO - 34 item atataatatat -2022-11-04 12:41:26,410 - vosInfo - INFO - 34 testetste -2022-11-04 12:41:26,413 - pgConnector - INFO - 35 -2022-11-04 12:41:26,413 - vos - INFO - 35 -2022-11-04 12:41:26,413 - migrateData - INFO - 35 item atataatatat -2022-11-04 12:41:26,413 - vosInfo - INFO - 35 testetste -2022-11-04 12:41:26,415 - pgConnector - INFO - 36 -2022-11-04 12:41:26,415 - vos - INFO - 36 -2022-11-04 12:41:26,415 - migrateData - INFO - 36 item atataatatat -2022-11-04 12:41:26,416 - vosInfo - INFO - 36 testetste -2022-11-04 12:41:26,417 - pgConnector - INFO - 37 -2022-11-04 12:41:26,417 - vos - INFO - 37 -2022-11-04 12:41:26,417 - migrateData - INFO - 37 item atataatatat -2022-11-04 12:41:26,417 - vosInfo - INFO - 37 testetste -2022-11-04 12:41:26,419 - pgConnector - INFO - 38 -2022-11-04 12:41:26,419 - vos - INFO - 38 -2022-11-04 12:41:26,419 - migrateData - INFO - 38 item atataatatat -2022-11-04 12:41:26,419 - vosInfo - INFO - 38 testetste -2022-11-04 12:41:26,421 - pgConnector - INFO - 39 -2022-11-04 12:41:26,421 - vos - INFO - 39 -2022-11-04 12:41:26,421 - migrateData - INFO - 39 item atataatatat -2022-11-04 12:41:26,421 - vosInfo - INFO - 39 testetste -2022-11-04 12:41:26,423 - pgConnector - INFO - 40 -2022-11-04 12:41:26,423 - vos - INFO - 40 -2022-11-04 12:41:26,423 - migrateData - INFO - 40 item atataatatat -2022-11-04 12:41:26,424 - vosInfo - INFO - 40 testetste -2022-11-04 12:41:26,425 - pgConnector - INFO - 41 -2022-11-04 12:41:26,426 - vos - INFO - 41 -2022-11-04 12:41:26,426 - migrateData - INFO - 41 item atataatatat -2022-11-04 12:41:26,426 - vosInfo - INFO - 41 testetste -2022-11-04 12:41:26,428 - pgConnector - INFO - 42 -2022-11-04 12:41:26,428 - vos - INFO - 42 -2022-11-04 12:41:26,428 - migrateData - INFO - 42 item atataatatat -2022-11-04 12:41:26,428 - vosInfo - INFO - 42 testetste -2022-11-04 12:41:26,430 - pgConnector - INFO - 43 -2022-11-04 12:41:26,430 - vos - INFO - 43 -2022-11-04 12:41:26,430 - migrateData - INFO - 43 item atataatatat -2022-11-04 12:41:26,430 - vosInfo - INFO - 43 testetste -2022-11-04 12:41:26,432 - pgConnector - INFO - 44 -2022-11-04 12:41:26,432 - vos - INFO - 44 -2022-11-04 12:41:26,432 - migrateData - INFO - 44 item atataatatat -2022-11-04 12:41:26,432 - vosInfo - INFO - 44 testetste -2022-11-04 12:41:26,434 - pgConnector - INFO - 45 -2022-11-04 12:41:26,434 - vos - INFO - 45 -2022-11-04 12:41:26,434 - migrateData - INFO - 45 item atataatatat -2022-11-04 12:41:26,434 - vosInfo - INFO - 45 testetste -2022-11-04 12:41:26,436 - pgConnector - INFO - 46 -2022-11-04 12:41:26,436 - vos - INFO - 46 -2022-11-04 12:41:26,436 - migrateData - INFO - 46 item atataatatat -2022-11-04 12:41:26,436 - vosInfo - INFO - 46 testetste -2022-11-04 12:41:26,438 - pgConnector - INFO - 47 -2022-11-04 12:41:26,438 - vos - INFO - 47 -2022-11-04 12:41:26,438 - migrateData - INFO - 47 item atataatatat -2022-11-04 12:41:26,438 - vosInfo - INFO - 47 testetste -2022-11-04 12:41:26,439 - pgConnector - INFO - 48 -2022-11-04 12:41:26,439 - vos - INFO - 48 -2022-11-04 12:41:26,439 - migrateData - INFO - 48 item atataatatat -2022-11-04 12:41:26,439 - vosInfo - INFO - 48 testetste -2022-11-04 12:41:26,441 - pgConnector - INFO - 49 -2022-11-04 12:41:26,441 - vos - INFO - 49 -2022-11-04 12:41:26,441 - migrateData - INFO - 49 item atataatatat -2022-11-04 12:41:26,441 - vosInfo - INFO - 49 testetste -2022-11-04 12:41:26,444 - pgConnector - INFO - 50 -2022-11-04 12:41:26,444 - vos - INFO - 50 -2022-11-04 12:41:26,444 - migrateData - INFO - 50 item atataatatat -2022-11-04 12:41:26,445 - vosInfo - INFO - 50 testetste -2022-11-04 12:41:26,446 - pgConnector - INFO - 51 -2022-11-04 12:41:26,446 - vos - INFO - 51 -2022-11-04 12:41:26,447 - migrateData - INFO - 51 item atataatatat -2022-11-04 12:41:26,447 - vosInfo - INFO - 51 testetste -2022-11-04 12:41:26,448 - pgConnector - INFO - 52 -2022-11-04 12:41:26,448 - vos - INFO - 52 -2022-11-04 12:41:26,448 - migrateData - INFO - 52 item atataatatat -2022-11-04 12:41:26,448 - vosInfo - INFO - 52 testetste -2022-11-04 12:41:26,450 - pgConnector - INFO - 53 -2022-11-04 12:41:26,450 - vos - INFO - 53 -2022-11-04 12:41:26,450 - migrateData - INFO - 53 item atataatatat -2022-11-04 12:41:26,450 - vosInfo - INFO - 53 testetste -2022-11-04 12:41:26,452 - pgConnector - INFO - 54 -2022-11-04 12:41:26,452 - vos - INFO - 54 -2022-11-04 12:41:26,452 - migrateData - INFO - 54 item atataatatat -2022-11-04 12:41:26,452 - vosInfo - INFO - 54 testetste -2022-11-04 12:41:26,454 - pgConnector - INFO - 55 -2022-11-04 12:41:26,454 - vos - INFO - 55 -2022-11-04 12:41:26,454 - migrateData - INFO - 55 item atataatatat -2022-11-04 12:41:26,454 - vosInfo - INFO - 55 testetste -2022-11-04 12:41:26,456 - pgConnector - INFO - 56 -2022-11-04 12:41:26,457 - vos - INFO - 56 -2022-11-04 12:41:26,457 - migrateData - INFO - 56 item atataatatat -2022-11-04 12:41:26,457 - vosInfo - INFO - 56 testetste -2022-11-04 12:41:26,458 - migrateData - INFO - 28 vos created -2022-11-04 12:45:46,852 - migrateData - INFO - No new data found diff --git a/data_migrations/log/metricsMigrate.log.2022-11-07 b/data_migrations/log/metricsMigrate.log.2022-11-07 deleted file mode 100644 index 1c1d29e..0000000 --- a/data_migrations/log/metricsMigrate.log.2022-11-07 +++ /dev/null @@ -1,2064 +0,0 @@ -2022-11-07 10:45:15,862 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,863 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,864 - migrateData - INFO - No new data found [(47,)] -2022-11-07 10:45:15,865 - migrateData - INFO - No new data found [(33,)] -2022-11-07 10:45:15,866 - migrateData - INFO - No new data found [(34,)] -2022-11-07 10:45:15,867 - migrateData - INFO - No new data found [(34,)] -2022-11-07 10:45:15,868 - migrateData - INFO - No new data found [(40,)] -2022-11-07 10:45:15,868 - migrateData - INFO - No new data found [(51,)] -2022-11-07 10:45:15,869 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,869 - migrateData - INFO - No new data found [(37,)] -2022-11-07 10:45:15,870 - migrateData - INFO - No new data found [(33,)] -2022-11-07 10:45:15,871 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,872 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,872 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,873 - migrateData - INFO - No new data found [(29,)] -2022-11-07 10:45:15,874 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,874 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,875 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,875 - migrateData - INFO - No new data found [(55,)] -2022-11-07 10:45:15,875 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,876 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,876 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,877 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,877 - migrateData - INFO - No new data found [(54,)] -2022-11-07 10:45:15,877 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,878 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,878 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,878 - migrateData - INFO - No new data found [(40,)] -2022-11-07 10:45:15,879 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,879 - migrateData - INFO - No new data found [(30,)] -2022-11-07 10:45:15,879 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,879 - migrateData - INFO - No new data found [(43,)] -2022-11-07 10:45:15,880 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,880 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,880 - migrateData - INFO - No new data found [(52,)] -2022-11-07 10:45:15,881 - migrateData - INFO - No new data found [(33,)] -2022-11-07 10:45:15,881 - migrateData - INFO - No new data found [(29,)] -2022-11-07 10:45:15,881 - migrateData - INFO - No new data found [(39,)] -2022-11-07 10:45:15,882 - migrateData - INFO - No new data found [(38,)] -2022-11-07 10:45:15,882 - migrateData - INFO - No new data found [(39,)] -2022-11-07 10:45:15,882 - migrateData - INFO - No new data found [(38,)] -2022-11-07 10:45:15,883 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,883 - migrateData - INFO - No new data found [(43,)] -2022-11-07 10:45:15,883 - migrateData - INFO - No new data found [(29,)] -2022-11-07 10:45:15,883 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,884 - migrateData - INFO - No new data found [(41,)] -2022-11-07 10:45:15,884 - migrateData - INFO - No new data found [(40,)] -2022-11-07 10:45:15,884 - migrateData - INFO - No new data found [(41,)] -2022-11-07 10:45:15,885 - migrateData - INFO - No new data found [(42,)] -2022-11-07 10:45:15,885 - migrateData - INFO - No new data found [(37,)] -2022-11-07 10:45:15,885 - migrateData - INFO - No new data found [(51,)] -2022-11-07 10:45:15,886 - migrateData - INFO - No new data found [(44,)] -2022-11-07 10:45:15,886 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,886 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,886 - migrateData - INFO - No new data found [(29,)] -2022-11-07 10:45:15,887 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,888 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,888 - migrateData - INFO - No new data found [(30,)] -2022-11-07 10:45:15,889 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,889 - migrateData - INFO - No new data found [(30,)] -2022-11-07 10:45:15,891 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,892 - migrateData - INFO - No new data found [(29,)] -2022-11-07 10:45:15,893 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,895 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,896 - migrateData - INFO - No new data found [(42,)] -2022-11-07 10:45:15,896 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,896 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,897 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,897 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,897 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,898 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,898 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,898 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,899 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,899 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,900 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,900 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,901 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,901 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,901 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,902 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,902 - migrateData - INFO - No new data found [(49,)] -2022-11-07 10:45:15,903 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,903 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,903 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,904 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,904 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,905 - migrateData - INFO - No new data found [(30,)] -2022-11-07 10:45:15,905 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,906 - migrateData - INFO - No new data found [(51,)] -2022-11-07 10:45:15,906 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,906 - migrateData - INFO - No new data found [(32,)] -2022-11-07 10:45:15,906 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,907 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,907 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,908 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,908 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,908 - migrateData - INFO - No new data found [(41,)] -2022-11-07 10:45:15,908 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,909 - migrateData - INFO - No new data found [(53,)] -2022-11-07 10:45:15,909 - migrateData - INFO - No new data found [(47,)] -2022-11-07 10:45:15,909 - migrateData - INFO - No new data found [(47,)] -2022-11-07 10:45:15,910 - migrateData - INFO - No new data found [(40,)] -2022-11-07 10:45:15,910 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,910 - migrateData - INFO - No new data found [(40,)] -2022-11-07 10:45:15,911 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,911 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,911 - migrateData - INFO - No new data found [(45,)] -2022-11-07 10:45:15,912 - migrateData - INFO - No new data found [(56,)] -2022-11-07 10:45:15,912 - migrateData - INFO - No new data found [(46,)] -2022-11-07 10:45:15,912 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,912 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,913 - migrateData - INFO - No new data found [(31,)] -2022-11-07 10:45:15,913 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,913 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,914 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,914 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,915 - migrateData - INFO - No new data found [(48,)] -2022-11-07 10:45:15,915 - migrateData - INFO - No new data found [(47,)] -2022-11-07 10:45:15,915 - migrateData - INFO - No new data found [(47,)] -2022-11-07 10:45:15,916 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,916 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,917 - migrateData - INFO - No new data found [(54,)] -2022-11-07 10:45:15,917 - migrateData - INFO - No new data found [(54,)] -2022-11-07 10:45:15,918 - migrateData - INFO - No new data found [(54,)] -2022-11-07 10:45:15,918 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,918 - migrateData - INFO - No new data found [(51,)] -2022-11-07 10:45:15,919 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,919 - migrateData - INFO - No new data found [(37,)] -2022-11-07 10:45:15,931 - migrateData - INFO - No new data found [(51,)] -2022-11-07 10:45:15,932 - migrateData - INFO - No new data found [(40,)] -2022-11-07 10:45:15,934 - migrateData - INFO - No new data found [(40,)] -2022-11-07 10:45:15,935 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,935 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,936 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,936 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,936 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,937 - migrateData - INFO - No new data found [(53,)] -2022-11-07 10:45:15,938 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,938 - migrateData - INFO - No new data found [(53,)] -2022-11-07 10:45:15,939 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,940 - migrateData - INFO - No new data found [(53,)] -2022-11-07 10:45:15,940 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,940 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,941 - migrateData - INFO - No new data found [(53,)] -2022-11-07 10:45:15,941 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,941 - migrateData - INFO - No new data found [(40,)] -2022-11-07 10:45:15,941 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,942 - migrateData - INFO - No new data found [(53,)] -2022-11-07 10:45:15,942 - migrateData - INFO - No new data found [(51,)] -2022-11-07 10:45:15,942 - migrateData - INFO - No new data found [(53,)] -2022-11-07 10:45:15,943 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,943 - migrateData - INFO - No new data found [] -2022-11-07 10:45:15,943 - migrateData - INFO - No new data found [(53,)] -2022-11-07 10:45:15,944 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,944 - migrateData - INFO - No new data found [(56,)] -2022-11-07 10:45:15,944 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,945 - migrateData - INFO - No new data found [(56,)] -2022-11-07 10:45:15,945 - migrateData - INFO - No new data found [(50,)] -2022-11-07 10:45:15,945 - migrateData - INFO - No new data found [(56,)] -2022-11-07 10:55:41,593 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,593 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,594 - migrateData - INFO - Vo name [(47,)] -2022-11-07 10:55:41,594 - migrateData - INFO - Vo name [(33,)] -2022-11-07 10:55:41,595 - migrateData - INFO - Vo name [(34,)] -2022-11-07 10:55:41,596 - migrateData - INFO - Vo name [(34,)] -2022-11-07 10:55:41,597 - migrateData - INFO - Vo name [(40,)] -2022-11-07 10:55:41,601 - migrateData - INFO - Vo name [(51,)] -2022-11-07 10:55:41,602 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,603 - migrateData - INFO - Vo name [(37,)] -2022-11-07 10:55:41,604 - migrateData - INFO - Vo name [(33,)] -2022-11-07 10:55:41,605 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,605 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,606 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,606 - migrateData - INFO - Vo name [(29,)] -2022-11-07 10:55:41,606 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,607 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,607 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,607 - migrateData - INFO - Vo name [(55,)] -2022-11-07 10:55:41,608 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,608 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,609 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,609 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,609 - migrateData - INFO - Vo name [(54,)] -2022-11-07 10:55:41,610 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,610 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,611 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,611 - migrateData - INFO - Vo name [(40,)] -2022-11-07 10:55:41,612 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,612 - migrateData - INFO - Vo name [(30,)] -2022-11-07 10:55:41,612 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,613 - migrateData - INFO - Vo name [(43,)] -2022-11-07 10:55:41,613 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,613 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,613 - migrateData - INFO - Vo name [(52,)] -2022-11-07 10:55:41,614 - migrateData - INFO - Vo name [(33,)] -2022-11-07 10:55:41,614 - migrateData - INFO - Vo name [(29,)] -2022-11-07 10:55:41,615 - migrateData - INFO - Vo name [(39,)] -2022-11-07 10:55:41,615 - migrateData - INFO - Vo name [(38,)] -2022-11-07 10:55:41,615 - migrateData - INFO - Vo name [(39,)] -2022-11-07 10:55:41,616 - migrateData - INFO - Vo name [(38,)] -2022-11-07 10:55:41,616 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,616 - migrateData - INFO - Vo name [(43,)] -2022-11-07 10:55:41,617 - migrateData - INFO - Vo name [(29,)] -2022-11-07 10:55:41,617 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,617 - migrateData - INFO - Vo name [(41,)] -2022-11-07 10:55:41,618 - migrateData - INFO - Vo name [(40,)] -2022-11-07 10:55:41,618 - migrateData - INFO - Vo name [(41,)] -2022-11-07 10:55:41,618 - migrateData - INFO - Vo name [(42,)] -2022-11-07 10:55:41,619 - migrateData - INFO - Vo name [(37,)] -2022-11-07 10:55:41,619 - migrateData - INFO - Vo name [(51,)] -2022-11-07 10:55:41,619 - migrateData - INFO - Vo name [(44,)] -2022-11-07 10:55:41,619 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,620 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,620 - migrateData - INFO - Vo name [(29,)] -2022-11-07 10:55:41,620 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,621 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,621 - migrateData - INFO - Vo name [(30,)] -2022-11-07 10:55:41,621 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,622 - migrateData - INFO - Vo name [(30,)] -2022-11-07 10:55:41,622 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,625 - migrateData - INFO - Vo name [(29,)] -2022-11-07 10:55:41,626 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,626 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,627 - migrateData - INFO - Vo name [(42,)] -2022-11-07 10:55:41,627 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,627 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,628 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,630 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,631 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,631 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,632 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,632 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,633 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,633 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,634 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,634 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,635 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,635 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,636 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,636 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,637 - migrateData - INFO - Vo name [(49,)] -2022-11-07 10:55:41,637 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,637 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,638 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,638 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,639 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,639 - migrateData - INFO - Vo name [(30,)] -2022-11-07 10:55:41,639 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,640 - migrateData - INFO - Vo name [(51,)] -2022-11-07 10:55:41,640 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,640 - migrateData - INFO - Vo name [(32,)] -2022-11-07 10:55:41,641 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,641 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,641 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,642 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,642 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,643 - migrateData - INFO - Vo name [(41,)] -2022-11-07 10:55:41,643 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,644 - migrateData - INFO - Vo name [(53,)] -2022-11-07 10:55:41,644 - migrateData - INFO - Vo name [(47,)] -2022-11-07 10:55:41,645 - migrateData - INFO - Vo name [(47,)] -2022-11-07 10:55:41,646 - migrateData - INFO - Vo name [(40,)] -2022-11-07 10:55:41,646 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,647 - migrateData - INFO - Vo name [(40,)] -2022-11-07 10:55:41,647 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,648 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,649 - migrateData - INFO - Vo name [(45,)] -2022-11-07 10:55:41,650 - migrateData - INFO - Vo name [(56,)] -2022-11-07 10:55:41,650 - migrateData - INFO - Vo name [(46,)] -2022-11-07 10:55:41,650 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,651 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,651 - migrateData - INFO - Vo name [(31,)] -2022-11-07 10:55:41,652 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,652 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,652 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,653 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,653 - migrateData - INFO - Vo name [(48,)] -2022-11-07 10:55:41,653 - migrateData - INFO - Vo name [(47,)] -2022-11-07 10:55:41,654 - migrateData - INFO - Vo name [(47,)] -2022-11-07 10:55:41,654 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,655 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,655 - migrateData - INFO - Vo name [(54,)] -2022-11-07 10:55:41,656 - migrateData - INFO - Vo name [(54,)] -2022-11-07 10:55:41,656 - migrateData - INFO - Vo name [(54,)] -2022-11-07 10:55:41,656 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,656 - migrateData - INFO - Vo name [(51,)] -2022-11-07 10:55:41,661 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,662 - migrateData - INFO - Vo name [(37,)] -2022-11-07 10:55:41,662 - migrateData - INFO - Vo name [(51,)] -2022-11-07 10:55:41,662 - migrateData - INFO - Vo name [(40,)] -2022-11-07 10:55:41,662 - migrateData - INFO - Vo name [(40,)] -2022-11-07 10:55:41,663 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,663 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,664 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,664 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,664 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,665 - migrateData - INFO - Vo name [(53,)] -2022-11-07 10:55:41,665 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,665 - migrateData - INFO - Vo name [(53,)] -2022-11-07 10:55:41,666 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,666 - migrateData - INFO - Vo name [(53,)] -2022-11-07 10:55:41,666 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,667 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,667 - migrateData - INFO - Vo name [(53,)] -2022-11-07 10:55:41,667 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,668 - migrateData - INFO - Vo name [(40,)] -2022-11-07 10:55:41,668 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,668 - migrateData - INFO - Vo name [(53,)] -2022-11-07 10:55:41,668 - migrateData - INFO - Vo name [(51,)] -2022-11-07 10:55:41,669 - migrateData - INFO - Vo name [(53,)] -2022-11-07 10:55:41,669 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,669 - migrateData - INFO - Vo name [] -2022-11-07 10:55:41,670 - migrateData - INFO - Vo name [(53,)] -2022-11-07 10:55:41,670 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,671 - migrateData - INFO - Vo name [(56,)] -2022-11-07 10:55:41,671 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,671 - migrateData - INFO - Vo name [(56,)] -2022-11-07 10:55:41,672 - migrateData - INFO - Vo name [(50,)] -2022-11-07 10:55:41,672 - migrateData - INFO - Vo name [(56,)] -2022-11-07 10:56:08,305 - migrateData - INFO - Vo name AARC Pilot User Sponsors with id -2022-11-07 10:56:08,306 - migrateData - INFO - Vo name AARC Pilot User Sponsors with id -2022-11-07 10:56:08,306 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:56:08,307 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 10:56:08,307 - migrateData - INFO - Vo name WP5 with id -2022-11-07 10:56:08,311 - migrateData - INFO - Vo name WP5 with id -2022-11-07 10:56:08,312 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:56:08,313 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:56:08,314 - migrateData - INFO - Vo name Managers.DOAB with id -2022-11-07 10:56:08,314 - migrateData - INFO - Vo name AMB with id -2022-11-07 10:56:08,315 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 10:56:08,315 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,315 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,316 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,316 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:56:08,316 - migrateData - INFO - Vo name DOAB with id -2022-11-07 10:56:08,317 - migrateData - INFO - Vo name Managers.PSP with id -2022-11-07 10:56:08,317 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,317 - migrateData - INFO - Vo name onboarding.egi.eu with id -2022-11-07 10:56:08,318 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,318 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,318 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,320 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,321 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 10:56:08,321 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,322 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,322 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,323 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:56:08,323 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,323 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 10:56:08,324 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,324 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 10:56:08,324 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,325 - migrateData - INFO - Vo name eiscat child1 with id -2022-11-07 10:56:08,325 - migrateData - INFO - Vo name eiscat.se with id -2022-11-07 10:56:08,325 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 10:56:08,326 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:56:08,326 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 10:56:08,326 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 10:56:08,327 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 10:56:08,327 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 10:56:08,327 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,328 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 10:56:08,328 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:56:08,329 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,329 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 10:56:08,330 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:56:08,330 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 10:56:08,330 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 10:56:08,331 - migrateData - INFO - Vo name AMB with id -2022-11-07 10:56:08,331 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:56:08,331 - migrateData - INFO - Vo name vo.parent.example.eu with id -2022-11-07 10:56:08,332 - migrateData - INFO - Vo name vo.child.example.eu with id -2022-11-07 10:56:08,332 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,332 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:56:08,332 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,333 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,333 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 10:56:08,333 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,334 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 10:56:08,334 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,335 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:56:08,335 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,336 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,336 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 10:56:08,336 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,337 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,337 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:56:08,337 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,338 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:56:08,338 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,339 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,339 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,339 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,339 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:56:08,340 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:56:08,340 - migrateData - INFO - Vo name science-team01 with id -2022-11-07 10:56:08,340 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,341 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,341 - migrateData - INFO - Vo name science-team01 with id -2022-11-07 10:56:08,341 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,342 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:56:08,342 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,343 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,343 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,343 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,343 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,344 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 10:56:08,344 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,344 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:56:08,345 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,345 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:56:08,345 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,346 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:56:08,346 - migrateData - INFO - Vo name science-team01 with id -2022-11-07 10:56:08,346 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,347 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,347 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 10:56:08,347 - migrateData - INFO - Vo name Admins.DOAB with id -2022-11-07 10:56:08,349 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:56:08,350 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:56:08,351 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:56:08,351 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:56:08,352 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,352 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:56:08,353 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,353 - migrateData - INFO - Vo name science-team01 with id -2022-11-07 10:56:08,353 - migrateData - INFO - Vo name test-TRIPLE with id -2022-11-07 10:56:08,354 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 10:56:08,357 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id -2022-11-07 10:56:08,358 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,358 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,359 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:56:08,360 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,360 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,360 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,361 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,361 - migrateData - INFO - Vo name eosc-synergy.eu with id -2022-11-07 10:56:08,361 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:56:08,362 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:56:08,362 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,363 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,363 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 10:56:08,363 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 10:56:08,363 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 10:56:08,364 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,364 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:56:08,364 - migrateData - INFO - Vo name vo.child.example.eu with id -2022-11-07 10:56:08,364 - migrateData - INFO - Vo name AMB with id -2022-11-07 10:56:08,365 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:56:08,365 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:56:08,365 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:56:08,366 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,367 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,367 - migrateData - INFO - Vo name vo.child.child.child.child.example.eu with id -2022-11-07 10:56:08,367 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,368 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,368 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:56:08,368 - migrateData - INFO - Vo name Admins.DOAB with id -2022-11-07 10:56:08,368 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:56:08,369 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:56:08,369 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:56:08,369 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:56:08,370 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:56:08,370 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:56:08,370 - migrateData - INFO - Vo name Managers.DOAB with id -2022-11-07 10:56:08,371 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:56:08,371 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:56:08,371 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:56:08,372 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:56:08,372 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:56:08,372 - migrateData - INFO - Vo name Admins.PSP with id -2022-11-07 10:56:08,372 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:56:08,373 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:56:08,373 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,373 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 10:56:08,374 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,374 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 10:56:08,375 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:56:08,379 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 10:57:51,419 - migrateData - INFO - Vo name AARC Pilot User Sponsors with id -2022-11-07 10:57:51,421 - migrateData - INFO - Vo name AARC Pilot User Sponsors with id -2022-11-07 10:57:51,421 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:57:51,422 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 10:57:51,423 - migrateData - INFO - Vo name WP5 with id -2022-11-07 10:57:51,423 - migrateData - INFO - Vo name WP5 with id -2022-11-07 10:57:51,423 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:57:51,424 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:57:51,424 - migrateData - INFO - Vo name Managers.DOAB with id -2022-11-07 10:57:51,424 - migrateData - INFO - Vo name AMB with id -2022-11-07 10:57:51,425 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 10:57:51,425 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,426 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,427 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,427 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:57:51,428 - migrateData - INFO - Vo name DOAB with id -2022-11-07 10:57:51,428 - migrateData - INFO - Vo name Managers.PSP with id -2022-11-07 10:57:51,429 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,429 - migrateData - INFO - Vo name onboarding.egi.eu with id -2022-11-07 10:57:51,429 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,433 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,434 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,434 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,435 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 10:57:51,435 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,435 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,436 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:57:51,437 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,437 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 10:57:51,438 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,439 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 10:57:51,439 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,440 - migrateData - INFO - Vo name eiscat child1 with id -2022-11-07 10:57:51,440 - migrateData - INFO - Vo name eiscat.se with id -2022-11-07 10:57:51,441 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 10:57:51,441 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:57:51,445 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 10:57:51,446 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 10:57:51,446 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 10:57:51,447 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 10:57:51,447 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,448 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 10:57:51,448 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:57:51,449 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,449 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 10:57:51,450 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:57:51,450 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 10:57:51,451 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 10:57:51,451 - migrateData - INFO - Vo name AMB with id -2022-11-07 10:57:51,451 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:57:51,452 - migrateData - INFO - Vo name vo.parent.example.eu with id -2022-11-07 10:57:51,452 - migrateData - INFO - Vo name vo.child.example.eu with id -2022-11-07 10:57:51,452 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,453 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:57:51,453 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,453 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,454 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 10:57:51,454 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,455 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 10:57:51,455 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,455 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 10:57:51,455 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,456 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,456 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 10:57:51,457 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,457 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,457 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:57:51,458 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,458 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:57:51,459 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,459 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,459 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,460 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,460 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:57:51,460 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:57:51,461 - migrateData - INFO - Vo name science-team01 with id -2022-11-07 10:57:51,461 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,461 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,462 - migrateData - INFO - Vo name science-team01 with id -2022-11-07 10:57:51,462 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,462 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 10:57:51,463 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,463 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,464 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,464 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,464 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,465 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 10:57:51,465 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,466 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:57:51,466 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,467 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 10:57:51,467 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,467 - migrateData - INFO - Vo name LC99_001 with id -2022-11-07 10:57:51,467 - migrateData - INFO - Vo name science-team01 with id -2022-11-07 10:57:51,468 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,468 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,469 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 10:57:51,469 - migrateData - INFO - Vo name Admins.DOAB with id -2022-11-07 10:57:51,470 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:57:51,471 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:57:51,472 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:57:51,472 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:57:51,473 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,473 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:57:51,473 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,474 - migrateData - INFO - Vo name science-team01 with id -2022-11-07 10:57:51,474 - migrateData - INFO - Vo name test-TRIPLE with id -2022-11-07 10:57:51,474 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 10:57:51,475 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id -2022-11-07 10:57:51,475 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,475 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,476 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 10:57:51,476 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,478 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,479 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,479 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,480 - migrateData - INFO - Vo name eosc-synergy.eu with id -2022-11-07 10:57:51,480 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:57:51,481 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 10:57:51,481 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,481 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,482 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 10:57:51,482 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 10:57:51,482 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 10:57:51,483 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,483 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:57:51,483 - migrateData - INFO - Vo name vo.child.example.eu with id -2022-11-07 10:57:51,484 - migrateData - INFO - Vo name AMB with id -2022-11-07 10:57:51,484 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:57:51,484 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:57:51,485 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:57:51,485 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,485 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,486 - migrateData - INFO - Vo name vo.child.child.child.child.example.eu with id -2022-11-07 10:57:51,486 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,486 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,487 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:57:51,487 - migrateData - INFO - Vo name Admins.DOAB with id -2022-11-07 10:57:51,487 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:57:51,488 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:57:51,488 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:57:51,489 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:57:51,489 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:57:51,489 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:57:51,490 - migrateData - INFO - Vo name Managers.DOAB with id -2022-11-07 10:57:51,490 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 10:57:51,491 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:57:51,493 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:57:51,493 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 10:57:51,494 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:57:51,494 - migrateData - INFO - Vo name Admins.PSP with id -2022-11-07 10:57:51,495 - migrateData - INFO - Vo name Publishers.DOAB with id -2022-11-07 10:57:51,495 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 10:57:51,496 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,496 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 10:57:51,497 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,497 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 10:57:51,498 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 10:57:51,498 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:02,395 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:02,396 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:02,397 - migrateData - INFO - Vo name WP5 with id -2022-11-07 11:03:02,398 - migrateData - INFO - Vo name WP5 with id -2022-11-07 11:03:02,399 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:02,400 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:02,401 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:02,403 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:02,403 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,404 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,404 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,405 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:02,407 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,408 - migrateData - INFO - Vo name onboarding.egi.eu with id -2022-11-07 11:03:02,408 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,408 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,409 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,409 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,409 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:02,410 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,410 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,411 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,411 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:02,411 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,412 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:02,412 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,412 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 11:03:02,413 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,413 - migrateData - INFO - Vo name eiscat.se with id -2022-11-07 11:03:02,414 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:02,414 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:02,415 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 11:03:02,415 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 11:03:02,416 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 11:03:02,416 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 11:03:02,417 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,417 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 11:03:02,417 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:02,418 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,419 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:02,420 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:02,420 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:02,420 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 11:03:02,421 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:02,421 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:02,422 - migrateData - INFO - Vo name vo.parent.example.eu with id -2022-11-07 11:03:02,422 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,422 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:02,423 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,423 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,423 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:02,424 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,424 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:02,424 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,424 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:02,425 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,425 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,426 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 11:03:02,426 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,427 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,428 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,428 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,429 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,429 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,430 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,431 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,433 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,435 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,436 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:02,436 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,437 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,437 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,438 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,438 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,438 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:02,439 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,439 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:02,439 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,440 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:02,440 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,441 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,441 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,442 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:02,442 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:02,443 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:02,443 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:02,443 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:02,444 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,445 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:02,445 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,446 - migrateData - INFO - Vo name test-TRIPLE with id -2022-11-07 11:03:02,446 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:02,446 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id -2022-11-07 11:03:02,447 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,447 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,447 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:02,448 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,448 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,448 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,449 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,449 - migrateData - INFO - Vo name eosc-synergy.eu with id -2022-11-07 11:03:02,449 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:02,450 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:02,450 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,451 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,451 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:02,451 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:02,452 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:02,452 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,452 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:02,453 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:02,453 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:02,454 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:02,454 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:02,454 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,455 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,455 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,455 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,456 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:02,456 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:02,457 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:02,458 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:02,459 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:02,460 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:02,460 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:02,460 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:02,461 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:02,462 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,462 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:02,464 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,465 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:02,465 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:02,466 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:15,223 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:15,224 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:15,225 - migrateData - INFO - Vo name WP5 with id -2022-11-07 11:03:15,227 - migrateData - INFO - Vo name WP5 with id -2022-11-07 11:03:15,228 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:15,229 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:15,230 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:15,230 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:15,231 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,231 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,231 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,231 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:15,232 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,233 - migrateData - INFO - Vo name onboarding.egi.eu with id -2022-11-07 11:03:15,233 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,233 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,233 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,234 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,234 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:15,234 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,235 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,235 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,235 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:15,236 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,236 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:15,236 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,236 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 11:03:15,237 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,237 - migrateData - INFO - Vo name eiscat.se with id -2022-11-07 11:03:15,238 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:15,238 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:15,241 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 11:03:15,242 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 11:03:15,242 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 11:03:15,243 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 11:03:15,243 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,243 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 11:03:15,243 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:15,244 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,244 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:15,244 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:15,245 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:15,245 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 11:03:15,245 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:15,246 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:15,246 - migrateData - INFO - Vo name vo.parent.example.eu with id -2022-11-07 11:03:15,249 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,250 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:15,250 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,250 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,251 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:15,251 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,252 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:15,252 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,252 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:15,253 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,253 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,254 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 11:03:15,254 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,254 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,255 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,256 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,256 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,257 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,257 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,258 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,259 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,260 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,261 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:15,261 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,262 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,262 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,263 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,263 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,263 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:15,264 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,264 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:15,265 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,265 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:15,265 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,267 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,268 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,269 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:15,269 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:15,270 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:15,270 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:15,271 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:15,272 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,272 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:15,273 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,273 - migrateData - INFO - Vo name test-TRIPLE with id -2022-11-07 11:03:15,274 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:15,274 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id -2022-11-07 11:03:15,274 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,275 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,275 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:15,275 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,275 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,276 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,276 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,277 - migrateData - INFO - Vo name eosc-synergy.eu with id -2022-11-07 11:03:15,277 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:15,278 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:15,279 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,280 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,281 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:15,282 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:15,282 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:15,283 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,283 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:15,284 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:15,284 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:15,285 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:15,285 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:15,285 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,286 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,287 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,287 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,289 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:15,290 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:15,291 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:15,295 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:15,296 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:15,297 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:15,298 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:15,298 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:15,300 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:15,300 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,301 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:15,301 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,304 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:15,304 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:15,304 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:25,817 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:25,818 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:25,818 - migrateData - INFO - Vo name WP5 with id -2022-11-07 11:03:25,819 - migrateData - INFO - Vo name WP5 with id -2022-11-07 11:03:25,819 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:25,820 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:25,821 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:25,822 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:25,822 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,823 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,824 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,826 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:25,827 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,828 - migrateData - INFO - Vo name onboarding.egi.eu with id -2022-11-07 11:03:25,828 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,828 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,829 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,829 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,829 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:25,830 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,830 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,831 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,831 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:25,831 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,832 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:25,832 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,832 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 11:03:25,833 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,837 - migrateData - INFO - Vo name eiscat.se with id -2022-11-07 11:03:25,838 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:25,839 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:25,839 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 11:03:25,843 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 11:03:25,844 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 11:03:25,844 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 11:03:25,844 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,845 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 11:03:25,845 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:25,846 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,846 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:25,846 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:25,847 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:25,847 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 11:03:25,847 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:25,847 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:25,848 - migrateData - INFO - Vo name vo.parent.example.eu with id -2022-11-07 11:03:25,849 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,849 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:25,849 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,850 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,850 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:25,851 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,851 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:25,851 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,852 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:25,852 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,852 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,853 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 11:03:25,853 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,853 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,854 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,854 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,855 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,855 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,855 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,856 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,857 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,857 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,858 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:25,858 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,861 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,861 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,862 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,862 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,862 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:25,863 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,863 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:25,863 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,864 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:25,864 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,865 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,865 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,866 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:25,866 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:25,867 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:25,867 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:25,867 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:25,868 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,868 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:25,868 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,869 - migrateData - INFO - Vo name test-TRIPLE with id -2022-11-07 11:03:25,869 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:25,870 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id -2022-11-07 11:03:25,870 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,871 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,873 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:25,874 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,877 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,877 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,878 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,878 - migrateData - INFO - Vo name eosc-synergy.eu with id -2022-11-07 11:03:25,879 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:25,879 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:25,879 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,879 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,880 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:25,880 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:25,880 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:25,880 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,881 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:25,881 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:25,881 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:25,882 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:25,882 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:25,882 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,883 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,883 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,883 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,884 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:25,884 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:25,885 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:25,886 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:25,886 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:25,887 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:25,888 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:25,888 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:25,889 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:25,889 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,901 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:25,902 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,912 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:25,913 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:25,913 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:44,366 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:44,367 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:44,368 - migrateData - INFO - Vo name WP5 with id -2022-11-07 11:03:44,369 - migrateData - INFO - Vo name WP5 with id -2022-11-07 11:03:44,369 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:44,370 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:44,371 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:44,372 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:44,373 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,374 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,374 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,375 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:44,376 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,376 - migrateData - INFO - Vo name onboarding.egi.eu with id -2022-11-07 11:03:44,376 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,377 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,378 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,378 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,378 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:44,379 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,379 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,379 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,380 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:44,380 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,380 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:44,381 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,382 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 11:03:44,383 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,383 - migrateData - INFO - Vo name eiscat.se with id -2022-11-07 11:03:44,384 - migrateData - INFO - Vo name WP5-all with id -2022-11-07 11:03:44,384 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:44,385 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 11:03:44,385 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 11:03:44,385 - migrateData - INFO - Vo name test-sso-confluence with id -2022-11-07 11:03:44,386 - migrateData - INFO - Vo name test-sso-mailman with id -2022-11-07 11:03:44,386 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,386 - migrateData - INFO - Vo name rcauth.eu with id -2022-11-07 11:03:44,387 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:44,387 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,388 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:44,388 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:44,388 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:44,388 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 11:03:44,389 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:44,389 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:44,390 - migrateData - INFO - Vo name vo.parent.example.eu with id -2022-11-07 11:03:44,390 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,391 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:44,391 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,391 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,392 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:44,392 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,392 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:44,393 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,393 - migrateData - INFO - Vo name vo.geoss.eu with id -2022-11-07 11:03:44,393 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,394 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,394 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id -2022-11-07 11:03:44,394 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,395 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,395 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,396 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,396 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,397 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,397 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,398 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,399 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,399 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,400 - migrateData - INFO - Vo name radio-observatory with id -2022-11-07 11:03:44,400 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,400 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,401 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,401 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,401 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,401 - migrateData - INFO - Vo name vo.dariah.eu with id -2022-11-07 11:03:44,402 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,402 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:44,403 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,403 - migrateData - INFO - Vo name training.egi.eu with id -2022-11-07 11:03:44,404 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,405 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,405 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,406 - migrateData - INFO - Vo name cloud.grnet.gr with id -2022-11-07 11:03:44,407 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:44,408 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:44,408 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:44,409 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:44,409 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,410 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:44,410 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,411 - migrateData - INFO - Vo name test-TRIPLE with id -2022-11-07 11:03:44,411 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:44,412 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id -2022-11-07 11:03:44,412 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,413 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,413 - migrateData - INFO - Vo name checkin-integration with id -2022-11-07 11:03:44,413 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,414 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,414 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,414 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,415 - migrateData - INFO - Vo name eosc-synergy.eu with id -2022-11-07 11:03:44,415 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:44,415 - migrateData - INFO - Vo name worsica.vo.incd.pt with id -2022-11-07 11:03:44,416 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,416 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,416 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:44,417 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:44,417 - migrateData - INFO - Vo name vo.access.egi.eu with id -2022-11-07 11:03:44,417 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,418 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:44,418 - migrateData - INFO - Vo name AMB with id -2022-11-07 11:03:44,419 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:44,420 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:44,420 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:44,420 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,421 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,422 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,422 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,422 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:44,423 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:44,423 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:44,424 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:44,424 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id -2022-11-07 11:03:44,424 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:44,425 - migrateData - INFO - Vo name goc.egi.eu with id -2022-11-07 11:03:44,425 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:44,426 - migrateData - INFO - Vo name vo.operas-eu.org with id -2022-11-07 11:03:44,427 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,427 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:44,428 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,429 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:03:44,429 - migrateData - INFO - Vo name vo.example.org with id -2022-11-07 11:03:44,429 - migrateData - INFO - Vo name openEO_test with id -2022-11-07 11:04:04,379 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) -2022-11-07 11:04:04,379 - migrateData - INFO - Vo name WP5-all with id (33,) -2022-11-07 11:04:04,380 - migrateData - INFO - Vo name WP5 with id (34,) -2022-11-07 11:04:04,380 - migrateData - INFO - Vo name WP5 with id (34,) -2022-11-07 11:04:04,381 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) -2022-11-07 11:04:04,382 - migrateData - INFO - Vo name goc.egi.eu with id (51,) -2022-11-07 11:04:04,382 - migrateData - INFO - Vo name AMB with id (37,) -2022-11-07 11:04:04,383 - migrateData - INFO - Vo name WP5-all with id (33,) -2022-11-07 11:04:04,383 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,384 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,384 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,385 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) -2022-11-07 11:04:04,386 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,386 - migrateData - INFO - Vo name onboarding.egi.eu with id (55,) -2022-11-07 11:04:04,386 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,386 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,387 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,387 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,388 - migrateData - INFO - Vo name vo.access.egi.eu with id (54,) -2022-11-07 11:04:04,388 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,389 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,390 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,390 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) -2022-11-07 11:04:04,391 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,392 - migrateData - INFO - Vo name vo.dariah.eu with id (30,) -2022-11-07 11:04:04,392 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,393 - migrateData - INFO - Vo name rcauth.eu with id (43,) -2022-11-07 11:04:04,393 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,394 - migrateData - INFO - Vo name eiscat.se with id (52,) -2022-11-07 11:04:04,395 - migrateData - INFO - Vo name WP5-all with id (33,) -2022-11-07 11:04:04,396 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) -2022-11-07 11:04:04,397 - migrateData - INFO - Vo name test-sso-confluence with id (39,) -2022-11-07 11:04:04,397 - migrateData - INFO - Vo name test-sso-mailman with id (38,) -2022-11-07 11:04:04,398 - migrateData - INFO - Vo name test-sso-confluence with id (39,) -2022-11-07 11:04:04,399 - migrateData - INFO - Vo name test-sso-mailman with id (38,) -2022-11-07 11:04:04,400 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,400 - migrateData - INFO - Vo name rcauth.eu with id (43,) -2022-11-07 11:04:04,401 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) -2022-11-07 11:04:04,402 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,403 - migrateData - INFO - Vo name cloud.grnet.gr with id (41,) -2022-11-07 11:04:04,403 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) -2022-11-07 11:04:04,404 - migrateData - INFO - Vo name cloud.grnet.gr with id (41,) -2022-11-07 11:04:04,405 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id (42,) -2022-11-07 11:04:04,406 - migrateData - INFO - Vo name AMB with id (37,) -2022-11-07 11:04:04,407 - migrateData - INFO - Vo name goc.egi.eu with id (51,) -2022-11-07 11:04:04,408 - migrateData - INFO - Vo name vo.parent.example.eu with id (44,) -2022-11-07 11:04:04,409 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,410 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) -2022-11-07 11:04:04,410 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,411 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,411 - migrateData - INFO - Vo name vo.dariah.eu with id (30,) -2022-11-07 11:04:04,412 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,412 - migrateData - INFO - Vo name vo.dariah.eu with id (30,) -2022-11-07 11:04:04,413 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,414 - migrateData - INFO - Vo name vo.geoss.eu with id (29,) -2022-11-07 11:04:04,415 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,416 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,417 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id (42,) -2022-11-07 11:04:04,418 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,419 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,420 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,421 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,422 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,423 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,424 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,425 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,425 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,426 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,426 - migrateData - INFO - Vo name radio-observatory with id (49,) -2022-11-07 11:04:04,426 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,426 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,427 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,427 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,427 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,428 - migrateData - INFO - Vo name vo.dariah.eu with id (30,) -2022-11-07 11:04:04,428 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,428 - migrateData - INFO - Vo name goc.egi.eu with id (51,) -2022-11-07 11:04:04,428 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,429 - migrateData - INFO - Vo name training.egi.eu with id (32,) -2022-11-07 11:04:04,429 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,431 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,431 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,432 - migrateData - INFO - Vo name cloud.grnet.gr with id (41,) -2022-11-07 11:04:04,433 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) -2022-11-07 11:04:04,434 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) -2022-11-07 11:04:04,435 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) -2022-11-07 11:04:04,435 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) -2022-11-07 11:04:04,436 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) -2022-11-07 11:04:04,436 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,437 - migrateData - INFO - Vo name test-TRIPLE with id (45,) -2022-11-07 11:04:04,437 - migrateData - INFO - Vo name openEO_test with id (56,) -2022-11-07 11:04:04,438 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id (46,) -2022-11-07 11:04:04,438 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,439 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,439 - migrateData - INFO - Vo name checkin-integration with id (31,) -2022-11-07 11:04:04,440 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,440 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,440 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,441 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,441 - migrateData - INFO - Vo name eosc-synergy.eu with id (48,) -2022-11-07 11:04:04,441 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) -2022-11-07 11:04:04,441 - migrateData - INFO - Vo name worsica.vo.incd.pt with id (47,) -2022-11-07 11:04:04,442 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,442 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,442 - migrateData - INFO - Vo name vo.access.egi.eu with id (54,) -2022-11-07 11:04:04,443 - migrateData - INFO - Vo name vo.access.egi.eu with id (54,) -2022-11-07 11:04:04,443 - migrateData - INFO - Vo name vo.access.egi.eu with id (54,) -2022-11-07 11:04:04,443 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,445 - migrateData - INFO - Vo name goc.egi.eu with id (51,) -2022-11-07 11:04:04,446 - migrateData - INFO - Vo name AMB with id (37,) -2022-11-07 11:04:04,447 - migrateData - INFO - Vo name goc.egi.eu with id (51,) -2022-11-07 11:04:04,447 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) -2022-11-07 11:04:04,448 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) -2022-11-07 11:04:04,448 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,448 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,452 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,452 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,453 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) -2022-11-07 11:04:04,454 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) -2022-11-07 11:04:04,454 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) -2022-11-07 11:04:04,455 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) -2022-11-07 11:04:04,456 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id (40,) -2022-11-07 11:04:04,457 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) -2022-11-07 11:04:04,457 - migrateData - INFO - Vo name goc.egi.eu with id (51,) -2022-11-07 11:04:04,457 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) -2022-11-07 11:04:04,458 - migrateData - INFO - Vo name vo.operas-eu.org with id (53,) -2022-11-07 11:04:04,459 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,459 - migrateData - INFO - Vo name openEO_test with id (56,) -2022-11-07 11:04:04,460 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,460 - migrateData - INFO - Vo name openEO_test with id (56,) -2022-11-07 11:04:04,461 - migrateData - INFO - Vo name vo.example.org with id (50,) -2022-11-07 11:04:04,461 - migrateData - INFO - Vo name openEO_test with id (56,) -2022-11-07 11:04:14,031 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:04:14,032 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:04:14,033 - migrateData - INFO - Vo name WP5 with id 34 -2022-11-07 11:04:14,033 - migrateData - INFO - Vo name WP5 with id 34 -2022-11-07 11:04:14,034 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:04:14,034 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:04:14,035 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:04:14,036 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:04:14,037 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,038 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,038 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,039 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:04:14,040 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,041 - migrateData - INFO - Vo name onboarding.egi.eu with id 55 -2022-11-07 11:04:14,041 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,042 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,042 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,042 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,043 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:04:14,043 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,043 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,044 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,044 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:04:14,044 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,045 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:04:14,045 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,045 - migrateData - INFO - Vo name rcauth.eu with id 43 -2022-11-07 11:04:14,046 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,046 - migrateData - INFO - Vo name eiscat.se with id 52 -2022-11-07 11:04:14,047 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:04:14,047 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:04:14,048 - migrateData - INFO - Vo name test-sso-confluence with id 39 -2022-11-07 11:04:14,048 - migrateData - INFO - Vo name test-sso-mailman with id 38 -2022-11-07 11:04:14,050 - migrateData - INFO - Vo name test-sso-confluence with id 39 -2022-11-07 11:04:14,050 - migrateData - INFO - Vo name test-sso-mailman with id 38 -2022-11-07 11:04:14,051 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,051 - migrateData - INFO - Vo name rcauth.eu with id 43 -2022-11-07 11:04:14,051 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:04:14,052 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,052 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:04:14,052 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:04:14,052 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:04:14,053 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 -2022-11-07 11:04:14,053 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:04:14,053 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:04:14,054 - migrateData - INFO - Vo name vo.parent.example.eu with id 44 -2022-11-07 11:04:14,054 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,055 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:04:14,058 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,058 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,058 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:04:14,059 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,059 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:04:14,059 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,060 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:04:14,060 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,060 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,061 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 -2022-11-07 11:04:14,061 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,062 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,063 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,064 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,065 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,065 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,066 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,067 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,067 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,068 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,069 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:04:14,069 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,070 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,070 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,070 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,071 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,071 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:04:14,071 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,072 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:04:14,072 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,072 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:04:14,073 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,074 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,074 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,074 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:04:14,074 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:04:14,075 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:04:14,075 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:04:14,075 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:04:14,076 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,077 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:04:14,078 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,080 - migrateData - INFO - Vo name test-TRIPLE with id 45 -2022-11-07 11:04:14,085 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:04:14,089 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 46 -2022-11-07 11:04:14,090 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,091 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,092 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:04:14,093 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,094 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,095 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,095 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,097 - migrateData - INFO - Vo name eosc-synergy.eu with id 48 -2022-11-07 11:04:14,098 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:04:14,098 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:04:14,098 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,099 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,100 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:04:14,100 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:04:14,101 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:04:14,101 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,101 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:04:14,105 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:04:14,105 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:04:14,106 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:04:14,106 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:04:14,107 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,107 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,107 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,108 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,108 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:04:14,109 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:04:14,109 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:04:14,111 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:04:14,111 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:04:14,118 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:04:14,120 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:04:14,121 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:04:14,123 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:04:14,123 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,124 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:04:14,124 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,125 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:04:14,125 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:04:14,126 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:09:08,416 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:09:28,319 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:11:38,904 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:12:00,789 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:12:40,619 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:13:29,010 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:13:48,927 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:13:48,928 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:13:48,928 - migrateData - INFO - Vo name WP5 with id 34 -2022-11-07 11:13:48,929 - migrateData - INFO - Vo name WP5 with id 34 -2022-11-07 11:13:48,930 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:13:48,930 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:13:48,931 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:13:48,932 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:13:48,932 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,932 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,933 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,933 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:13:48,933 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,934 - migrateData - INFO - Vo name onboarding.egi.eu with id 55 -2022-11-07 11:13:48,934 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,934 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,935 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,935 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,936 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:13:48,936 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,937 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,937 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,937 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:13:48,938 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,938 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:13:48,938 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,939 - migrateData - INFO - Vo name rcauth.eu with id 43 -2022-11-07 11:13:48,939 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,939 - migrateData - INFO - Vo name eiscat.se with id 52 -2022-11-07 11:13:48,940 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:13:48,941 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:13:48,941 - migrateData - INFO - Vo name test-sso-confluence with id 39 -2022-11-07 11:13:48,941 - migrateData - INFO - Vo name test-sso-mailman with id 38 -2022-11-07 11:13:48,942 - migrateData - INFO - Vo name test-sso-confluence with id 39 -2022-11-07 11:13:48,942 - migrateData - INFO - Vo name test-sso-mailman with id 38 -2022-11-07 11:13:48,942 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,943 - migrateData - INFO - Vo name rcauth.eu with id 43 -2022-11-07 11:13:48,944 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:13:48,944 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,944 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:13:48,945 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:13:48,946 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:13:48,946 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 -2022-11-07 11:13:48,946 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:13:48,947 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:13:48,947 - migrateData - INFO - Vo name vo.parent.example.eu with id 44 -2022-11-07 11:13:48,948 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,949 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:13:48,950 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,951 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,953 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:13:48,953 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,954 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:13:48,954 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,954 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:13:48,955 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,955 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,961 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 -2022-11-07 11:13:48,961 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,962 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,962 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,963 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,963 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,963 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,963 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,965 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,966 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,967 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,967 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:13:48,967 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,968 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,968 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,968 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,968 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,969 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:13:48,969 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,969 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:13:48,970 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,970 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:13:48,971 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,972 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,972 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,973 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:13:48,973 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:13:48,974 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:13:48,974 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:13:48,975 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:13:48,976 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,976 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:13:48,977 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,977 - migrateData - INFO - Vo name test-TRIPLE with id 45 -2022-11-07 11:13:48,978 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:13:48,978 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 46 -2022-11-07 11:13:48,978 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,979 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,979 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:13:48,979 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,980 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,980 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,980 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,984 - migrateData - INFO - Vo name eosc-synergy.eu with id 48 -2022-11-07 11:13:48,985 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:13:48,986 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:13:48,987 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,988 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,988 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:13:48,989 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:13:48,989 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:13:48,990 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,990 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:13:48,991 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:13:48,991 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:13:48,992 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:13:48,992 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:13:48,992 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,993 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,993 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,993 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:48,994 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:13:48,994 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:13:48,995 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:13:48,996 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:13:48,999 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:13:49,000 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:13:49,000 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:13:49,001 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:13:49,002 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:13:49,003 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:49,004 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:13:49,004 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:49,005 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:13:49,006 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:13:49,007 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:14:16,464 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:14:16,464 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:14:16,465 - migrateData - INFO - Vo name WP5 with id 34 -2022-11-07 11:14:16,466 - migrateData - INFO - Vo name WP5 with id 34 -2022-11-07 11:14:16,468 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:14:16,468 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:14:16,469 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:14:16,469 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:14:16,470 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,470 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,470 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,471 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:14:16,471 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,472 - migrateData - INFO - Vo name onboarding.egi.eu with id 55 -2022-11-07 11:14:16,472 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,473 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,473 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,473 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,474 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:14:16,474 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,474 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,474 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,475 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:14:16,475 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,475 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:14:16,476 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,476 - migrateData - INFO - Vo name rcauth.eu with id 43 -2022-11-07 11:14:16,476 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,477 - migrateData - INFO - Vo name eiscat.se with id 52 -2022-11-07 11:14:16,477 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:14:16,477 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:14:16,477 - migrateData - INFO - Vo name test-sso-confluence with id 39 -2022-11-07 11:14:16,478 - migrateData - INFO - Vo name test-sso-mailman with id 38 -2022-11-07 11:14:16,478 - migrateData - INFO - Vo name test-sso-confluence with id 39 -2022-11-07 11:14:16,478 - migrateData - INFO - Vo name test-sso-mailman with id 38 -2022-11-07 11:14:16,479 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,479 - migrateData - INFO - Vo name rcauth.eu with id 43 -2022-11-07 11:14:16,479 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:14:16,480 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,480 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:14:16,481 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:14:16,481 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:14:16,482 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 -2022-11-07 11:14:16,482 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:14:16,482 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:14:16,483 - migrateData - INFO - Vo name vo.parent.example.eu with id 44 -2022-11-07 11:14:16,484 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,484 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:14:16,484 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,485 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,485 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:14:16,485 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,486 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:14:16,486 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,487 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:14:16,487 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,487 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,487 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 -2022-11-07 11:14:16,488 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,488 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,489 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,489 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,490 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,490 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,491 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,492 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,492 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,493 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,493 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:14:16,493 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,494 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,494 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,495 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,495 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,495 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:14:16,496 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,496 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:14:16,496 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,497 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:14:16,497 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,498 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,498 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,498 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:14:16,500 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:14:16,500 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:14:16,501 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:14:16,501 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:14:16,502 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,503 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:14:16,503 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,503 - migrateData - INFO - Vo name test-TRIPLE with id 45 -2022-11-07 11:14:16,504 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:14:16,504 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 46 -2022-11-07 11:14:16,504 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,505 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,505 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:14:16,505 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,506 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,506 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,506 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,506 - migrateData - INFO - Vo name eosc-synergy.eu with id 48 -2022-11-07 11:14:16,507 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:14:16,507 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:14:16,507 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,508 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,508 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:14:16,509 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:14:16,509 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:14:16,510 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,510 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:14:16,511 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:14:16,511 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:14:16,511 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:14:16,512 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:14:16,512 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,513 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,514 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,514 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,515 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:14:16,516 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:14:16,517 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:14:16,519 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:14:16,520 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:14:16,521 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:14:16,521 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:14:16,522 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:14:16,522 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:14:16,523 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,523 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:14:16,524 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,524 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:14:16,524 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:14:16,524 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:14:16,525 - pgConnector - ERROR - relation "members" does not exist -2022-11-07 11:19:10,834 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:19:10,834 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:19:10,835 - migrateData - INFO - Vo name WP5 with id 34 -2022-11-07 11:19:10,835 - migrateData - INFO - Vo name WP5 with id 34 -2022-11-07 11:19:10,836 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:19:10,837 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:19:10,838 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:19:10,838 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:19:10,839 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,839 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,840 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,840 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:19:10,841 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,842 - migrateData - INFO - Vo name onboarding.egi.eu with id 55 -2022-11-07 11:19:10,842 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,842 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,843 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,843 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,843 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:19:10,844 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,844 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,844 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,845 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:19:10,845 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,845 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:19:10,851 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,852 - migrateData - INFO - Vo name rcauth.eu with id 43 -2022-11-07 11:19:10,853 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,854 - migrateData - INFO - Vo name eiscat.se with id 52 -2022-11-07 11:19:10,855 - migrateData - INFO - Vo name WP5-all with id 33 -2022-11-07 11:19:10,855 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:19:10,856 - migrateData - INFO - Vo name test-sso-confluence with id 39 -2022-11-07 11:19:10,856 - migrateData - INFO - Vo name test-sso-mailman with id 38 -2022-11-07 11:19:10,857 - migrateData - INFO - Vo name test-sso-confluence with id 39 -2022-11-07 11:19:10,857 - migrateData - INFO - Vo name test-sso-mailman with id 38 -2022-11-07 11:19:10,858 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,858 - migrateData - INFO - Vo name rcauth.eu with id 43 -2022-11-07 11:19:10,858 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:19:10,859 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,859 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:19:10,860 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:19:10,861 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:19:10,861 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 -2022-11-07 11:19:10,862 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:19:10,862 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:19:10,863 - migrateData - INFO - Vo name vo.parent.example.eu with id 44 -2022-11-07 11:19:10,863 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,864 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:19:10,864 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,864 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,865 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:19:10,865 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,865 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:19:10,866 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,866 - migrateData - INFO - Vo name vo.geoss.eu with id 29 -2022-11-07 11:19:10,866 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,866 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,867 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 42 -2022-11-07 11:19:10,867 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,867 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,868 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,868 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,869 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,869 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,870 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,872 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,872 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,873 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,873 - migrateData - INFO - Vo name radio-observatory with id 49 -2022-11-07 11:19:10,873 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,874 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,874 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,875 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,875 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,875 - migrateData - INFO - Vo name vo.dariah.eu with id 30 -2022-11-07 11:19:10,876 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,876 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:19:10,877 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,877 - migrateData - INFO - Vo name training.egi.eu with id 32 -2022-11-07 11:19:10,877 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,878 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,879 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,879 - migrateData - INFO - Vo name cloud.grnet.gr with id 41 -2022-11-07 11:19:10,880 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:19:10,880 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:19:10,881 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:19:10,881 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:19:10,882 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,883 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:19:10,883 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,884 - migrateData - INFO - Vo name test-TRIPLE with id 45 -2022-11-07 11:19:10,884 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:19:10,884 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 46 -2022-11-07 11:19:10,885 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,885 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,886 - migrateData - INFO - Vo name checkin-integration with id 31 -2022-11-07 11:19:10,886 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,886 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,887 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,887 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,887 - migrateData - INFO - Vo name eosc-synergy.eu with id 48 -2022-11-07 11:19:10,887 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:19:10,888 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 47 -2022-11-07 11:19:10,888 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,888 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,889 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:19:10,889 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:19:10,889 - migrateData - INFO - Vo name vo.access.egi.eu with id 54 -2022-11-07 11:19:10,890 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,890 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:19:10,890 - migrateData - INFO - Vo name AMB with id 37 -2022-11-07 11:19:10,891 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:19:10,891 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:19:10,891 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:19:10,891 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,892 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,892 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,892 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,893 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:19:10,893 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:19:10,894 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:19:10,895 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:19:10,895 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 40 -2022-11-07 11:19:10,895 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:19:10,896 - migrateData - INFO - Vo name goc.egi.eu with id 51 -2022-11-07 11:19:10,896 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:19:10,897 - migrateData - INFO - Vo name vo.operas-eu.org with id 53 -2022-11-07 11:19:10,897 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,897 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:19:10,898 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,898 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 11:19:10,898 - migrateData - INFO - Vo name vo.example.org with id 50 -2022-11-07 11:19:10,899 - migrateData - INFO - Vo name openEO_test with id 56 -2022-11-07 13:17:24,029 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist -2022-11-07 13:17:44,578 - pgConnector - ERROR - relation "communities_info" does not exist -2022-11-07 13:18:48,243 - pgConnector - ERROR - multiple primary keys for table "communities_info" are not allowed -LINE 61: PRIMARY KEY(id) - ^ -2022-11-07 13:19:07,287 - pgConnector - ERROR - syntax error at or near ")" -LINE 61: ); - ^ -2022-11-07 13:19:12,826 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist -2022-11-07 13:21:06,042 - pgConnector - ERROR - syntax error at or near ")" -LINE 62: ); - ^ -2022-11-07 13:21:15,019 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist -2022-11-07 13:22:52,983 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist -2022-11-07 13:23:31,264 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist -2022-11-07 13:24:10,402 - pgConnector - ERROR - column "asd" referenced in foreign key constraint does not exist -2022-11-07 13:25:03,488 - pgConnector - ERROR - column "id" referenced in foreign key constraint does not exist -2022-11-07 13:25:15,710 - pgConnector - ERROR - column "community_id" referenced in foreign key constraint does not exist -2022-11-07 13:26:25,621 - migrateData - INFO - No new data found -2022-11-07 13:27:35,516 - migrateData - INFO - No new data found -2022-11-07 13:27:51,331 - migrateData - INFO - No new data found -2022-11-07 13:28:17,458 - migrateData - INFO - No new data found -2022-11-07 13:28:55,822 - migrateData - INFO - No new data found -2022-11-07 13:29:53,828 - pgConnector - INFO - 1 -2022-11-07 13:29:53,828 - migrateData - INFO - 1 item -2022-11-07 13:29:53,829 - pgConnector - ERROR - column "id" does not exist -LINE 1: ...mmunity_id, created) VALUES ('1', '2018-07-24') RETURNING id - ^ -2022-11-07 13:30:37,767 - pgConnector - ERROR - duplicate key value violates unique constraint "idx_communities_info" -DETAIL: Key (name)=(vo.geoss.eu) already exists. -2022-11-07 13:31:04,302 - pgConnector - INFO - 3 -2022-11-07 13:31:04,302 - migrateData - INFO - 3 item -2022-11-07 13:31:04,305 - pgConnector - INFO - 4 -2022-11-07 13:31:04,305 - migrateData - INFO - 4 item -2022-11-07 13:31:04,307 - pgConnector - INFO - 5 -2022-11-07 13:31:04,307 - migrateData - INFO - 5 item -2022-11-07 13:31:04,309 - pgConnector - INFO - 6 -2022-11-07 13:31:04,309 - migrateData - INFO - 6 item -2022-11-07 13:31:04,312 - pgConnector - INFO - 7 -2022-11-07 13:31:04,312 - migrateData - INFO - 7 item -2022-11-07 13:31:04,314 - pgConnector - INFO - 8 -2022-11-07 13:31:04,314 - migrateData - INFO - 8 item -2022-11-07 13:31:04,316 - pgConnector - INFO - 9 -2022-11-07 13:31:04,316 - migrateData - INFO - 9 item -2022-11-07 13:31:04,318 - pgConnector - INFO - 10 -2022-11-07 13:31:04,318 - migrateData - INFO - 10 item -2022-11-07 13:31:04,320 - pgConnector - INFO - 11 -2022-11-07 13:31:04,320 - migrateData - INFO - 11 item -2022-11-07 13:31:04,323 - pgConnector - INFO - 12 -2022-11-07 13:31:04,323 - migrateData - INFO - 12 item -2022-11-07 13:31:04,325 - pgConnector - INFO - 13 -2022-11-07 13:31:04,325 - migrateData - INFO - 13 item -2022-11-07 13:31:04,326 - pgConnector - INFO - 14 -2022-11-07 13:31:04,327 - migrateData - INFO - 14 item -2022-11-07 13:31:04,328 - pgConnector - INFO - 15 -2022-11-07 13:31:04,329 - migrateData - INFO - 15 item -2022-11-07 13:31:04,331 - pgConnector - INFO - 16 -2022-11-07 13:31:04,331 - migrateData - INFO - 16 item -2022-11-07 13:31:04,333 - pgConnector - INFO - 17 -2022-11-07 13:31:04,333 - migrateData - INFO - 17 item -2022-11-07 13:31:04,335 - pgConnector - INFO - 18 -2022-11-07 13:31:04,335 - migrateData - INFO - 18 item -2022-11-07 13:31:04,336 - pgConnector - INFO - 19 -2022-11-07 13:31:04,337 - migrateData - INFO - 19 item -2022-11-07 13:31:04,339 - pgConnector - INFO - 20 -2022-11-07 13:31:04,339 - migrateData - INFO - 20 item -2022-11-07 13:31:04,340 - pgConnector - INFO - 21 -2022-11-07 13:31:04,341 - migrateData - INFO - 21 item -2022-11-07 13:31:04,343 - pgConnector - INFO - 22 -2022-11-07 13:31:04,344 - migrateData - INFO - 22 item -2022-11-07 13:31:04,345 - pgConnector - INFO - 23 -2022-11-07 13:31:04,345 - migrateData - INFO - 23 item -2022-11-07 13:31:04,347 - pgConnector - INFO - 24 -2022-11-07 13:31:04,347 - migrateData - INFO - 24 item -2022-11-07 13:31:04,348 - pgConnector - INFO - 25 -2022-11-07 13:31:04,349 - migrateData - INFO - 25 item -2022-11-07 13:31:04,350 - pgConnector - INFO - 26 -2022-11-07 13:31:04,350 - migrateData - INFO - 26 item -2022-11-07 13:31:04,352 - pgConnector - INFO - 27 -2022-11-07 13:31:04,352 - migrateData - INFO - 27 item -2022-11-07 13:31:04,355 - pgConnector - INFO - 28 -2022-11-07 13:31:04,355 - migrateData - INFO - 28 item -2022-11-07 13:31:04,357 - pgConnector - INFO - 29 -2022-11-07 13:31:04,357 - migrateData - INFO - 29 item -2022-11-07 13:31:04,359 - pgConnector - INFO - 30 -2022-11-07 13:31:04,359 - migrateData - INFO - 30 item -2022-11-07 13:31:04,360 - migrateData - INFO - 28 vos created -2022-11-07 13:42:33,130 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 -2022-11-07 13:42:33,131 - migrateData - INFO - Vo name WP5-all with id 7 -2022-11-07 13:42:33,131 - migrateData - INFO - Vo name WP5 with id 8 -2022-11-07 13:42:33,132 - migrateData - INFO - Vo name WP5 with id 8 -2022-11-07 13:42:33,132 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 -2022-11-07 13:42:33,133 - migrateData - INFO - Vo name goc.egi.eu with id 25 -2022-11-07 13:42:33,133 - migrateData - INFO - Vo name AMB with id 11 -2022-11-07 13:42:33,134 - migrateData - INFO - Vo name WP5-all with id 7 -2022-11-07 13:42:33,134 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,134 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,135 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,135 - migrateData - INFO - Vo name vo.geoss.eu with id 3 -2022-11-07 13:42:33,136 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,136 - migrateData - INFO - Vo name onboarding.egi.eu with id 29 -2022-11-07 13:42:33,137 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,139 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,140 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,141 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,141 - migrateData - INFO - Vo name vo.access.egi.eu with id 28 -2022-11-07 13:42:33,141 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,142 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,142 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,143 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 -2022-11-07 13:42:33,143 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,144 - migrateData - INFO - Vo name vo.dariah.eu with id 4 -2022-11-07 13:42:33,144 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,145 - migrateData - INFO - Vo name rcauth.eu with id 17 -2022-11-07 13:42:33,145 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,146 - migrateData - INFO - Vo name eiscat.se with id 26 -2022-11-07 13:42:33,146 - migrateData - INFO - Vo name WP5-all with id 7 -2022-11-07 13:42:33,147 - migrateData - INFO - Vo name vo.geoss.eu with id 3 -2022-11-07 13:42:33,147 - migrateData - INFO - Vo name test-sso-confluence with id 13 -2022-11-07 13:42:33,147 - migrateData - INFO - Vo name test-sso-mailman with id 12 -2022-11-07 13:42:33,148 - migrateData - INFO - Vo name test-sso-confluence with id 13 -2022-11-07 13:42:33,148 - migrateData - INFO - Vo name test-sso-mailman with id 12 -2022-11-07 13:42:33,148 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,149 - migrateData - INFO - Vo name rcauth.eu with id 17 -2022-11-07 13:42:33,149 - migrateData - INFO - Vo name vo.geoss.eu with id 3 -2022-11-07 13:42:33,149 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,150 - migrateData - INFO - Vo name cloud.grnet.gr with id 15 -2022-11-07 13:42:33,150 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 -2022-11-07 13:42:33,151 - migrateData - INFO - Vo name cloud.grnet.gr with id 15 -2022-11-07 13:42:33,151 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 16 -2022-11-07 13:42:33,152 - migrateData - INFO - Vo name AMB with id 11 -2022-11-07 13:42:33,152 - migrateData - INFO - Vo name goc.egi.eu with id 25 -2022-11-07 13:42:33,152 - migrateData - INFO - Vo name vo.parent.example.eu with id 18 -2022-11-07 13:42:33,153 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,153 - migrateData - INFO - Vo name vo.geoss.eu with id 3 -2022-11-07 13:42:33,154 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,154 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,154 - migrateData - INFO - Vo name vo.dariah.eu with id 4 -2022-11-07 13:42:33,155 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,157 - migrateData - INFO - Vo name vo.dariah.eu with id 4 -2022-11-07 13:42:33,158 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,158 - migrateData - INFO - Vo name vo.geoss.eu with id 3 -2022-11-07 13:42:33,159 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,159 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,159 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 16 -2022-11-07 13:42:33,160 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,160 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,161 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,161 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,161 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,162 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,162 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,163 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,164 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,164 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,165 - migrateData - INFO - Vo name radio-observatory with id 23 -2022-11-07 13:42:33,166 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,166 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,166 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,167 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,167 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,167 - migrateData - INFO - Vo name vo.dariah.eu with id 4 -2022-11-07 13:42:33,167 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,168 - migrateData - INFO - Vo name goc.egi.eu with id 25 -2022-11-07 13:42:33,168 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,168 - migrateData - INFO - Vo name training.egi.eu with id 6 -2022-11-07 13:42:33,169 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,170 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,170 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,171 - migrateData - INFO - Vo name cloud.grnet.gr with id 15 -2022-11-07 13:42:33,172 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 -2022-11-07 13:42:33,172 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 -2022-11-07 13:42:33,173 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 -2022-11-07 13:42:33,173 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 -2022-11-07 13:42:33,174 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,174 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 -2022-11-07 13:42:33,175 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,175 - migrateData - INFO - Vo name test-TRIPLE with id 19 -2022-11-07 13:42:33,176 - migrateData - INFO - Vo name openEO_test with id 30 -2022-11-07 13:42:33,176 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 20 -2022-11-07 13:42:33,177 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,177 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,178 - migrateData - INFO - Vo name checkin-integration with id 5 -2022-11-07 13:42:33,178 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,178 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,179 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,179 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,180 - migrateData - INFO - Vo name eosc-synergy.eu with id 22 -2022-11-07 13:42:33,181 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 -2022-11-07 13:42:33,182 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 21 -2022-11-07 13:42:33,182 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,182 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,183 - migrateData - INFO - Vo name vo.access.egi.eu with id 28 -2022-11-07 13:42:33,183 - migrateData - INFO - Vo name vo.access.egi.eu with id 28 -2022-11-07 13:42:33,183 - migrateData - INFO - Vo name vo.access.egi.eu with id 28 -2022-11-07 13:42:33,184 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,184 - migrateData - INFO - Vo name goc.egi.eu with id 25 -2022-11-07 13:42:33,185 - migrateData - INFO - Vo name AMB with id 11 -2022-11-07 13:42:33,185 - migrateData - INFO - Vo name goc.egi.eu with id 25 -2022-11-07 13:42:33,186 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 -2022-11-07 13:42:33,186 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 -2022-11-07 13:42:33,187 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,187 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,188 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,188 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,189 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 -2022-11-07 13:42:33,189 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 -2022-11-07 13:42:33,190 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 -2022-11-07 13:42:33,191 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 -2022-11-07 13:42:33,192 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 14 -2022-11-07 13:42:33,192 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 -2022-11-07 13:42:33,193 - migrateData - INFO - Vo name goc.egi.eu with id 25 -2022-11-07 13:42:33,193 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 -2022-11-07 13:42:33,194 - migrateData - INFO - Vo name vo.operas-eu.org with id 27 -2022-11-07 13:42:33,194 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,194 - migrateData - INFO - Vo name openEO_test with id 30 -2022-11-07 13:42:33,195 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,195 - migrateData - INFO - Vo name openEO_test with id 30 -2022-11-07 13:42:33,195 - migrateData - INFO - Vo name vo.example.org with id 24 -2022-11-07 13:42:33,196 - migrateData - INFO - Vo name openEO_test with id 30 diff --git a/data_migrations/log/metricsMigrate.log.2022-11-08 b/data_migrations/log/metricsMigrate.log.2022-11-08 deleted file mode 100644 index a5cb42c..0000000 --- a/data_migrations/log/metricsMigrate.log.2022-11-08 +++ /dev/null @@ -1,191 +0,0 @@ -2022-11-08 16:30:44,384 - pgConnector - ERROR - FATAL: password authentication failed for user "rciam" -2022-11-08 16:36:28,497 - pgConnector - INFO - 1 -2022-11-08 16:36:28,497 - migrateData - INFO - 1 item -2022-11-08 16:36:28,500 - pgConnector - INFO - 2 -2022-11-08 16:36:28,500 - migrateData - INFO - 2 item -2022-11-08 16:36:28,502 - pgConnector - INFO - 3 -2022-11-08 16:36:28,502 - migrateData - INFO - 3 item -2022-11-08 16:36:28,505 - pgConnector - INFO - 4 -2022-11-08 16:36:28,505 - migrateData - INFO - 4 item -2022-11-08 16:36:28,507 - pgConnector - INFO - 5 -2022-11-08 16:36:28,508 - migrateData - INFO - 5 item -2022-11-08 16:36:28,509 - pgConnector - INFO - 6 -2022-11-08 16:36:28,510 - migrateData - INFO - 6 item -2022-11-08 16:36:28,511 - pgConnector - INFO - 7 -2022-11-08 16:36:28,512 - migrateData - INFO - 7 item -2022-11-08 16:36:28,514 - pgConnector - INFO - 8 -2022-11-08 16:36:28,514 - migrateData - INFO - 8 item -2022-11-08 16:36:28,515 - pgConnector - INFO - 9 -2022-11-08 16:36:28,516 - migrateData - INFO - 9 item -2022-11-08 16:36:28,518 - pgConnector - INFO - 10 -2022-11-08 16:36:28,518 - migrateData - INFO - 10 item -2022-11-08 16:36:28,521 - pgConnector - INFO - 11 -2022-11-08 16:36:28,521 - migrateData - INFO - 11 item -2022-11-08 16:36:28,522 - pgConnector - INFO - 12 -2022-11-08 16:36:28,523 - migrateData - INFO - 12 item -2022-11-08 16:36:28,524 - pgConnector - INFO - 13 -2022-11-08 16:36:28,525 - migrateData - INFO - 13 item -2022-11-08 16:36:28,528 - pgConnector - INFO - 14 -2022-11-08 16:36:28,528 - migrateData - INFO - 14 item -2022-11-08 16:36:28,530 - pgConnector - INFO - 15 -2022-11-08 16:36:28,530 - migrateData - INFO - 15 item -2022-11-08 16:36:28,532 - pgConnector - INFO - 16 -2022-11-08 16:36:28,533 - migrateData - INFO - 16 item -2022-11-08 16:36:28,534 - pgConnector - INFO - 17 -2022-11-08 16:36:28,534 - migrateData - INFO - 17 item -2022-11-08 16:36:28,536 - pgConnector - INFO - 18 -2022-11-08 16:36:28,536 - migrateData - INFO - 18 item -2022-11-08 16:36:28,538 - pgConnector - INFO - 19 -2022-11-08 16:36:28,539 - migrateData - INFO - 19 item -2022-11-08 16:36:28,542 - pgConnector - INFO - 20 -2022-11-08 16:36:28,542 - migrateData - INFO - 20 item -2022-11-08 16:36:28,544 - pgConnector - INFO - 21 -2022-11-08 16:36:28,544 - migrateData - INFO - 21 item -2022-11-08 16:36:28,546 - pgConnector - INFO - 22 -2022-11-08 16:36:28,547 - migrateData - INFO - 22 item -2022-11-08 16:36:28,549 - pgConnector - INFO - 23 -2022-11-08 16:36:28,549 - migrateData - INFO - 23 item -2022-11-08 16:36:28,551 - pgConnector - INFO - 24 -2022-11-08 16:36:28,552 - migrateData - INFO - 24 item -2022-11-08 16:36:28,554 - pgConnector - INFO - 25 -2022-11-08 16:36:28,554 - migrateData - INFO - 25 item -2022-11-08 16:36:28,557 - pgConnector - INFO - 26 -2022-11-08 16:36:28,557 - migrateData - INFO - 26 item -2022-11-08 16:36:28,559 - pgConnector - INFO - 27 -2022-11-08 16:36:28,559 - migrateData - INFO - 27 item -2022-11-08 16:36:28,562 - pgConnector - INFO - 28 -2022-11-08 16:36:28,562 - migrateData - INFO - 28 item -2022-11-08 16:36:28,563 - migrateData - INFO - 28 vos created -2022-11-08 16:36:38,736 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-08 16:36:38,736 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-08 16:36:38,737 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-08 16:36:38,737 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-08 16:36:38,738 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-08 16:36:38,739 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-08 16:36:38,739 - migrateData - INFO - Vo name AMB with id 9 -2022-11-08 16:36:38,740 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-08 16:36:38,741 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,742 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,742 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,743 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-08 16:36:38,744 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,744 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-08 16:36:38,745 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,745 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,746 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,746 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,747 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-08 16:36:38,747 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,747 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,748 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,748 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-08 16:36:38,749 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,749 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-08 16:36:38,750 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,750 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-08 16:36:38,751 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,752 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-08 16:36:38,752 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-08 16:36:38,753 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-08 16:36:38,754 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-08 16:36:38,754 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-08 16:36:38,755 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-08 16:36:38,755 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-08 16:36:38,756 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,756 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-08 16:36:38,757 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-08 16:36:38,758 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,758 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-08 16:36:38,759 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-08 16:36:38,760 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-08 16:36:38,760 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-08 16:36:38,761 - migrateData - INFO - Vo name AMB with id 9 -2022-11-08 16:36:38,761 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-08 16:36:38,762 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-08 16:36:38,763 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,763 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-08 16:36:38,764 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,764 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,765 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-08 16:36:38,766 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,766 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-08 16:36:38,767 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,767 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-08 16:36:38,768 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,768 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,769 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-08 16:36:38,769 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,770 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,770 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,771 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,772 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,772 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,773 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,774 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,774 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,775 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,775 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-08 16:36:38,776 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,776 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,777 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,777 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,778 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,778 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-08 16:36:38,779 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,779 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-08 16:36:38,780 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,780 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-08 16:36:38,780 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,781 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,782 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,782 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-08 16:36:38,783 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-08 16:36:38,783 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-08 16:36:38,784 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-08 16:36:38,784 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-08 16:36:38,786 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,787 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-08 16:36:38,788 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,788 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-08 16:36:38,789 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-08 16:36:38,789 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-08 16:36:38,790 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,791 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,791 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-08 16:36:38,792 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,792 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,793 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,793 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,794 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-08 16:36:38,794 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-08 16:36:38,795 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-08 16:36:38,795 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,796 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,796 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-08 16:36:38,798 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-08 16:36:38,799 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-08 16:36:38,800 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,801 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-08 16:36:38,802 - migrateData - INFO - Vo name AMB with id 9 -2022-11-08 16:36:38,802 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-08 16:36:38,803 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-08 16:36:38,803 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-08 16:36:38,804 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,804 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,805 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,806 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,807 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-08 16:36:38,808 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-08 16:36:38,809 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-08 16:36:38,810 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-08 16:36:38,812 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-08 16:36:38,813 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-08 16:36:38,814 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-08 16:36:38,815 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-08 16:36:38,816 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-08 16:36:38,817 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,818 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-08 16:36:38,819 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,820 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-08 16:36:38,820 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-08 16:36:38,821 - migrateData - INFO - Vo name openEO_test with id 28 diff --git a/data_migrations/log/metricsMigrate.log.2022-11-09 b/data_migrations/log/metricsMigrate.log.2022-11-09 deleted file mode 100644 index 88fa762..0000000 --- a/data_migrations/log/metricsMigrate.log.2022-11-09 +++ /dev/null @@ -1,324 +0,0 @@ -2022-11-09 12:09:14,465 - migrateData - INFO - No new data found -2022-11-09 12:09:14,511 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:09:14,512 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-09 12:09:14,512 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-09 12:09:14,512 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-09 12:09:14,513 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:09:14,513 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:09:14,513 - migrateData - INFO - Vo name AMB with id 9 -2022-11-09 12:09:14,514 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-09 12:09:14,514 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,514 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,514 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,514 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:09:14,515 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,515 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-09 12:09:14,516 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,516 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,517 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,517 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,518 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-09 12:09:14,518 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,519 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,519 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,519 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:09:14,520 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,520 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-09 12:09:14,520 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,521 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-09 12:09:14,521 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,522 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-09 12:09:14,523 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-09 12:09:14,523 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:09:14,524 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-09 12:09:14,524 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-09 12:09:14,525 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-09 12:09:14,525 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-09 12:09:14,526 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,526 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-09 12:09:14,527 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:09:14,527 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,528 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-09 12:09:14,528 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:09:14,529 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-09 12:09:14,529 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-09 12:09:14,529 - migrateData - INFO - Vo name AMB with id 9 -2022-11-09 12:09:14,530 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:09:14,530 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-09 12:09:14,531 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,531 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:09:14,531 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,532 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,532 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-09 12:09:14,533 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,534 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-09 12:09:14,534 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,535 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:09:14,536 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,536 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,537 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-09 12:09:14,538 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,539 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,540 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,541 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,541 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,543 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,543 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,546 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,546 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,550 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,551 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:09:14,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,553 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,553 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-09 12:09:14,553 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,553 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:09:14,553 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,554 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:09:14,554 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,557 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-09 12:09:14,558 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:09:14,558 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:09:14,559 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:09:14,559 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:09:14,560 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,560 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:09:14,560 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,561 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-09 12:09:14,561 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-09 12:09:14,561 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-09 12:09:14,562 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,562 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,562 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:09:14,562 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,563 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,563 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,563 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,563 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-09 12:09:14,564 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:09:14,564 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:09:14,564 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,564 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,565 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-09 12:09:14,565 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-09 12:09:14,565 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-09 12:09:14,566 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,566 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:09:14,566 - migrateData - INFO - Vo name AMB with id 9 -2022-11-09 12:09:14,567 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:09:14,567 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:09:14,567 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:09:14,567 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,568 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,569 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,570 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,570 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:09:14,571 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:09:14,571 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:09:14,573 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:09:14,573 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:09:14,574 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:09:14,574 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:09:14,575 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:09:14,576 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:09:14,577 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,577 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-09 12:09:14,578 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,578 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-09 12:09:14,578 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:09:14,579 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-09 12:13:36,294 - pgConnector - INFO - 1 -2022-11-09 12:13:36,294 - migrateData - INFO - 1 item -2022-11-09 12:13:36,297 - pgConnector - INFO - 2 -2022-11-09 12:13:36,297 - migrateData - INFO - 2 item -2022-11-09 12:13:36,309 - pgConnector - INFO - 3 -2022-11-09 12:13:36,310 - migrateData - INFO - 3 item -2022-11-09 12:13:36,314 - pgConnector - INFO - 4 -2022-11-09 12:13:36,314 - migrateData - INFO - 4 item -2022-11-09 12:13:36,316 - pgConnector - INFO - 5 -2022-11-09 12:13:36,317 - migrateData - INFO - 5 item -2022-11-09 12:13:36,322 - pgConnector - INFO - 6 -2022-11-09 12:13:36,323 - migrateData - INFO - 6 item -2022-11-09 12:13:36,326 - pgConnector - INFO - 7 -2022-11-09 12:13:36,326 - migrateData - INFO - 7 item -2022-11-09 12:13:36,329 - pgConnector - INFO - 8 -2022-11-09 12:13:36,329 - migrateData - INFO - 8 item -2022-11-09 12:13:36,332 - pgConnector - INFO - 9 -2022-11-09 12:13:36,335 - migrateData - INFO - 9 item -2022-11-09 12:13:36,337 - pgConnector - INFO - 10 -2022-11-09 12:13:36,338 - migrateData - INFO - 10 item -2022-11-09 12:13:36,341 - pgConnector - INFO - 11 -2022-11-09 12:13:36,343 - migrateData - INFO - 11 item -2022-11-09 12:13:36,347 - pgConnector - INFO - 12 -2022-11-09 12:13:36,348 - migrateData - INFO - 12 item -2022-11-09 12:13:36,352 - pgConnector - INFO - 13 -2022-11-09 12:13:36,352 - migrateData - INFO - 13 item -2022-11-09 12:13:36,355 - pgConnector - INFO - 14 -2022-11-09 12:13:36,356 - migrateData - INFO - 14 item -2022-11-09 12:13:36,361 - pgConnector - INFO - 15 -2022-11-09 12:13:36,362 - migrateData - INFO - 15 item -2022-11-09 12:13:36,366 - pgConnector - INFO - 16 -2022-11-09 12:13:36,367 - migrateData - INFO - 16 item -2022-11-09 12:13:36,370 - pgConnector - INFO - 17 -2022-11-09 12:13:36,372 - migrateData - INFO - 17 item -2022-11-09 12:13:36,375 - pgConnector - INFO - 18 -2022-11-09 12:13:36,385 - migrateData - INFO - 18 item -2022-11-09 12:13:36,389 - pgConnector - INFO - 19 -2022-11-09 12:13:36,390 - migrateData - INFO - 19 item -2022-11-09 12:13:36,392 - pgConnector - INFO - 20 -2022-11-09 12:13:36,393 - migrateData - INFO - 20 item -2022-11-09 12:13:36,398 - pgConnector - INFO - 21 -2022-11-09 12:13:36,399 - migrateData - INFO - 21 item -2022-11-09 12:13:36,402 - pgConnector - INFO - 22 -2022-11-09 12:13:36,404 - migrateData - INFO - 22 item -2022-11-09 12:13:36,407 - pgConnector - INFO - 23 -2022-11-09 12:13:36,408 - migrateData - INFO - 23 item -2022-11-09 12:13:36,412 - pgConnector - INFO - 24 -2022-11-09 12:13:36,414 - migrateData - INFO - 24 item -2022-11-09 12:13:36,417 - pgConnector - INFO - 25 -2022-11-09 12:13:36,418 - migrateData - INFO - 25 item -2022-11-09 12:13:36,420 - pgConnector - INFO - 26 -2022-11-09 12:13:36,422 - migrateData - INFO - 26 item -2022-11-09 12:13:36,424 - pgConnector - INFO - 27 -2022-11-09 12:13:36,425 - migrateData - INFO - 27 item -2022-11-09 12:13:36,429 - pgConnector - INFO - 28 -2022-11-09 12:13:36,431 - migrateData - INFO - 28 item -2022-11-09 12:13:36,433 - migrateData - INFO - 28 vos created -2022-11-09 12:13:36,442 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:13:36,444 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-09 12:13:36,445 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-09 12:13:36,450 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-09 12:13:36,452 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:13:36,458 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:13:36,462 - migrateData - INFO - Vo name AMB with id 9 -2022-11-09 12:13:36,463 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-09 12:13:36,463 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,464 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,464 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,464 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:13:36,465 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,466 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-09 12:13:36,466 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,466 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,467 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,467 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,467 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-09 12:13:36,468 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,469 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,469 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,471 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:13:36,471 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,473 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-09 12:13:36,474 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,475 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-09 12:13:36,476 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,477 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-09 12:13:36,479 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-09 12:13:36,480 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:13:36,482 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-09 12:13:36,483 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-09 12:13:36,485 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-09 12:13:36,487 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-09 12:13:36,488 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,490 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-09 12:13:36,493 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:13:36,493 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,494 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-09 12:13:36,495 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:13:36,496 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-09 12:13:36,497 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-09 12:13:36,498 - migrateData - INFO - Vo name AMB with id 9 -2022-11-09 12:13:36,499 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:13:36,500 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-09 12:13:36,501 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,502 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:13:36,503 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,503 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,503 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-09 12:13:36,504 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,504 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-09 12:13:36,504 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,504 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-09 12:13:36,504 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,505 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,505 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-09 12:13:36,505 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,505 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,506 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,506 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,507 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,507 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,507 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,508 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,508 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,508 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,509 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-09 12:13:36,509 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,509 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,509 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,510 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,511 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,513 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-09 12:13:36,514 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,514 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:13:36,515 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,516 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-09 12:13:36,516 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,519 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,520 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,521 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-09 12:13:36,522 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:13:36,523 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:13:36,524 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:13:36,524 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:13:36,525 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,526 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:13:36,526 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,527 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-09 12:13:36,528 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-09 12:13:36,528 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-09 12:13:36,529 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,529 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,529 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-09 12:13:36,530 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,530 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,531 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,531 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,531 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-09 12:13:36,532 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:13:36,532 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-09 12:13:36,533 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,533 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,533 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-09 12:13:36,534 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-09 12:13:36,534 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-09 12:13:36,535 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,535 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:13:36,536 - migrateData - INFO - Vo name AMB with id 9 -2022-11-09 12:13:36,537 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:13:36,537 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:13:36,537 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:13:36,538 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,538 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,539 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,539 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,540 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:13:36,540 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:13:36,541 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:13:36,542 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:13:36,543 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-09 12:13:36,544 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:13:36,544 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-09 12:13:36,545 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:13:36,546 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-09 12:13:36,546 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,547 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-09 12:13:36,547 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,547 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-09 12:13:36,548 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-09 12:13:36,549 - migrateData - INFO - Vo name openEO_test with id 28 diff --git a/data_migrations/log/metricsMigrate.log.2022-11-28 b/data_migrations/log/metricsMigrate.log.2022-11-28 deleted file mode 100644 index 4a9172c..0000000 --- a/data_migrations/log/metricsMigrate.log.2022-11-28 +++ /dev/null @@ -1,1497 +0,0 @@ -2022-11-28 10:01:36,834 - pgConnector - ERROR - syntax error at or near "CREATE" -LINE 118: CREATE UNIQUE INDEX IF NOT EXISTS idx_users ON users(hashedu... - ^ -2022-11-28 10:03:23,348 - pgConnector - ERROR - syntax error at or near ")" -LINE 137: ); - ^ -2022-11-28 10:48:56,232 - migrateData - INFO - No new data found -2022-11-28 10:48:56,266 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:48:56,267 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:48:56,267 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 10:48:56,267 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 10:48:56,268 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:48:56,269 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:48:56,270 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:48:56,270 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:48:56,270 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,271 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,272 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,273 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:48:56,275 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,276 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 10:48:56,277 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,278 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,279 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,280 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,281 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:48:56,283 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,284 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,285 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,287 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:48:56,287 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,289 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:48:56,290 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,291 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 10:48:56,291 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,292 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 10:48:56,295 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:48:56,296 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:48:56,297 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 10:48:56,297 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 10:48:56,298 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 10:48:56,299 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 10:48:56,299 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,301 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 10:48:56,302 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:48:56,303 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,304 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:48:56,305 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:48:56,307 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:48:56,307 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 10:48:56,308 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:48:56,309 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:48:56,310 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 10:48:56,311 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,313 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:48:56,317 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,318 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,318 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:48:56,319 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,320 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:48:56,322 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,328 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:48:56,330 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,334 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,342 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 10:48:56,346 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,348 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,355 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,358 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,359 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,364 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,366 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,371 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,372 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,373 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,373 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:48:56,374 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,375 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,376 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,377 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,377 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,378 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:48:56,378 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,379 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:48:56,379 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,380 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:48:56,380 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,381 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,382 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,382 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:48:56,387 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:48:56,388 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:48:56,392 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:48:56,392 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:48:56,393 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,394 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:48:56,395 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,395 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 10:48:56,395 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:48:56,396 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 10:48:56,396 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,396 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,396 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:48:56,397 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,397 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,397 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,398 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,398 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 10:48:56,398 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:48:56,398 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:48:56,399 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,399 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,399 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:48:56,407 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:48:56,409 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:48:56,414 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,415 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:48:56,416 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:48:56,417 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:48:56,417 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:48:56,417 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:48:56,418 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,418 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,418 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,419 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,421 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:48:56,422 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:48:56,422 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:48:56,423 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:48:56,423 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:48:56,424 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:48:56,424 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:48:56,424 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:48:56,425 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:48:56,425 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,425 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:48:56,426 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,426 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:48:56,426 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:48:56,427 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:13,885 - migrateData - INFO - No new data found -2022-11-28 10:51:13,890 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:13,890 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:13,890 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 10:51:13,891 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 10:51:13,893 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:13,894 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:13,894 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:13,895 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:13,895 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,895 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,896 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,896 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:13,897 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,897 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 10:51:13,897 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,898 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,898 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,898 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,899 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:13,899 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,899 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,900 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,900 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:13,900 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,900 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:13,901 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,901 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 10:51:13,901 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,904 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 10:51:13,905 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:13,906 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:13,907 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 10:51:13,907 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 10:51:13,907 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 10:51:13,907 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 10:51:13,908 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,908 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 10:51:13,908 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:13,909 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,909 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:13,909 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:13,909 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:13,909 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 10:51:13,910 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:13,910 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:13,910 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 10:51:13,910 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,911 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:13,911 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,911 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,911 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:13,912 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,913 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:13,913 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,914 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:13,914 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,915 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,916 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 10:51:13,917 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,917 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,918 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,918 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,919 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,919 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,919 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,920 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,920 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,921 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,921 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:13,921 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,922 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,922 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,923 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,924 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,925 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:13,926 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,927 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:13,928 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,928 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:13,928 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,931 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,932 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,932 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:13,933 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:13,933 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:13,933 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:13,934 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:13,934 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,935 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:13,935 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,935 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 10:51:13,936 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:13,936 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 10:51:13,936 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,937 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,937 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:13,937 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,938 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,938 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,938 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,939 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 10:51:13,940 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:13,940 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:13,940 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,940 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,941 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:13,941 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:13,942 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:13,943 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,943 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:13,943 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:13,944 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:13,944 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:13,945 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:13,945 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,945 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,946 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,946 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,947 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:13,951 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:13,952 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:13,953 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:13,953 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:13,955 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:13,955 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:13,955 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:13,956 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:13,956 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,956 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:13,957 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,957 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:13,957 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:13,957 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:33,122 - migrateData - INFO - No new data found -2022-11-28 10:51:33,128 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:33,128 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:33,129 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 10:51:33,129 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 10:51:33,129 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:33,130 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:33,131 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:33,131 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:33,132 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,132 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,133 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,133 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:33,134 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,134 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 10:51:33,135 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,136 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,136 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,136 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,136 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:33,137 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,137 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,137 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,137 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:33,138 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,138 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:33,139 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,140 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 10:51:33,141 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,141 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 10:51:33,141 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:33,142 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:33,142 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 10:51:33,142 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 10:51:33,143 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 10:51:33,143 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 10:51:33,143 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,143 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 10:51:33,144 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:33,144 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,144 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:33,147 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:33,147 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:33,148 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 10:51:33,148 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:33,149 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:33,149 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 10:51:33,150 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,151 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:33,151 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,152 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,152 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:33,152 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,152 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:33,156 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,157 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:33,157 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,157 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,158 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 10:51:33,158 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,158 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,159 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,160 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,160 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,161 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,161 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,162 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,163 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,163 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,164 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:33,164 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,164 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,165 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,165 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,166 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,166 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:33,166 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,166 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:33,167 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,167 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:33,167 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,168 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,168 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,168 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:33,169 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:33,169 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:33,170 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:33,170 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:33,170 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,171 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:33,171 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,172 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 10:51:33,172 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:33,173 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 10:51:33,173 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,174 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,174 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:33,175 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,175 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,175 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,176 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,176 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 10:51:33,176 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:33,177 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:33,177 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,177 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,177 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:33,178 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:33,178 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:33,178 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,178 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:33,179 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:33,179 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:33,179 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:33,180 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:33,180 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,181 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,181 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,181 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,182 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:33,185 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:33,186 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:33,187 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:33,187 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:33,187 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:33,188 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:33,189 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:33,191 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:33,199 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,199 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:33,200 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,200 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:33,200 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:33,201 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:57,493 - migrateData - INFO - No new data found -2022-11-28 10:51:57,499 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:57,500 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:57,502 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 10:51:57,505 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 10:51:57,507 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:57,509 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:57,511 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:57,512 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:57,514 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,515 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,516 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,516 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:57,517 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,518 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 10:51:57,519 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,520 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,520 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,525 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,526 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:57,527 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,530 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,531 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,532 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:57,532 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,533 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:57,535 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,536 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 10:51:57,536 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,537 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 10:51:57,538 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 10:51:57,538 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:57,542 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 10:51:57,543 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 10:51:57,544 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 10:51:57,544 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 10:51:57,545 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,546 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 10:51:57,546 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:57,547 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,547 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:57,547 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:57,547 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:57,549 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 10:51:57,553 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:57,554 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:57,555 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 10:51:57,557 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,558 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:57,558 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,559 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,560 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:57,560 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,561 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:57,562 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,562 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 10:51:57,562 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,563 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,563 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 10:51:57,563 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,564 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,564 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,565 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,565 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,565 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,565 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,566 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,566 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,567 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,567 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 10:51:57,567 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,568 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,568 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,568 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,569 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,569 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 10:51:57,569 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,570 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:57,570 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,570 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 10:51:57,571 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,571 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,572 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,572 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 10:51:57,572 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:57,573 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:57,573 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:57,573 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:57,574 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,574 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:57,575 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,576 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 10:51:57,577 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:57,578 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 10:51:57,579 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,580 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,580 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 10:51:57,581 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,582 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,583 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,584 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,585 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 10:51:57,586 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:57,587 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 10:51:57,588 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,589 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,590 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:57,591 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:57,591 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 10:51:57,592 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,592 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:57,593 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 10:51:57,593 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:57,595 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:57,596 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:57,596 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,597 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,598 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,599 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,600 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:57,603 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:57,603 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:57,605 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:57,605 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 10:51:57,606 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:57,607 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 10:51:57,607 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:57,609 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 10:51:57,609 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,609 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:57,610 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,610 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:57,611 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 10:51:57,612 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 10:51:57,681 - migrateData - INFO - 24 Idps created -2022-11-28 11:02:00,209 - migrateData - INFO - No new data found -2022-11-28 11:02:00,214 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:00,215 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:02:00,215 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 11:02:00,215 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 11:02:00,215 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:00,216 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:00,216 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:02:00,216 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:02:00,216 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,217 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,217 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,217 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:00,218 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,218 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 11:02:00,218 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,218 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,219 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,219 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,219 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:02:00,220 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,220 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,220 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,220 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:00,221 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,221 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:02:00,221 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,221 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 11:02:00,222 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,222 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 11:02:00,222 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:02:00,223 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:00,223 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 11:02:00,223 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 11:02:00,223 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 11:02:00,224 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 11:02:00,224 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,224 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 11:02:00,225 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:00,225 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,225 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:02:00,226 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:00,226 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:02:00,226 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 11:02:00,226 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:02:00,227 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:00,227 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 11:02:00,227 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,228 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:00,228 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,228 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,229 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:02:00,229 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,229 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:02:00,229 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,230 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:00,231 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,231 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,232 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 11:02:00,233 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,233 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,234 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,235 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,236 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,236 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,237 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,238 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,239 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,239 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,240 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:00,241 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,241 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,242 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,242 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,243 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,243 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:02:00,244 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,245 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:00,245 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,246 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:00,247 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,248 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,249 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,250 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:02:00,251 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:00,252 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:00,253 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:00,255 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:00,256 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,257 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:00,258 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,260 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 11:02:00,261 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:02:00,262 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 11:02:00,263 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,264 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,265 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:00,266 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,267 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,268 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,269 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,270 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 11:02:00,271 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:00,272 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:00,274 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,275 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,276 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:02:00,277 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:02:00,278 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:02:00,279 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,280 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:00,282 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:02:00,284 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:00,284 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:00,285 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:00,286 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,288 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,289 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,291 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,292 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:00,295 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:00,296 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:00,298 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:00,299 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:00,301 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:00,301 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:00,302 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:00,303 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:00,304 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,305 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:02:00,306 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,307 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:02:00,307 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:00,308 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:02:00,350 - migrateData - INFO - 24 Idps created -2022-11-28 11:02:29,482 - migrateData - INFO - No new data found -2022-11-28 11:02:29,487 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:29,489 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:02:29,490 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 11:02:29,491 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 11:02:29,491 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:29,492 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:29,493 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:02:29,494 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:02:29,495 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,496 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,509 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,509 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:29,510 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,511 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 11:02:29,512 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,512 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,513 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,514 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,515 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:02:29,515 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,516 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,518 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,519 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:29,519 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,519 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:02:29,520 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,520 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 11:02:29,520 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,520 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 11:02:29,521 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:02:29,521 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:29,521 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 11:02:29,521 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 11:02:29,522 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 11:02:29,522 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 11:02:29,522 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,525 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 11:02:29,526 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:29,527 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,528 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:02:29,529 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:29,538 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:02:29,538 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 11:02:29,538 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:02:29,539 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:29,539 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 11:02:29,540 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,540 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:29,541 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,541 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,542 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:02:29,542 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,543 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:02:29,543 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,544 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:02:29,544 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,545 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,545 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 11:02:29,546 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,546 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,547 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,548 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,549 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,550 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,550 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,552 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,553 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,554 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,554 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:02:29,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,556 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,557 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,557 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:02:29,558 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,558 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:29,558 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,559 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:02:29,559 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,559 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,560 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,560 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:02:29,560 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:29,561 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:29,561 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:29,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:29,565 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,566 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:29,567 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,570 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 11:02:29,570 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:02:29,570 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 11:02:29,571 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,571 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,572 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:02:29,572 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,572 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,573 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,573 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,573 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 11:02:29,574 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:29,574 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:02:29,577 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,578 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,579 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:02:29,579 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:02:29,582 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:02:29,583 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,583 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:29,584 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:02:29,584 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:29,584 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:29,585 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:29,585 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,585 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,586 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,586 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,587 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:29,587 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:29,588 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:29,588 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:29,589 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:02:29,590 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:29,591 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:02:29,591 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:29,592 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:02:29,593 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,594 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:02:29,594 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,595 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:02:29,596 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:02:29,596 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:02:29,628 - migrateData - INFO - 24 Idps created -2022-11-28 11:02:29,669 - pgConnectorProxy - ERROR - syntax error at or near "s" -LINE 1: ...'980f1863-3a72-42c5-8cf8-565ed83aac68', 'Cyfronet's EGI fedc... - ^ -2022-11-28 11:43:19,386 - migrateData - INFO - No new data found -2022-11-28 11:43:19,390 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:43:19,391 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:43:19,392 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 11:43:19,392 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 11:43:19,392 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:43:19,393 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:43:19,394 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:43:19,394 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:43:19,395 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,396 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,396 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,396 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:43:19,397 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,397 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 11:43:19,398 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,398 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,399 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,399 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,400 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:43:19,400 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,400 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,406 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,407 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:43:19,407 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,408 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:43:19,408 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,408 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 11:43:19,408 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,409 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 11:43:19,410 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 11:43:19,411 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:43:19,412 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 11:43:19,412 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 11:43:19,413 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 11:43:19,413 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 11:43:19,413 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,414 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 11:43:19,415 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:43:19,415 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,415 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:43:19,416 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:43:19,416 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:43:19,416 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 11:43:19,417 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:43:19,417 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:43:19,418 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 11:43:19,419 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,419 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:43:19,419 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,420 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,420 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:43:19,420 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,421 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:43:19,421 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,421 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 11:43:19,422 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,422 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,423 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 11:43:19,423 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,423 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,424 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,424 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,425 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,425 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,426 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,427 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,427 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,428 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,428 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 11:43:19,428 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,429 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 11:43:19,430 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,430 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:43:19,430 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,430 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 11:43:19,430 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,431 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,432 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,433 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 11:43:19,434 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:43:19,435 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:43:19,436 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:43:19,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:43:19,437 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,437 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:43:19,438 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,439 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 11:43:19,440 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:43:19,440 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 11:43:19,441 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,442 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,442 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 11:43:19,442 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,443 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,443 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,444 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,444 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 11:43:19,445 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:43:19,445 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 11:43:19,445 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,446 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,446 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:43:19,446 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:43:19,447 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 11:43:19,449 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,450 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:43:19,450 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 11:43:19,451 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:43:19,452 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:43:19,452 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:43:19,453 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,453 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,454 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,454 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,456 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:43:19,456 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:43:19,457 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:43:19,458 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:43:19,460 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 11:43:19,460 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:43:19,461 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 11:43:19,461 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:43:19,461 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 11:43:19,462 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,462 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:43:19,462 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,463 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:43:19,463 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 11:43:19,463 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 11:43:19,501 - migrateData - INFO - 24 Idps created -2022-11-28 11:43:19,756 - migrateData - INFO - 409 Idps created -2022-11-28 12:46:25,575 - migrateData - INFO - No new data found -2022-11-28 12:46:25,580 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 12:46:25,582 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 12:46:25,582 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 12:46:25,584 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 12:46:25,586 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 12:46:25,587 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 12:46:25,590 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 12:46:25,591 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 12:46:25,591 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,591 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,592 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,592 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 12:46:25,593 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,593 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 12:46:25,593 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,594 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,594 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,594 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,595 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 12:46:25,595 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,596 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,596 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,596 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 12:46:25,596 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,597 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 12:46:25,597 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,597 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 12:46:25,598 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,598 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 12:46:25,598 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 12:46:25,599 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 12:46:25,599 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 12:46:25,599 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 12:46:25,600 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 12:46:25,600 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 12:46:25,600 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,601 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 12:46:25,601 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 12:46:25,601 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,602 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 12:46:25,602 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 12:46:25,603 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 12:46:25,603 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 12:46:25,603 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 12:46:25,603 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 12:46:25,604 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 12:46:25,608 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,609 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 12:46:25,610 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,610 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,611 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 12:46:25,611 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,612 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 12:46:25,612 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,613 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 12:46:25,613 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,614 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,615 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 12:46:25,615 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,615 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,616 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,617 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,617 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,618 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,618 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,619 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,619 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,620 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,621 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 12:46:25,621 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,621 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,622 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,623 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,623 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,623 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 12:46:25,624 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,624 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 12:46:25,624 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,624 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 12:46:25,625 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,625 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,626 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,626 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 12:46:25,627 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 12:46:25,627 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 12:46:25,627 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 12:46:25,628 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 12:46:25,628 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,628 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 12:46:25,629 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,629 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 12:46:25,629 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 12:46:25,630 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 12:46:25,630 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,630 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,631 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 12:46:25,631 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,631 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,632 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,632 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,632 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 12:46:25,633 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 12:46:25,633 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 12:46:25,634 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,634 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,634 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 12:46:25,635 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 12:46:25,635 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 12:46:25,635 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,636 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 12:46:25,636 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 12:46:25,636 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 12:46:25,637 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 12:46:25,637 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 12:46:25,638 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,638 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,638 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,639 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,639 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 12:46:25,639 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 12:46:25,640 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 12:46:25,640 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 12:46:25,641 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 12:46:25,641 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 12:46:25,641 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 12:46:25,642 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 12:46:25,642 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 12:46:25,643 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,643 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 12:46:25,643 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,643 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 12:46:25,643 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 12:46:25,644 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 12:46:25,679 - migrateData - INFO - 24 Idps created -2022-11-28 12:46:25,752 - migrateData - INFO - 409 Sps created -2022-11-28 13:39:55,514 - migrateData - INFO - No new data found -2022-11-28 13:39:55,519 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:39:55,522 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:39:55,523 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 13:39:55,523 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 13:39:55,523 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:39:55,524 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:39:55,524 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:39:55,525 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:39:55,525 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,525 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,525 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,526 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:39:55,526 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,527 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 13:39:55,527 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,527 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,528 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,528 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,528 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:39:55,529 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,529 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,529 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,529 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:39:55,530 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,530 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:39:55,530 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,531 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 13:39:55,531 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,531 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 13:39:55,532 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:39:55,532 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:39:55,532 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 13:39:55,533 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 13:39:55,533 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 13:39:55,533 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 13:39:55,534 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,534 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 13:39:55,534 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:39:55,534 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,535 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:39:55,535 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:39:55,535 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:39:55,536 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 13:39:55,536 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:39:55,536 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:39:55,537 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 13:39:55,537 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,537 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:39:55,538 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,538 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,538 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:39:55,538 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,539 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:39:55,539 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,539 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:39:55,540 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,540 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,540 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 13:39:55,540 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,541 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,541 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,542 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,542 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,542 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,542 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,543 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,543 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,544 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,544 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:39:55,544 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,545 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,545 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,545 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,545 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,546 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:39:55,546 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,546 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:39:55,546 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,547 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:39:55,547 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,548 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,548 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,548 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:39:55,549 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:39:55,549 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:39:55,549 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:39:55,549 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:39:55,550 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,550 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:39:55,550 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,551 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 13:39:55,551 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:39:55,551 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 13:39:55,551 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,552 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:39:55,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,553 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,553 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,553 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 13:39:55,553 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:39:55,554 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:39:55,554 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,554 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,555 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:39:55,555 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:39:55,555 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:39:55,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,556 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:39:55,556 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:39:55,556 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:39:55,557 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:39:55,557 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:39:55,557 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,557 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,558 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,558 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,558 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:39:55,559 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:39:55,559 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:39:55,560 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:39:55,560 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:39:55,561 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:39:55,561 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:39:55,561 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:39:55,564 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:39:55,564 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,564 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:39:55,565 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,565 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:39:55,565 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:39:55,565 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:39:55,633 - migrateData - INFO - 24 Idps created -2022-11-28 13:39:55,731 - migrateData - INFO - 409 Sps created -2022-11-28 13:40:23,191 - migrateData - INFO - No new data found -2022-11-28 13:40:23,196 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:40:23,196 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:40:23,196 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 13:40:23,197 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 13:40:23,197 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:40:23,198 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:40:23,198 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:40:23,198 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:40:23,199 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,199 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,199 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,200 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:40:23,200 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,200 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 13:40:23,201 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,201 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,201 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,201 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,202 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:40:23,202 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,202 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,203 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,203 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:40:23,203 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,203 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:40:23,204 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,204 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 13:40:23,204 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,205 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 13:40:23,205 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:40:23,205 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:40:23,205 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 13:40:23,206 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 13:40:23,206 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 13:40:23,206 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 13:40:23,207 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,207 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 13:40:23,207 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:40:23,207 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,208 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:40:23,208 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:40:23,209 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:40:23,210 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 13:40:23,210 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:40:23,211 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:40:23,211 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 13:40:23,212 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,212 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:40:23,213 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,214 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,215 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:40:23,216 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,218 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:40:23,219 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,219 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:40:23,220 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,221 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,222 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 13:40:23,223 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,224 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,226 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,228 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,229 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,229 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,230 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,231 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,232 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,233 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,233 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:40:23,234 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,236 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,242 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,243 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,244 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,245 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:40:23,245 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,246 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:40:23,247 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,247 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:40:23,248 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,249 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,250 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,251 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:40:23,251 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:40:23,254 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:40:23,254 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:40:23,255 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:40:23,255 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,255 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:40:23,256 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,257 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 13:40:23,257 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:40:23,258 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 13:40:23,258 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,259 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,259 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:40:23,260 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,260 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,261 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,261 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,262 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 13:40:23,262 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:40:23,263 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:40:23,263 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,264 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,265 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:40:23,266 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:40:23,266 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:40:23,267 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,267 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:40:23,268 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:40:23,268 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:40:23,269 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:40:23,270 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:40:23,271 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,272 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,273 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,274 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,275 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:40:23,276 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:40:23,277 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:40:23,279 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:40:23,281 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:40:23,283 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:40:23,284 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:40:23,284 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:40:23,285 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:40:23,285 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,285 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:40:23,286 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,286 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:40:23,286 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:40:23,287 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:40:23,320 - migrateData - INFO - 24 Idps created -2022-11-28 13:40:23,407 - migrateData - INFO - 409 Sps created -2022-11-28 13:43:20,767 - migrateData - INFO - No new data found -2022-11-28 13:43:20,772 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:43:20,774 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:43:20,774 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 13:43:20,776 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-28 13:43:20,777 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:43:20,777 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:43:20,777 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:43:20,778 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:43:20,778 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,778 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,778 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,778 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:43:20,779 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,779 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-28 13:43:20,780 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,780 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,780 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,780 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,780 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:43:20,781 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,781 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,781 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,781 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:43:20,782 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,782 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:43:20,782 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,782 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 13:43:20,783 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,783 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-28 13:43:20,783 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-28 13:43:20,784 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:43:20,784 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 13:43:20,784 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 13:43:20,784 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-28 13:43:20,784 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-28 13:43:20,785 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,785 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-28 13:43:20,785 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:43:20,786 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,786 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:43:20,786 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:43:20,786 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:43:20,788 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 13:43:20,791 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:43:20,791 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:43:20,791 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-28 13:43:20,792 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,792 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:43:20,792 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,792 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,793 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:43:20,793 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,793 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:43:20,793 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,794 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-28 13:43:20,794 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,794 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,794 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-28 13:43:20,795 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,795 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,796 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,796 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,796 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,797 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,797 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,797 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,798 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,798 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,798 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-28 13:43:20,799 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,799 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,799 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,800 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,800 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,800 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-28 13:43:20,801 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,801 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:43:20,801 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,802 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-28 13:43:20,802 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,802 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,803 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,803 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-28 13:43:20,803 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:43:20,804 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:43:20,804 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:43:20,804 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:43:20,805 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,805 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:43:20,805 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,806 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-28 13:43:20,806 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:43:20,806 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-28 13:43:20,806 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,807 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,807 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-28 13:43:20,807 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,808 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,808 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,808 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,808 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-28 13:43:20,809 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:43:20,809 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-28 13:43:20,809 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,809 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,810 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:43:20,810 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:43:20,810 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-28 13:43:20,810 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,810 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:43:20,811 - migrateData - INFO - Vo name AMB with id 9 -2022-11-28 13:43:20,811 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:43:20,811 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:43:20,812 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:43:20,812 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,812 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,812 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,813 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,813 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:43:20,813 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:43:20,814 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:43:20,815 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:43:20,815 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-28 13:43:20,816 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:43:20,816 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-28 13:43:20,816 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:43:20,817 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-28 13:43:20,817 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,817 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:43:20,818 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,818 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:43:20,818 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-28 13:43:20,818 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-28 13:43:20,849 - migrateData - INFO - 24 Idps created -2022-11-28 13:43:20,929 - migrateData - INFO - 409 Sps created -2022-11-28 13:43:20,949 - migrateData - INFO - 3612 Country Stats created diff --git a/data_migrations/log/metricsMigrate.log.2022-11-29 b/data_migrations/log/metricsMigrate.log.2022-11-29 deleted file mode 100644 index 8aee328..0000000 --- a/data_migrations/log/metricsMigrate.log.2022-11-29 +++ /dev/null @@ -1,29840 +0,0 @@ -2022-11-29 09:45:14,264 - migrateData - INFO - No new data found -2022-11-29 09:45:14,269 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:45:14,270 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:45:14,274 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:45:14,276 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:45:14,276 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:45:14,276 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:45:14,277 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:45:14,277 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:45:14,277 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,278 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,278 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,279 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:45:14,281 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,282 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 09:45:14,283 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,285 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,286 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,287 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,288 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:45:14,288 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,289 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,299 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,299 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:45:14,301 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,302 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:45:14,302 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,303 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:45:14,304 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,305 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 09:45:14,305 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:45:14,306 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:45:14,308 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:45:14,309 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:45:14,309 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:45:14,310 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:45:14,311 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,311 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:45:14,312 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:45:14,312 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,313 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:45:14,313 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:45:14,314 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:45:14,314 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:45:14,315 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:45:14,316 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:45:14,317 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 09:45:14,318 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,318 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:45:14,319 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,320 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,320 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:45:14,320 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,322 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:45:14,322 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,322 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:45:14,323 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,323 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,323 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:45:14,324 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,324 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,324 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,325 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,325 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,325 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,326 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,326 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,327 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,327 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,327 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:45:14,328 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,328 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,328 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,328 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,329 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,329 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:45:14,329 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,331 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:45:14,332 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,332 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:45:14,333 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,333 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,333 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,334 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:45:14,334 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:45:14,334 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:45:14,334 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:45:14,335 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:45:14,335 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,335 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:45:14,335 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,336 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 09:45:14,336 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:45:14,336 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 09:45:14,337 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,337 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,337 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:45:14,337 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,338 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,338 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,338 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,338 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 09:45:14,338 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:45:14,339 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:45:14,339 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,339 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,339 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:45:14,340 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:45:14,340 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:45:14,340 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,340 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:45:14,341 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:45:14,341 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:45:14,341 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:45:14,342 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:45:14,342 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,342 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,343 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,344 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,344 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:45:14,345 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:45:14,345 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:45:14,346 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:45:14,346 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:45:14,347 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:45:14,347 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:45:14,347 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:45:14,348 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:45:14,348 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,349 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:45:14,349 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,349 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:45:14,350 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:45:14,350 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:45:14,384 - migrateData - INFO - 24 Idps created -2022-11-29 09:45:14,523 - migrateData - INFO - 409 Sps created -2022-11-29 09:45:14,536 - migrateData - INFO - 3612 Country Stats created -2022-11-29 09:55:10,874 - migrateData - INFO - No new data found -2022-11-29 09:55:10,879 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:55:10,880 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:55:10,881 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:55:10,882 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:55:10,885 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:55:10,886 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:55:10,888 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:55:10,889 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:55:10,889 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,890 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,890 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,892 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:55:10,894 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,894 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 09:55:10,894 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,894 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,895 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,895 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,895 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:55:10,896 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,896 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,896 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,896 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:55:10,896 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,897 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:55:10,897 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,897 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:55:10,897 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,897 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 09:55:10,898 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:55:10,898 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:55:10,898 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:55:10,898 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:55:10,898 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:55:10,899 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:55:10,899 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,899 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:55:10,899 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:55:10,899 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,900 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:55:10,900 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:55:10,901 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:55:10,902 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:55:10,903 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:55:10,903 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:55:10,904 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 09:55:10,904 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,904 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:55:10,905 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,905 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,905 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:55:10,906 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,906 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:55:10,906 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,906 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:55:10,907 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,907 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,907 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:55:10,907 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,908 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,908 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,909 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,909 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,910 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,910 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,911 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,911 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,912 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,913 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:55:10,913 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,914 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,915 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,915 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,915 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,916 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:55:10,916 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,916 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:55:10,916 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,917 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:55:10,917 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,917 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,918 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,918 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:55:10,918 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:55:10,918 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:55:10,919 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:55:10,919 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:55:10,919 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,919 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:55:10,919 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,920 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 09:55:10,920 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:55:10,920 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 09:55:10,920 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,921 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,921 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:55:10,921 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,921 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,921 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,922 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,922 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 09:55:10,922 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:55:10,922 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:55:10,924 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,924 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,925 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:55:10,925 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:55:10,926 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:55:10,932 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,934 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:55:10,936 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:55:10,937 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:55:10,938 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:55:10,939 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:55:10,939 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,939 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,940 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,941 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,942 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:55:10,943 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:55:10,943 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:55:10,945 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:55:10,946 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:55:10,948 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:55:10,949 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:55:10,951 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:55:10,952 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:55:10,953 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,954 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:55:10,955 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,956 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:55:10,956 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:55:10,957 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:55:10,983 - migrateData - INFO - 24 Idps created -2022-11-29 09:55:11,096 - migrateData - INFO - 409 Sps created -2022-11-29 09:55:11,107 - migrateData - INFO - 3612 Country Stats created -2022-11-29 09:57:41,636 - migrateData - INFO - No new data found -2022-11-29 09:57:41,646 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:41,646 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:57:41,647 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:57:41,648 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:57:41,648 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:41,648 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:41,649 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:57:41,649 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:57:41,649 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,650 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,650 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,651 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:41,652 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,652 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 09:57:41,652 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,653 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,653 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,653 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,654 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:57:41,654 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,655 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,657 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,657 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:41,658 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,658 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:57:41,659 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,659 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:57:41,659 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,660 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 09:57:41,660 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:57:41,660 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:41,661 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:57:41,661 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:57:41,661 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:57:41,662 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:57:41,662 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,662 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:57:41,663 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:41,663 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,663 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:57:41,664 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:41,664 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:57:41,666 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:57:41,668 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:57:41,668 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:41,669 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 09:57:41,670 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,671 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:41,672 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,672 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,673 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:57:41,674 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,674 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:57:41,675 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,676 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:41,676 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,677 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,677 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:57:41,677 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,677 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,678 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,678 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,679 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,679 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,679 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,680 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,680 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,681 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,682 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:41,683 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,683 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,683 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,683 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,684 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,684 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:57:41,684 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,685 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:41,685 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,685 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:41,685 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,686 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,686 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,687 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:57:41,687 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:41,688 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:41,688 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:41,688 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:41,688 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,688 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:41,689 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,690 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 09:57:41,690 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:57:41,690 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 09:57:41,691 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,692 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,692 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:41,692 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,693 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,693 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,693 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,694 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 09:57:41,694 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:41,694 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:41,695 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,695 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,696 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:57:41,696 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:57:41,697 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:57:41,697 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,698 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:41,699 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:57:41,699 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:41,699 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:41,700 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:41,700 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,700 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,701 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,701 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,702 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:41,703 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:41,704 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:41,705 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:41,705 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:41,706 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:41,707 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:41,707 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:41,709 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:41,709 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,709 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:57:41,710 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,711 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:57:41,712 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:41,712 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:57:41,738 - migrateData - INFO - 24 Idps created -2022-11-29 09:57:41,826 - migrateData - INFO - 409 Sps created -2022-11-29 09:57:41,840 - migrateData - INFO - 3612 Country Stats created -2022-11-29 09:57:59,693 - migrateData - INFO - No new data found -2022-11-29 09:57:59,707 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:59,709 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:57:59,711 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:57:59,711 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:57:59,712 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:59,714 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:59,715 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:57:59,715 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:57:59,716 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,717 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,720 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,721 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:59,723 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,724 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 09:57:59,726 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,728 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,730 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,730 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,732 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:57:59,733 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,734 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,735 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,738 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:59,738 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,738 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:57:59,739 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,740 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:57:59,740 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,741 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 09:57:59,742 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:57:59,743 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:59,743 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:57:59,744 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:57:59,744 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:57:59,744 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:57:59,745 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,745 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:57:59,745 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:59,746 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,747 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:57:59,747 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:59,747 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:57:59,748 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:57:59,748 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:57:59,751 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:59,754 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 09:57:59,756 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,757 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:59,758 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,760 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,761 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:57:59,762 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,762 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:57:59,763 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,764 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:57:59,765 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,766 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,767 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:57:59,767 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,768 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,769 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,771 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,772 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,774 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,775 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,777 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,778 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,780 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,781 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:57:59,782 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,783 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,784 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,786 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,787 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,788 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:57:59,789 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,789 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:59,790 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,791 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:57:59,791 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,793 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,793 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,794 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:57:59,795 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:59,796 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:59,797 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:59,798 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:59,799 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,800 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:59,800 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,802 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 09:57:59,803 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:57:59,804 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 09:57:59,807 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,809 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,821 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:57:59,822 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,823 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,824 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,825 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,826 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 09:57:59,827 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:59,828 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:57:59,829 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,830 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,830 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:57:59,831 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:57:59,831 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:57:59,832 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,832 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:59,834 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:57:59,834 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:59,835 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:59,836 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:59,837 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,838 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,839 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,839 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,840 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:59,841 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:59,845 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:59,849 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:59,850 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:57:59,851 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:59,852 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:57:59,853 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:59,854 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:57:59,859 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,860 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:57:59,861 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,862 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:57:59,862 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:57:59,863 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:57:59,891 - migrateData - INFO - 24 Idps created -2022-11-29 09:57:59,993 - migrateData - INFO - 409 Sps created -2022-11-29 09:58:47,659 - migrateData - INFO - No new data found -2022-11-29 09:58:47,663 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:58:47,664 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:58:47,665 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:58:47,668 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:58:47,669 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:58:47,669 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:58:47,670 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:58:47,670 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:58:47,671 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,671 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,672 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,672 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:58:47,673 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,673 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 09:58:47,674 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,675 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,675 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,676 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,676 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:58:47,676 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,676 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,676 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,677 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:58:47,677 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,677 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:58:47,678 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,678 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:58:47,678 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,679 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 09:58:47,679 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:58:47,680 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:58:47,680 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:58:47,680 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:58:47,681 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:58:47,681 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:58:47,681 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,682 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:58:47,682 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:58:47,684 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,684 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:58:47,685 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:58:47,685 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:58:47,686 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:58:47,686 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:58:47,687 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:58:47,687 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 09:58:47,688 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,688 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:58:47,688 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,689 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,689 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:58:47,689 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,689 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:58:47,690 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,690 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:58:47,692 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,693 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,693 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:58:47,694 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,694 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,695 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,695 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,695 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,696 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,696 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,697 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,697 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,698 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,698 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:58:47,698 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,699 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,699 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,699 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,700 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,700 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:58:47,700 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,700 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:58:47,701 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,701 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:58:47,701 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,702 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,702 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,702 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:58:47,703 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:58:47,703 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:58:47,703 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:58:47,704 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:58:47,704 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,704 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:58:47,704 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,705 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 09:58:47,705 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:58:47,706 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 09:58:47,706 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,706 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,707 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:58:47,707 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,707 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,708 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,708 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,708 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 09:58:47,709 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:58:47,711 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:58:47,712 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,712 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,712 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:58:47,712 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:58:47,713 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:58:47,713 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,713 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:58:47,714 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:58:47,714 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:58:47,718 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:58:47,718 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:58:47,719 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,719 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,720 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,720 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,721 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:58:47,721 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:58:47,722 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:58:47,726 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:58:47,727 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:58:47,727 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:58:47,728 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:58:47,728 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:58:47,730 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:58:47,731 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,732 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:58:47,732 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,733 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:58:47,734 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:58:47,735 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:58:47,763 - migrateData - INFO - 24 Idps created -2022-11-29 09:58:47,853 - migrateData - INFO - 409 Sps created -2022-11-29 09:58:47,865 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,865 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:47,866 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,866 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:47,867 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,867 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,868 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,868 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,868 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,868 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(418,)] -2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,869 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:47,870 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:47,870 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,870 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,872 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,873 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,874 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,875 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:47,876 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,876 - statisticsCountryHashedController - INFO - [(430,)] -2022-11-29 09:58:47,877 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,877 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,878 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,878 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,878 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,879 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,880 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,881 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,881 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,881 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,881 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,882 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,882 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,882 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,882 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:47,883 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,883 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,883 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,883 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(374,)] -2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,884 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,885 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,886 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:47,887 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,888 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,889 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,889 - statisticsCountryHashedController - INFO - [(218,)] -2022-11-29 09:58:47,889 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,890 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:47,890 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,891 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,891 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,891 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:47,892 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:47,892 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,892 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,892 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:47,893 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,894 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,894 - statisticsCountryHashedController - INFO - [(374,)] -2022-11-29 09:58:47,894 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,894 - statisticsCountryHashedController - INFO - [(447,)] -2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [(447,)] -2022-11-29 09:58:47,895 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,896 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,897 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,898 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,898 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:47,899 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,899 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,900 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,900 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,901 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:47,902 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:47,902 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:47,903 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,903 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:47,904 - statisticsCountryHashedController - INFO - [(447,)] -2022-11-29 09:58:47,904 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,905 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,905 - statisticsCountryHashedController - INFO - [(374,)] -2022-11-29 09:58:47,906 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,906 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,906 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,907 - statisticsCountryHashedController - INFO - [(447,)] -2022-11-29 09:58:47,907 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,908 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:47,908 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,909 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,909 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,910 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,910 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:47,910 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,911 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,911 - statisticsCountryHashedController - INFO - [(451,)] -2022-11-29 09:58:47,912 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,912 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,913 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,913 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,914 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,915 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,915 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,916 - statisticsCountryHashedController - INFO - [(243,)] -2022-11-29 09:58:47,916 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:47,917 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,917 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,917 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,917 - statisticsCountryHashedController - INFO - [(451,)] -2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,918 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [(451,)] -2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,919 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [(451,)] -2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,920 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,921 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,921 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,921 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,921 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,922 - statisticsCountryHashedController - INFO - [(447,)] -2022-11-29 09:58:47,923 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:47,923 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,923 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,923 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [(451,)] -2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,924 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,925 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,926 - statisticsCountryHashedController - INFO - [(374,)] -2022-11-29 09:58:47,927 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,927 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,928 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,929 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,929 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:47,929 - statisticsCountryHashedController - INFO - [(451,)] -2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [(243,)] -2022-11-29 09:58:47,930 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,931 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:47,932 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,933 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,934 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,934 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,934 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:47,934 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,935 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,936 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:47,937 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,938 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,939 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:47,939 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,940 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,940 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:47,941 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:47,942 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,943 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,944 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,945 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,945 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,946 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:47,946 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,947 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,947 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,948 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,949 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,949 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,950 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,951 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,951 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,951 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,952 - statisticsCountryHashedController - INFO - [(243,)] -2022-11-29 09:58:47,953 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,954 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,955 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,956 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:47,957 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:47,958 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:47,959 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,959 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,960 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,961 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:47,961 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,962 - statisticsCountryHashedController - INFO - [(243,)] -2022-11-29 09:58:47,962 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,963 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,963 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,964 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:47,965 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,966 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,966 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,966 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,967 - statisticsCountryHashedController - INFO - [(243,)] -2022-11-29 09:58:47,967 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,967 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,968 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,968 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:47,968 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,969 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,969 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,969 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,970 - statisticsCountryHashedController - INFO - [(243,)] -2022-11-29 09:58:47,970 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:47,971 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,971 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,971 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,971 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:47,972 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:47,972 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,972 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:47,973 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,973 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,974 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:47,974 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:47,974 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:47,975 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,975 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,975 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,975 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,976 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,976 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,976 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,977 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,977 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,977 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,978 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,979 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:47,979 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,979 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,980 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:47,980 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,981 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,981 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,982 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,982 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,983 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,984 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:47,984 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:47,985 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,985 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,986 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:47,990 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:47,991 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,992 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,992 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,993 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:47,993 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:47,994 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:47,994 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,995 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:47,995 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:47,996 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:47,997 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,002 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:48,003 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,003 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,003 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,004 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,004 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,004 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,004 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [(447,)] -2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [(447,)] -2022-11-29 09:58:48,005 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,006 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,007 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,008 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,008 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,008 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,009 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,009 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,009 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,009 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,010 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,010 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,011 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,011 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,011 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,012 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,012 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,013 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,014 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,014 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,015 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,015 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,015 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:48,016 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,018 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,019 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,020 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,021 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,022 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,022 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,022 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,022 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,023 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,023 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,023 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,027 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,028 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,030 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,031 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,032 - statisticsCountryHashedController - INFO - [(460,)] -2022-11-29 09:58:48,034 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,035 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,035 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,036 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,037 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,037 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,038 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,039 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,040 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,041 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,043 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,044 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,045 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,046 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,047 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,048 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,049 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,050 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,051 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,052 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,053 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,054 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,054 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,054 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,054 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,056 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,056 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,056 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,056 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,057 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,058 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,059 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,060 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,061 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,062 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,063 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,064 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,065 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,066 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,067 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,068 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,069 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,070 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,071 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,072 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,073 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,074 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,074 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,074 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,074 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,075 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,076 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,076 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,077 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,078 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,078 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,078 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,078 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,079 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,079 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,079 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,080 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,080 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,080 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,081 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,081 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,081 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,082 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,082 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,082 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,083 - statisticsCountryHashedController - INFO - [(368,)] -2022-11-29 09:58:48,084 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,084 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,084 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,085 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,085 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,085 - statisticsCountryHashedController - INFO - [(380,)] -2022-11-29 09:58:48,086 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,086 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:48,086 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,086 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,087 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,087 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,088 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,088 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,089 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,089 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,089 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,090 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,090 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,090 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,091 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,091 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,091 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,092 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,092 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,092 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,092 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,093 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,093 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,093 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,094 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,094 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,094 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,095 - statisticsCountryHashedController - INFO - [(380,)] -2022-11-29 09:58:48,095 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,095 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,095 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [(218,)] -2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,096 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,097 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,097 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,097 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,107 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,108 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,108 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,109 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,109 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,110 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,110 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,110 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,111 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,111 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,112 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,114 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,114 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,115 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,115 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,117 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,118 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(368,)] -2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,119 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,121 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,122 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,122 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,122 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,122 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,123 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,123 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,123 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,123 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [(380,)] -2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,124 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,125 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,126 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,127 - statisticsCountryHashedController - INFO - [(368,)] -2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,128 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,129 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,130 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(380,)] -2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,131 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(374,)] -2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(374,)] -2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,132 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,133 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,134 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,134 - statisticsCountryHashedController - INFO - [(142,)] -2022-11-29 09:58:48,134 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,134 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,139 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,139 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,140 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,140 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,141 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,141 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,141 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,141 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,142 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,142 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,142 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,142 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,143 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,143 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,143 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,144 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,144 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,144 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,144 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,145 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,145 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,145 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,145 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,146 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,146 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,146 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,146 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,147 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,147 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,147 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,148 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,148 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,148 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,149 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,149 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,149 - statisticsCountryHashedController - INFO - [(380,)] -2022-11-29 09:58:48,150 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,150 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,150 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,151 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,152 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,152 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,152 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,153 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,153 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,154 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,155 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,156 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,157 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,158 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,159 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,160 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,161 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,162 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,163 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,163 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,164 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,165 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,165 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,165 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,166 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,166 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,167 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,167 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,167 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,168 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,169 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,170 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,170 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,170 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,170 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,173 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,174 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,174 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,174 - statisticsCountryHashedController - INFO - [(144,)] -2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,175 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,176 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,177 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [(380,)] -2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,178 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,179 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,180 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,180 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,180 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,181 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,182 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,183 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,184 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,184 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,184 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,184 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,185 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,186 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,187 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,188 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,189 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,189 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,192 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,192 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,193 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,193 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,193 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,194 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,194 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,194 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,195 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,195 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,196 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,197 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,198 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,198 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,198 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(380,)] -2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:48,199 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,200 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,200 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,200 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,200 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,204 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,205 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,205 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,205 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,206 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,206 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,207 - statisticsCountryHashedController - INFO - [(380,)] -2022-11-29 09:58:48,207 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,208 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,208 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:48,208 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,209 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,209 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,209 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,210 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:48,210 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,211 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,211 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,211 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,212 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,212 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,212 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,212 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,213 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,213 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,218 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,219 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,219 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,219 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,220 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:48,220 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,220 - statisticsCountryHashedController - INFO - [(368,)] -2022-11-29 09:58:48,221 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,221 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,221 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,222 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,223 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,223 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,224 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,224 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,224 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,224 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,225 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,225 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,226 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,226 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,227 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,228 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,228 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,228 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,228 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,229 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,229 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,230 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,230 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,230 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,231 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,231 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,232 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,232 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,232 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,233 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,233 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,233 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,233 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,234 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,234 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,234 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,235 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,235 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,235 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,235 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,236 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,238 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,239 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,239 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,240 - statisticsCountryHashedController - INFO - [(329,)] -2022-11-29 09:58:48,240 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,241 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,242 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,243 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,243 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,246 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,247 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,247 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,247 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,247 - statisticsCountryHashedController - INFO - [(368,)] -2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,248 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,249 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,250 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,251 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [(218,)] -2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,252 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,253 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,253 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,253 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,253 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,255 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,255 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,256 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,256 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,257 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,257 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,258 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,259 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,260 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,260 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,261 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,262 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,262 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,262 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,263 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,263 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,263 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,264 - statisticsCountryHashedController - INFO - [(353,)] -2022-11-29 09:58:48,265 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,265 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,266 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,266 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,266 - statisticsCountryHashedController - INFO - [(161,)] -2022-11-29 09:58:48,266 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,267 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,267 - statisticsCountryHashedController - INFO - [(393,)] -2022-11-29 09:58:48,267 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,268 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,269 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,269 - statisticsCountryHashedController - INFO - [(350,)] -2022-11-29 09:58:48,270 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,270 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,271 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,271 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,272 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,273 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,273 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,273 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,274 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,275 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,276 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(376,)] -2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,277 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,278 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,279 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,280 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,281 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,282 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,293 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,296 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,297 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,297 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,298 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,299 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,302 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,302 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,303 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,303 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,304 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,304 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,305 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,305 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,306 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,306 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,307 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,307 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,309 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,309 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,310 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,311 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,312 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,312 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,313 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,313 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,314 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,322 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,323 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,324 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,325 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,326 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,326 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,327 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,328 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,328 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,329 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,329 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,330 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,331 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,334 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,334 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,335 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,335 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,336 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,336 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,337 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,337 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,338 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:48,339 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,339 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,340 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,341 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,341 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,341 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,342 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,342 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,342 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,342 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,343 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,343 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,343 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,344 - statisticsCountryHashedController - INFO - [(368,)] -2022-11-29 09:58:48,344 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,344 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,344 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,345 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,345 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,345 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,346 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,346 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,346 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,347 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,347 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,347 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,348 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,348 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,348 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,349 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,349 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,349 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,350 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,350 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,350 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,351 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,351 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,351 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(396,)] -2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,352 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,353 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,355 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,357 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,357 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,357 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,358 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,358 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,359 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,360 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,360 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,361 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,361 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:48,369 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,370 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,370 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,370 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,371 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,372 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,373 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,374 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,375 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,375 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,375 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,380 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,382 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,383 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,384 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,385 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,386 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,388 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,389 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,390 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,391 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,392 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,392 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,393 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,393 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,394 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,395 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,396 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,398 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,401 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,402 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,403 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,403 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,404 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,405 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,405 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,407 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,408 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:48,409 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,410 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,411 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,412 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,413 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,413 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,414 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,415 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,416 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,416 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,417 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,418 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,419 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,419 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,420 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,421 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,422 - statisticsCountryHashedController - INFO - [(329,)] -2022-11-29 09:58:48,423 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,424 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,425 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,425 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,426 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,427 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:48,427 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,428 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,429 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,430 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,431 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,431 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,432 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,433 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,434 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,434 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,435 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,436 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,437 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,438 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,438 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,439 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,439 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,440 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,442 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,443 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:48,444 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [(353,)] -2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,445 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:48,446 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,447 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,448 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,449 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,450 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,450 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,451 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,452 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,453 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,454 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,454 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,455 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,458 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,459 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,460 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,460 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,461 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,463 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,463 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,464 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,464 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,465 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,466 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,467 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(205,)] -2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,468 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,469 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,470 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,471 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,472 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,473 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,474 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,474 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,474 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,474 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,475 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,476 - statisticsCountryHashedController - INFO - [(396,)] -2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,477 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,478 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,479 - statisticsCountryHashedController - INFO - [(329,)] -2022-11-29 09:58:48,479 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,479 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,479 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,480 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,480 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,480 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,480 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,481 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,482 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,483 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,484 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,485 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,486 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:48,486 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,487 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,487 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,488 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,488 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,489 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,489 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,490 - statisticsCountryHashedController - INFO - [(368,)] -2022-11-29 09:58:48,490 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,490 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,490 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,491 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,491 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,491 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,491 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,492 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,493 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,493 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,493 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,493 - statisticsCountryHashedController - INFO - [(144,)] -2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,494 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,495 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,495 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:48,495 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,496 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,497 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,497 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,497 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,497 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,498 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,499 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,499 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,499 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,500 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,500 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,501 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,501 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,501 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,502 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,502 - statisticsCountryHashedController - INFO - [(161,)] -2022-11-29 09:58:48,502 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,502 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,503 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:48,503 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,503 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,504 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,504 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,504 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,504 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,505 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,505 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,505 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,505 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,506 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,506 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,506 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,507 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,507 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,508 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:48,508 - statisticsCountryHashedController - INFO - [(188,)] -2022-11-29 09:58:48,509 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,509 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,510 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,510 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,510 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,511 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,511 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:48,512 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,513 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,513 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,513 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,513 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,514 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,515 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,516 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,517 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,518 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,519 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,519 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,519 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,519 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,520 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,520 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,520 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,520 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,522 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,522 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,524 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:48,525 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,526 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,527 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,528 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,529 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,530 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,530 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,530 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,530 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,531 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,532 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(353,)] -2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,533 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,534 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,534 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,534 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,534 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,535 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,536 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,537 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,538 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,538 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,538 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,538 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,543 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,545 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,545 - statisticsCountryHashedController - INFO - [(142,)] -2022-11-29 09:58:48,546 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,546 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,546 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,546 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,547 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,548 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,549 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [(218,)] -2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:48,550 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [(142,)] -2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,551 - statisticsCountryHashedController - INFO - [(142,)] -2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,552 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,553 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,554 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,555 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,555 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,555 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,555 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,556 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,556 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,557 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:48,557 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,557 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:48,558 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,559 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,559 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,559 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,559 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,560 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,561 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,562 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,562 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,562 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:48,562 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,563 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,564 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:48,564 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,564 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,564 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,565 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:48,566 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(188,)] -2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(375,)] -2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:48,567 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,568 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,569 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,570 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,571 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,571 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,571 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,572 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,572 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,572 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,572 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,573 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,573 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,573 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,573 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,574 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,574 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,574 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,574 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,575 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,575 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,576 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,576 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,576 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,577 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:48,577 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:48,577 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,578 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,579 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,579 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,579 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:48,579 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:48,580 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,580 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,580 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:48,580 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:48,581 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,582 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:48,582 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,582 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:48,582 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:48,583 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:48,583 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:48,583 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:48,584 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,012 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,013 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,013 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,013 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,013 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,014 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,014 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:49,014 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,015 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,016 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,017 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,018 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,018 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,019 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,020 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,021 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,022 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,023 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,023 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,023 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,023 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,024 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,025 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,025 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,025 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,025 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,026 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,026 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,026 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,027 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,028 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,028 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,028 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,029 - statisticsCountryHashedController - INFO - [(375,)] -2022-11-29 09:58:49,029 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,029 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,029 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,030 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,030 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,030 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,031 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,032 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,032 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,032 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,032 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,033 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,034 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,034 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,034 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,034 - statisticsCountryHashedController - INFO - [(218,)] -2022-11-29 09:58:49,035 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,035 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,035 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:49,035 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,036 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,036 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,036 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,036 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,037 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,038 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,038 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,038 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,038 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,039 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,040 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,041 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,041 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,041 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,041 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,042 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,043 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,043 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:49,044 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,044 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,045 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,045 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,045 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,046 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,046 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,047 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,047 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,048 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,048 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,048 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,050 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,051 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,052 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,053 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,054 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,055 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,056 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,057 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,058 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,059 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,063 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,064 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,064 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,065 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,066 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,066 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,066 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,067 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,071 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,071 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,072 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,072 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,072 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,073 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,073 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,078 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,079 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,079 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:49,079 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,080 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,080 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,080 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,080 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,081 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,081 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,082 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,083 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,084 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,085 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,086 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,086 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:49,087 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,087 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,088 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,089 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,090 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,090 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,090 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,091 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,091 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,092 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,092 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,093 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,093 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,094 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,094 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,094 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,094 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,095 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,095 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,095 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,095 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,096 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,096 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,096 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,097 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,097 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,097 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,098 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,099 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,099 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,100 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,102 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [(262,)] -2022-11-29 09:58:49,103 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,104 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,105 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,106 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,106 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,106 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,106 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,107 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,107 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,109 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,109 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,110 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,110 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,110 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,111 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,111 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,112 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,112 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,113 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,113 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,113 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,114 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,114 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:49,114 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,115 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,115 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,115 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,116 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,116 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,117 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,117 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,117 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,118 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,118 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,118 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,119 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,119 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,119 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,120 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,120 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,121 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,121 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,121 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,122 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,128 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,129 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,129 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,129 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,130 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,131 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,131 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,131 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,132 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,132 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,132 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,133 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,133 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,133 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,134 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,134 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,134 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,135 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,135 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,135 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,136 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,136 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,137 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,138 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,138 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,138 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,138 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,139 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,140 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,140 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,141 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,141 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,142 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,142 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,142 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,143 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,143 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,143 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,144 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,144 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,144 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,145 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,145 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,146 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,146 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,146 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,146 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(348,)] -2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,147 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,148 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,149 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,150 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,151 - statisticsCountryHashedController - INFO - [(144,)] -2022-11-29 09:58:49,151 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,151 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,152 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:49,152 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,152 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,153 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,154 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,154 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,155 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,155 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,156 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,156 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,156 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,157 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,157 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:49,158 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,158 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,159 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,159 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,160 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,160 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,160 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,161 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,161 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,162 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,162 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,163 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,163 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,163 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,164 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,164 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,165 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,165 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,166 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,166 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,166 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,167 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,167 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,168 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,168 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:49,168 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,169 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,169 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,169 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,170 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,170 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,171 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,171 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,171 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,172 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,172 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,173 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,173 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,174 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,174 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:49,175 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,175 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,176 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,176 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,177 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,178 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,178 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,178 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,179 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,179 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,180 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,180 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,180 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,180 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,181 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,186 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:49,187 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,188 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:49,188 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,188 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,189 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,189 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,189 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,189 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,190 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,191 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,191 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,192 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,193 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,193 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,194 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,194 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,195 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,196 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,196 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,197 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,197 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,198 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,198 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,199 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,200 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,201 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,201 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,202 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,202 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,203 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,203 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,204 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,204 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,205 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,205 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,206 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,207 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,208 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,209 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,210 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,211 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,211 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,212 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,213 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,214 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,215 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,216 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,217 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,220 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,222 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,222 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,223 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,224 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,224 - statisticsCountryHashedController - INFO - [(218,)] -2022-11-29 09:58:49,225 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,225 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,226 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,226 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,227 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,228 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,228 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,229 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,229 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,230 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,230 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,230 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,231 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,231 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,232 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,233 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,233 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,234 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,234 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,235 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,235 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,236 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,236 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,237 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,237 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,237 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,238 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,238 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,239 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,239 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,240 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,241 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,241 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,241 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,242 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,242 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,243 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,243 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,243 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,243 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,244 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,245 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,246 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,246 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,246 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,247 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,247 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,248 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,248 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,249 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,249 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,249 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,250 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,250 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,250 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,251 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,251 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,251 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,252 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,252 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,252 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,253 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,253 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,253 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,254 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,256 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,257 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,257 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,258 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,258 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,259 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,259 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,259 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,259 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,260 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,261 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,261 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,261 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,262 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,263 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,263 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,264 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,264 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,265 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,265 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:49,266 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,267 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,268 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,269 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,270 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,271 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,271 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,272 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,273 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:49,274 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,274 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,275 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,275 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,275 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,276 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,276 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,276 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,277 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,278 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,278 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,278 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,279 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,279 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,279 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,280 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,281 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:49,282 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,283 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,284 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,284 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,285 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,285 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,286 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,286 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,287 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,287 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,287 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,288 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,288 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,288 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,289 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,289 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,289 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,290 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,290 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,290 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,291 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,291 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,291 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,292 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,292 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,293 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,293 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,293 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,294 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,295 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,295 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,295 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,296 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,296 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:49,297 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,298 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,298 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,299 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,299 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,299 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,299 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,300 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,300 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,300 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,301 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,301 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,301 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,302 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,302 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,302 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,303 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,303 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,303 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,304 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,304 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,305 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,305 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,305 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,306 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,306 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,306 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,307 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,307 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,308 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,308 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,308 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,308 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,309 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,310 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,310 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,310 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,310 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,311 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,311 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,311 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,312 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,312 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,313 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,313 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,313 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,314 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,314 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,314 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,314 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,315 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,315 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,315 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,315 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,316 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,316 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,316 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,316 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,317 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,317 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,317 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,317 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,318 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,323 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,324 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:49,324 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,325 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,325 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,326 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,327 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,327 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,327 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,328 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,328 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,328 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,329 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,330 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,330 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,331 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,332 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,332 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,332 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,333 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,333 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,333 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,333 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,334 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,334 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,334 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,334 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,335 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,335 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,335 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,336 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,336 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,336 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,337 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,337 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,337 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,338 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,338 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,338 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,338 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,339 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,340 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,340 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,340 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,340 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,341 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,342 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,343 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,344 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,344 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,344 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,344 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,345 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,345 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,345 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,345 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,346 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,346 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,346 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,347 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,347 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,347 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,348 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,348 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,348 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,349 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,349 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,349 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,350 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,350 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,350 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,350 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,351 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,351 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,351 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,352 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,352 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,352 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,353 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,353 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,353 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,354 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,354 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,354 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,356 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,358 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,360 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,360 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,362 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,362 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,362 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,363 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,363 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,364 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:49,364 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,364 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,364 - statisticsCountryHashedController - INFO - [(216,)] -2022-11-29 09:58:49,365 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,365 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,365 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,365 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,366 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,366 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,367 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,367 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,368 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,368 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,369 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,369 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,369 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,370 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,371 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:49,371 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,371 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,372 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,372 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,373 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,373 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,374 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,375 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,375 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,376 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,377 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,378 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,378 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,379 - statisticsCountryHashedController - INFO - [(326,)] -2022-11-29 09:58:49,380 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,380 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,381 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,382 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,382 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,383 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,384 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,384 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,385 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,386 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,386 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,387 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,388 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,389 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,389 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,390 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,390 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,390 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,391 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,391 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,391 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,391 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,392 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,392 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,393 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,393 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,393 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,394 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,394 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,395 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,395 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,396 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,396 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,397 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,397 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,397 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,398 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,398 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,398 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,399 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,399 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,399 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,400 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,400 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,400 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,400 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,401 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,401 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,401 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,401 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,402 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,402 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,403 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,403 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,403 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,404 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,404 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,404 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,404 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,405 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,405 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,405 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,406 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,406 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,406 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,406 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,407 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,407 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,407 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,408 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,408 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,408 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,408 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,409 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,409 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,409 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,409 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,410 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,410 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,410 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,411 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,411 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,411 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,411 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,412 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,412 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,412 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,412 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,413 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,413 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,413 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,414 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,415 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,415 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,415 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,416 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,416 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,416 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,416 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,417 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,417 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,417 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,418 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,418 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,418 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,418 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,419 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,419 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,419 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,420 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,420 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,420 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,421 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,421 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,421 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,421 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,422 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,422 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,422 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,423 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,423 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,423 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,424 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,424 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,424 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,425 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,425 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,425 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,426 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [(142,)] -2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [(15,)] -2022-11-29 09:58:49,427 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,428 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,428 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,428 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,429 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,429 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,429 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,429 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,430 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,430 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,430 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,431 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,431 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,431 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,431 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,432 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,433 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,433 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,433 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,434 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,434 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,434 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,435 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,435 - statisticsCountryHashedController - INFO - [(15,)] -2022-11-29 09:58:49,435 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,435 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,436 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,436 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,436 - statisticsCountryHashedController - INFO - [(329,)] -2022-11-29 09:58:49,437 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,437 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,437 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,437 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,438 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,438 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,439 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,439 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,439 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,440 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,441 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,441 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,441 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,442 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,443 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,443 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,443 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,444 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,444 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,444 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,445 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,446 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,446 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,446 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,446 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,447 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,447 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,447 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,448 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,449 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,449 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,449 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,449 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,450 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,450 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,450 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,451 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,452 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,453 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,454 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,455 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,455 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,455 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,456 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,456 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,456 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,459 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,459 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,459 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,459 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,460 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,461 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,462 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,463 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,463 - statisticsCountryHashedController - INFO - [(450,)] -2022-11-29 09:58:49,464 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,464 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,464 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,465 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,466 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,466 - statisticsCountryHashedController - INFO - [(128,)] -2022-11-29 09:58:49,466 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,471 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,471 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,471 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,472 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,473 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,474 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,474 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,474 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,474 - statisticsCountryHashedController - INFO - [(353,)] -2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,475 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,476 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,477 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,479 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,479 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,479 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,479 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [(45,)] -2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,480 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,481 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,482 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,483 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,484 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,484 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,485 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,486 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,487 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,487 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,487 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,487 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,488 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,489 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,489 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,489 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,489 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,490 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,490 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,490 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,491 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,491 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,491 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,491 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,492 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,492 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,492 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,492 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,493 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,494 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,495 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [(205,)] -2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,496 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,497 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,498 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,502 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,502 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,502 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,503 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,503 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,504 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,504 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,504 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [(188,)] -2022-11-29 09:58:49,505 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,506 - statisticsCountryHashedController - INFO - [(205,)] -2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,507 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,508 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(218,)] -2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(339,)] -2022-11-29 09:58:49,509 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,510 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,511 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,511 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,511 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,511 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,871 - statisticsCountryHashedController - INFO - [(15,)] -2022-11-29 09:58:49,871 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,872 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,872 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,872 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,873 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,873 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,873 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,874 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,874 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,875 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,875 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,875 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,875 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,876 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,877 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,877 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,878 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,878 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,879 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,879 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,880 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,880 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,881 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,881 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,882 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,882 - statisticsCountryHashedController - INFO - [(218,)] -2022-11-29 09:58:49,883 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,883 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,884 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,884 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,884 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,885 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,885 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,885 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,885 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,886 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,886 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,886 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,886 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(1,)] -2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,887 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,888 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,888 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,889 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,889 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,889 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,890 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,890 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,890 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,891 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,891 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,891 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,892 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,892 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,892 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,893 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,893 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,893 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,894 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,895 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,896 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,896 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,896 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,906 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,907 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,908 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,909 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,909 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,910 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,911 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,911 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,912 - statisticsCountryHashedController - INFO - [(332,)] -2022-11-29 09:58:49,912 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,913 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,913 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,916 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,916 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,916 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,917 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,917 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,917 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,918 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,918 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,919 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,919 - statisticsCountryHashedController - INFO - [(340,)] -2022-11-29 09:58:49,919 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,920 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,920 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,921 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,921 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,921 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,922 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,922 - statisticsCountryHashedController - INFO - [(359,)] -2022-11-29 09:58:49,924 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,925 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,925 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,926 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,927 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,928 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,928 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,929 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,929 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,929 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,929 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,930 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,930 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,931 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,931 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,931 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,932 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,932 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,932 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,933 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,933 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,933 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,933 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,934 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,934 - statisticsCountryHashedController - INFO - [(182,)] -2022-11-29 09:58:49,935 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,935 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,935 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,936 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,936 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,937 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,937 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,938 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,938 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,939 - statisticsCountryHashedController - INFO - [(436,)] -2022-11-29 09:58:49,939 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,939 - statisticsCountryHashedController - INFO - [(240,)] -2022-11-29 09:58:49,940 - statisticsCountryHashedController - INFO - [(177,)] -2022-11-29 09:58:49,940 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,941 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,941 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,941 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,941 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,942 - statisticsCountryHashedController - INFO - [(378,)] -2022-11-29 09:58:49,944 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,951 - statisticsCountryHashedController - INFO - [(120,)] -2022-11-29 09:58:49,952 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,955 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,955 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,955 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,956 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,956 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,956 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,956 - statisticsCountryHashedController - INFO - [(457,)] -2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [(441,)] -2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [(15,)] -2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,957 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [(329,)] -2022-11-29 09:58:49,958 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,959 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [(141,)] -2022-11-29 09:58:49,960 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,961 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,961 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,961 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,961 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,962 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,962 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,963 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,963 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,964 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,964 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,964 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,965 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,965 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,965 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,966 - statisticsCountryHashedController - INFO - [(458,)] -2022-11-29 09:58:49,966 - statisticsCountryHashedController - INFO - [(443,)] -2022-11-29 09:58:49,967 - statisticsCountryHashedController - INFO - [(377,)] -2022-11-29 09:58:49,968 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,968 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,968 - statisticsCountryHashedController - INFO - [(364,)] -2022-11-29 09:58:49,968 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,969 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,969 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,969 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,970 - statisticsCountryHashedController - INFO - [(207,)] -2022-11-29 09:58:49,970 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,970 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,970 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,971 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,971 - statisticsCountryHashedController - INFO - [(140,)] -2022-11-29 09:58:49,971 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,971 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,972 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,972 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,975 - statisticsCountryHashedController - INFO - [(420,)] -2022-11-29 09:58:49,977 - statisticsCountryHashedController - INFO - [] -2022-11-29 09:58:49,978 - statisticsCountryHashedController - INFO - [(345,)] -2022-11-29 09:58:49,978 - migrateData - INFO - 3612 Country Stats created -2022-11-29 09:59:05,712 - migrateData - INFO - No new data found -2022-11-29 09:59:05,716 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:05,718 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:05,719 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:59:05,719 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:59:05,719 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:05,720 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:05,721 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:05,721 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:05,722 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,723 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,723 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,725 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:05,726 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,726 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 09:59:05,726 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,727 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,727 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,727 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,727 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:05,727 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,728 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,728 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,728 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:05,728 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,728 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:05,728 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,729 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:59:05,729 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,729 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 09:59:05,729 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:05,729 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:05,730 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:59:05,730 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:59:05,730 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:59:05,730 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:59:05,731 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,731 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:59:05,732 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:05,732 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,733 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:05,733 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:05,733 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:05,734 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:59:05,734 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:05,735 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:05,735 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 09:59:05,735 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,736 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:05,736 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,736 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,737 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:05,737 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,737 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:05,738 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,738 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:05,738 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,739 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,739 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:59:05,739 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,740 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,740 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,741 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,741 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,741 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,742 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,743 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,744 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,744 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,744 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:05,745 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,745 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,745 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,746 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,746 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,746 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:05,747 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,747 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:05,747 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,747 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:05,747 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,748 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,748 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,749 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:05,749 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:05,750 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:05,750 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:05,751 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:05,751 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,752 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:05,752 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,753 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 09:59:05,754 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:05,754 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 09:59:05,755 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,755 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,755 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:05,756 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,756 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,756 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,756 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,757 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 09:59:05,758 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:05,758 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:05,758 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,760 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,760 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:05,761 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:05,761 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:05,761 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,762 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:05,763 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:05,763 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:05,764 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:05,764 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:05,765 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,765 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,766 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,766 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,766 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:05,768 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:05,768 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:05,769 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:05,770 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:05,771 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:05,771 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:05,771 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:05,772 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:05,773 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,773 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:05,773 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,774 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:05,774 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:05,774 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:05,809 - migrateData - INFO - 24 Idps created -2022-11-29 09:59:05,897 - migrateData - INFO - 409 Sps created -2022-11-29 09:59:25,256 - migrateData - INFO - No new data found -2022-11-29 09:59:25,260 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:25,262 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:25,262 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:59:25,263 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:59:25,264 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:25,264 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:25,265 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:25,265 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:25,266 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,267 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,267 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,267 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:25,268 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,269 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 09:59:25,269 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,269 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,269 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,270 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,270 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:25,271 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,271 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,271 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,272 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:25,272 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,272 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:25,273 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,273 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:59:25,273 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,274 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 09:59:25,274 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:25,274 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:25,275 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:59:25,275 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:59:25,278 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:59:25,278 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:59:25,279 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,279 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:59:25,279 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:25,279 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,280 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:25,280 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:25,280 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:25,280 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:59:25,281 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:25,281 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:25,281 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 09:59:25,282 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,282 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:25,282 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,282 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,283 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:25,283 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,283 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:25,283 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,284 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:25,284 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,284 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,284 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:59:25,285 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,285 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,285 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,286 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,286 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,286 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,287 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,287 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,288 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,288 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,288 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:25,288 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,289 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,289 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,289 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,289 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,290 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:25,290 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,290 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:25,290 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,291 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:25,291 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,292 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,292 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,292 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:25,292 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:25,293 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:25,293 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:25,293 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:25,293 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,294 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:25,294 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,294 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 09:59:25,295 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:25,295 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 09:59:25,295 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,296 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,296 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:25,296 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,296 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,297 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,297 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,297 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 09:59:25,297 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:25,298 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:25,298 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,298 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,298 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:25,299 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:25,299 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:25,299 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,300 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:25,300 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:25,300 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:25,300 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:25,301 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:25,301 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,301 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,301 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,302 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,302 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:25,302 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:25,303 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:25,303 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:25,304 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:25,304 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:25,305 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:25,305 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:25,305 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:25,306 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,306 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:25,306 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,307 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:25,307 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:25,307 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:25,338 - migrateData - INFO - 24 Idps created -2022-11-29 09:59:25,412 - migrateData - INFO - 409 Sps created -2022-11-29 09:59:57,802 - migrateData - INFO - No new data found -2022-11-29 09:59:57,806 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:57,807 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:57,807 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:59:57,808 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 09:59:57,809 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:57,810 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:57,811 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:57,811 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:57,811 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,812 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,812 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,813 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:57,813 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,814 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 09:59:57,815 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,816 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,817 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,817 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,818 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:57,818 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,819 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,819 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,819 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:57,820 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,820 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:57,821 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,822 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:59:57,822 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,824 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 09:59:57,824 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 09:59:57,825 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:57,826 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:59:57,826 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:59:57,827 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 09:59:57,830 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 09:59:57,831 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,832 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 09:59:57,832 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:57,833 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,833 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:57,833 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:57,834 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:57,835 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:59:57,836 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:57,836 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:57,837 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 09:59:57,837 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,838 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:57,838 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,839 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,839 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:57,839 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,840 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:57,840 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,840 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 09:59:57,842 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,843 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,843 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 09:59:57,844 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,844 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,845 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,845 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,845 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,846 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,847 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,848 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,848 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,849 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,850 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 09:59:57,852 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,852 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,853 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,853 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,854 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,855 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 09:59:57,856 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,856 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:57,856 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,857 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 09:59:57,857 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,858 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,859 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,859 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 09:59:57,860 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:57,860 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:57,861 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:57,861 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:57,862 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,862 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:57,862 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,863 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 09:59:57,864 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:57,864 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 09:59:57,864 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,865 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,865 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 09:59:57,865 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,865 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,866 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,866 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,866 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 09:59:57,867 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:57,867 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 09:59:57,867 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,868 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,868 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:57,869 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:57,869 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 09:59:57,869 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,870 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:57,871 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 09:59:57,871 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:57,872 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:57,872 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:57,873 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,873 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,874 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,874 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,874 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:57,876 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:57,876 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:57,883 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:57,884 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 09:59:57,885 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:57,885 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 09:59:57,886 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:57,887 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 09:59:57,888 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,888 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:57,889 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,890 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:57,890 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 09:59:57,890 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 09:59:57,928 - migrateData - INFO - 24 Idps created -2022-11-29 09:59:58,018 - migrateData - INFO - 409 Sps created -2022-11-29 10:00:11,820 - migrateData - INFO - No new data found -2022-11-29 10:00:11,825 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:00:11,827 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:00:11,827 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:00:11,827 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:00:11,828 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:00:11,828 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:00:11,828 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:00:11,829 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:00:11,829 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,830 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,830 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,830 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:00:11,831 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,831 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:00:11,831 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,843 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,844 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,844 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,844 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:00:11,844 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,845 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,845 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,846 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:00:11,846 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,846 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:00:11,847 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,847 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:00:11,847 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,848 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:00:11,848 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:00:11,848 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:00:11,848 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:00:11,849 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:00:11,849 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:00:11,849 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:00:11,849 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,850 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:00:11,850 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:00:11,850 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,851 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:00:11,851 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:00:11,852 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:00:11,852 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:00:11,853 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:00:11,853 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:00:11,854 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:00:11,854 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,855 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:00:11,855 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,855 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,856 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:00:11,856 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,857 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:00:11,857 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,857 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:00:11,857 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,858 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,858 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:00:11,859 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,859 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,859 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,860 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,860 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,860 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,860 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,861 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,861 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,861 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,862 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:00:11,862 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,862 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,862 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,866 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,867 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,867 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:00:11,868 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,868 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:00:11,868 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,869 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:00:11,869 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,869 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,870 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,871 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:00:11,872 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:00:11,873 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:00:11,874 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:00:11,879 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:00:11,881 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,882 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:00:11,884 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,885 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:00:11,886 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:00:11,887 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:00:11,888 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,889 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,889 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:00:11,889 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,890 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,890 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,890 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,890 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:00:11,891 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:00:11,891 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:00:11,891 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,891 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,891 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:00:11,892 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:00:11,892 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:00:11,892 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,892 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:00:11,893 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:00:11,894 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:00:11,894 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:00:11,895 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:00:11,896 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,896 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,897 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,898 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,898 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:00:11,902 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:00:11,904 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:00:11,905 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:00:11,910 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:00:11,911 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:00:11,912 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:00:11,912 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:00:11,913 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:00:11,913 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,913 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:00:11,914 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,914 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:00:11,917 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:00:11,918 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:00:11,949 - migrateData - INFO - 24 Idps created -2022-11-29 10:00:12,038 - migrateData - INFO - 409 Sps created -2022-11-29 10:02:13,406 - migrateData - INFO - No new data found -2022-11-29 10:02:13,410 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:13,411 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:13,412 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:02:13,413 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:02:13,413 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:13,414 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:13,415 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:13,415 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:13,416 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,417 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,417 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,418 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:13,418 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,419 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:02:13,419 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,419 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,420 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,420 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,421 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:13,422 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,423 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,424 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,424 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:13,425 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,426 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:13,427 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,428 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:02:13,430 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,433 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:02:13,433 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:13,433 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:13,433 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:02:13,434 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:02:13,434 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:02:13,434 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:02:13,434 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,435 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:02:13,435 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:13,435 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,436 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:13,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:13,436 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:13,436 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:02:13,437 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:13,437 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:13,437 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:02:13,438 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,438 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:13,438 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,438 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,439 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:13,439 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,439 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:13,439 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,440 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:13,440 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,440 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,440 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:02:13,441 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,441 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,441 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,442 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,442 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,442 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,443 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,446 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,446 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,448 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,449 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:13,449 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,450 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,450 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,451 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,454 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,455 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:13,456 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,457 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:13,458 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,459 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:13,459 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,460 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,460 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,461 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:13,462 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:13,462 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:13,463 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:13,463 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:13,466 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,467 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:13,468 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,469 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:02:13,469 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:13,470 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:02:13,470 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,471 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,471 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:13,472 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,472 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,473 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,473 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,474 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:02:13,475 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:13,475 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:13,476 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,477 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,477 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:13,478 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:13,478 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:13,479 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,479 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:13,480 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:13,480 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:13,481 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:13,482 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:13,482 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,483 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,484 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,485 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,486 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:13,486 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:13,488 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:13,489 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:13,490 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:13,490 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:13,491 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:13,492 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:13,493 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:13,495 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,495 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:13,495 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,496 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:13,496 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:13,497 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:13,525 - migrateData - INFO - 24 Idps created -2022-11-29 10:02:13,605 - migrateData - INFO - 409 Sps created -2022-11-29 10:02:19,851 - migrateData - INFO - No new data found -2022-11-29 10:02:19,856 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:19,856 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:19,856 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:02:19,857 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:02:19,857 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:19,857 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:19,858 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:19,858 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:19,859 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,859 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,860 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,860 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:19,861 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,861 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:02:19,861 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,862 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,862 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,862 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,862 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:19,863 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,863 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,863 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,863 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:19,864 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,864 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:19,864 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,865 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:02:19,865 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,866 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:02:19,866 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:19,866 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:19,867 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:02:19,867 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:02:19,867 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:02:19,868 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:02:19,868 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,868 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:02:19,869 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:19,869 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,869 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:19,869 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:19,870 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:19,870 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:02:19,870 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:19,870 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:19,871 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:02:19,871 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,871 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:19,872 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,872 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,872 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:19,873 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,873 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:19,873 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,874 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:19,874 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,874 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,875 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:02:19,875 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,875 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,876 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,876 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,877 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,877 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,878 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,878 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,879 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,879 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,879 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:19,880 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,880 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,880 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,881 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,881 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,881 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:19,882 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,882 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:19,882 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,883 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:19,883 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,883 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,884 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,884 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:19,885 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:19,885 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:19,885 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:19,885 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:19,886 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,886 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:19,886 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,887 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:02:19,887 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:19,887 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:02:19,888 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,888 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,888 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:19,889 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,889 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,889 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,890 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,890 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:02:19,890 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:19,891 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:19,900 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,902 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,902 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:19,903 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:19,903 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:19,904 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,904 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:19,905 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:19,910 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:19,910 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:19,911 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:19,911 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,911 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,912 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,912 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,913 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:19,913 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:19,913 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:19,914 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:19,915 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:19,916 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:19,917 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:19,917 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:19,918 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:19,918 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,918 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:19,918 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,919 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:19,919 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:19,919 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:19,946 - migrateData - INFO - 24 Idps created -2022-11-29 10:02:20,024 - migrateData - INFO - 409 Sps created -2022-11-29 10:02:29,049 - migrateData - INFO - No new data found -2022-11-29 10:02:29,053 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:29,053 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:29,054 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:02:29,054 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:02:29,054 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:29,054 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:29,055 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:29,055 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:29,055 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,055 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,055 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,056 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:29,056 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,056 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:02:29,057 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,057 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,057 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,057 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,057 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:29,057 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,058 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,058 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,058 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:29,058 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,059 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:29,059 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,059 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:02:29,059 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,060 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:02:29,060 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:02:29,060 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:29,062 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:02:29,064 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:02:29,065 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:02:29,067 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:02:29,067 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,068 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:02:29,068 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:29,068 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,068 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:29,069 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:29,069 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:29,069 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:02:29,070 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:29,070 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:29,070 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:02:29,071 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,071 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:29,071 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,072 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,072 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:29,072 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,072 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:29,072 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,073 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:02:29,073 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,073 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,074 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:02:29,074 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,074 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,074 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,075 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,075 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,075 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,076 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,076 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,076 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,077 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,077 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:02:29,077 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,077 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,078 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,078 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,078 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,083 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:02:29,084 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,085 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:29,087 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,088 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:02:29,089 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,091 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,094 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,095 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:02:29,097 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:29,099 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:29,100 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:29,102 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:29,103 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,104 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:29,107 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,108 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:02:29,109 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:29,111 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:02:29,112 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,114 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,115 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:02:29,116 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,117 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,118 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,119 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,119 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:02:29,120 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:29,129 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:02:29,130 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,130 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,131 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:29,131 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:29,131 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:02:29,131 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,132 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:29,132 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:02:29,133 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:29,134 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:29,134 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:29,137 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,138 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,139 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,139 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,140 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:29,140 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:29,141 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:29,143 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:29,143 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:02:29,144 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:29,144 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:02:29,144 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:29,146 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:02:29,146 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,146 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:29,147 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,147 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:29,147 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:02:29,148 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:02:29,174 - migrateData - INFO - 24 Idps created -2022-11-29 10:02:29,243 - migrateData - INFO - 409 Sps created -2022-11-29 10:03:37,081 - migrateData - INFO - No new data found -2022-11-29 10:03:37,086 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:03:37,087 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:03:37,089 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:03:37,090 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:03:37,091 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:03:37,092 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:03:37,093 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:03:37,094 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:03:37,094 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,094 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,095 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,095 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:03:37,096 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,096 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:03:37,097 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,097 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,097 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,098 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,098 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:03:37,098 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,099 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,099 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,099 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:03:37,100 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,100 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:03:37,100 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,101 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:03:37,101 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,102 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:03:37,102 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:03:37,103 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:03:37,103 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:03:37,103 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:03:37,104 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:03:37,104 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:03:37,104 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,105 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:03:37,105 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:03:37,106 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,106 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:03:37,106 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:03:37,107 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:03:37,107 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:03:37,107 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:03:37,108 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:03:37,108 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:03:37,108 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,109 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:03:37,109 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,109 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,110 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:03:37,110 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,110 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:03:37,111 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,111 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:03:37,111 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,112 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,112 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:03:37,112 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,113 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,113 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,114 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,114 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,114 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,115 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,115 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,116 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,116 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,117 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:03:37,117 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,117 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,118 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,118 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,118 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,119 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:03:37,119 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,119 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:03:37,119 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,120 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:03:37,120 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,121 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,121 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,121 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:03:37,122 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:03:37,122 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:03:37,123 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:03:37,123 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:03:37,123 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,123 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:03:37,124 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,124 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:03:37,125 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:03:37,125 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:03:37,125 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,125 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,126 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:03:37,126 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,126 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,127 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,127 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,127 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:03:37,128 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:03:37,128 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:03:37,128 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,128 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,129 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:03:37,129 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:03:37,129 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:03:37,130 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,130 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:03:37,130 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:03:37,131 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:03:37,131 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:03:37,131 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:03:37,132 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,132 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,132 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,133 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,133 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:03:37,134 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:03:37,134 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:03:37,135 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:03:37,135 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:03:37,136 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:03:37,136 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:03:37,137 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:03:37,137 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:03:37,138 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,138 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:03:37,138 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,138 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:03:37,139 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:03:37,139 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:03:37,170 - migrateData - INFO - 24 Idps created -2022-11-29 10:03:37,247 - migrateData - INFO - 409 Sps created -2022-11-29 10:03:37,257 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,258 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,258 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,258 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,259 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,259 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,260 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,260 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,260 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,261 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,261 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,261 - statisticsCountryHashedController - INFO - 418 -2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,262 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 430 -2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,263 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,264 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,265 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,266 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,266 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,266 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,267 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:37,268 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,269 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,269 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,269 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,269 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,270 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,271 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,272 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,272 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,273 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:03:37,274 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,274 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,274 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,274 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,275 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,275 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,276 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,276 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,276 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,276 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,277 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,277 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,277 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:03:37,277 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,278 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:03:37,278 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,278 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,279 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:03:37,279 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,280 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,281 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,281 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,281 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,281 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,282 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,282 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,282 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,283 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,283 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,284 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,284 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,285 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,285 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:03:37,285 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,285 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:03:37,286 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,287 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:03:37,287 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,288 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,288 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,289 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,289 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,290 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,291 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,291 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:03:37,291 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,291 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,292 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,292 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:03:37,292 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,293 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:03:37,293 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,293 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,294 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,294 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,294 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:03:37,295 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:03:37,295 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,295 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,295 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,296 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,296 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,296 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,297 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,298 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:03:37,298 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,298 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:03:37,299 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,300 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,300 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,300 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,300 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,301 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:03:37,301 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,301 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,302 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,303 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:03:37,305 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,305 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,305 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,305 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,306 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,306 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,306 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,306 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,307 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,307 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,307 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,307 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,308 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,309 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,309 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,309 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,309 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,310 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,310 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,311 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,311 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,311 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,312 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,313 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,313 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,313 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,314 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,314 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,314 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,314 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,315 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,316 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,316 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,316 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,317 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,317 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,318 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,319 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,320 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,321 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,323 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,323 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,324 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,324 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,325 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,325 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,325 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,326 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,326 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,326 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,326 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,327 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,328 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,328 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,328 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,328 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,329 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,330 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,330 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,330 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:37,331 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,331 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,331 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,331 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,332 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,332 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:03:37,333 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:03:37,333 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,334 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,334 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,334 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,335 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,335 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,338 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,339 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,339 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,340 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,340 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,341 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,341 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,341 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,341 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,342 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,342 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,343 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,343 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,343 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,346 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,347 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,347 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:37,347 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,347 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,348 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,351 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,351 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,351 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,351 - statisticsCountryHashedController - INFO - 460 -2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,352 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,353 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,353 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,353 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,353 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,354 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,355 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,355 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,356 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,356 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,357 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,357 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,358 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,358 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,359 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,359 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,360 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,360 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,360 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,360 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,361 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,361 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,361 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,361 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,362 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,363 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,363 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,363 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,363 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,364 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,365 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,365 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,378 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,379 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,380 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,381 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,382 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,383 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,384 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,384 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,384 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,384 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,385 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,387 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,387 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,388 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,388 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,388 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,389 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,390 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,390 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,390 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,390 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,391 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,391 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,391 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,391 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,392 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,393 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,394 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,395 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,396 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,397 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,397 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,397 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,398 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,399 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,400 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,401 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,402 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,403 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,404 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,405 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,406 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,407 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,407 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,407 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,408 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,408 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,408 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,409 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,410 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,410 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,410 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,411 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,411 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,412 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,413 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,418 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,418 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,419 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,419 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,420 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,420 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,420 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,420 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,421 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,421 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,427 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,427 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:03:37,428 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,428 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,429 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,430 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:03:37,430 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,430 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,431 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,431 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,434 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,435 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,436 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,437 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,438 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,439 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,441 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,441 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,441 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,442 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,442 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,451 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,452 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,453 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,453 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,454 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,455 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,455 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,455 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,456 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,456 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:03:37,457 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,457 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,457 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,458 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,458 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,458 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,459 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,459 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,459 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,460 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,460 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,460 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,460 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:03:37,461 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,461 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,462 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,463 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,463 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,463 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,463 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,464 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,465 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,466 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,466 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:03:37,466 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,467 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,467 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,467 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,468 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,469 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,470 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,470 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,470 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,470 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:03:37,471 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,472 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,472 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,473 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,473 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:03:37,473 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:03:37,474 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,474 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,474 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,474 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,475 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,476 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,477 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,478 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,479 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,480 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,481 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,482 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,483 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,484 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:37,485 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,486 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,487 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,488 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,489 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,490 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,492 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,492 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,492 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,493 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,495 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,495 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,496 - statisticsCountryHashedController - INFO - 144 -2022-11-29 10:03:37,496 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,497 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,498 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,499 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,500 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,501 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,502 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,503 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,505 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,506 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,507 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,508 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,509 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,510 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,511 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,512 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,512 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:03:37,515 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,516 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,517 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,518 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,518 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,519 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,519 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,520 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,520 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,521 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,521 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,521 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,521 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,522 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,522 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,522 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,524 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,524 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,524 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,525 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,525 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,525 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,525 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:37,526 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,527 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,527 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,527 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,527 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,528 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,528 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,528 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,528 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,529 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,529 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,530 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,530 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,531 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,531 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,531 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,531 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,532 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,532 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:03:37,533 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,534 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,535 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,536 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,537 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,538 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,538 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,539 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,539 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,540 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,540 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,540 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,540 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,541 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,541 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,541 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:37,542 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,542 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:03:37,542 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,543 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,543 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,543 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,544 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,544 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,545 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,545 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,545 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,546 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,546 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,547 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,549 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,550 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,550 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,550 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,551 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,551 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,551 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,551 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,552 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,553 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,553 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,553 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,554 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,554 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,554 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,554 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,555 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,555 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,555 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,556 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,556 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:03:37,560 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,561 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,561 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,562 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,562 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,563 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,564 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,565 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,565 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,566 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:03:37,566 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,566 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,566 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,573 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,574 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,574 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,575 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,576 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,576 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,577 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,577 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,577 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,578 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,578 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,579 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,579 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,580 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,581 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,581 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:03:37,581 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,582 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,582 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,582 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,582 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,583 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,583 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,583 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,584 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,585 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,585 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,585 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,586 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,586 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,587 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,587 - statisticsCountryHashedController - INFO - 353 -2022-11-29 10:03:37,587 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,587 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,588 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,588 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,589 - statisticsCountryHashedController - INFO - 161 -2022-11-29 10:03:37,589 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,589 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,589 - statisticsCountryHashedController - INFO - 393 -2022-11-29 10:03:37,590 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,590 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:03:37,592 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,592 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,593 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,594 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,595 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,595 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,595 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,596 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,597 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,597 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,598 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 376 -2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,599 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,600 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,601 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,602 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,603 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,604 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,604 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,614 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,616 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,616 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,617 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,618 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,619 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,619 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,620 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,621 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,621 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,622 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,622 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,623 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,623 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,623 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,624 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,624 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,624 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,625 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,625 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,626 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,626 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,626 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,627 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,627 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,627 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,628 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,628 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,629 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,629 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,629 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,630 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,630 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,630 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,631 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,631 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,631 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,632 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,632 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:03:37,632 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,633 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,633 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,633 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,634 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,634 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,634 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,635 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,635 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,635 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,636 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,636 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,637 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,637 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,637 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,638 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,638 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,638 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:37,639 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,639 - statisticsCountryHashedController - INFO - 396 -2022-11-29 10:03:37,645 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,645 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,646 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,647 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,647 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,648 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,648 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,649 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,649 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,649 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,649 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,651 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,652 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,652 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,653 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,654 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,654 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,654 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,655 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,655 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,655 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,656 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,656 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,657 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,672 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,672 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,673 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,674 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,675 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,675 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,675 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,675 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,676 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,676 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,676 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,677 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,677 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,678 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,678 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,678 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,679 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,679 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,680 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,680 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,680 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,681 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,681 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,682 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,682 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,683 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,683 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,684 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,685 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,685 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,685 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,685 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,686 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,686 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,686 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,687 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,687 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,688 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,688 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,689 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,689 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,689 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,690 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,690 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,691 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,691 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,691 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,692 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,692 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,693 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,693 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,694 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,694 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,695 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,696 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:03:37,696 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,697 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,697 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,698 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,699 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:37,699 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,701 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,702 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,703 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,704 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,704 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,705 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,706 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,706 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,707 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,708 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,708 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,709 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,710 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,710 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,711 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,712 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,712 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,713 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,713 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:37,714 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:37,714 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,715 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,715 - statisticsCountryHashedController - INFO - 353 -2022-11-29 10:03:37,716 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,717 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:37,717 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,717 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,717 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,718 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:37,718 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,718 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,718 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,719 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,719 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,719 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,720 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,720 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,720 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,721 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,724 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,735 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,735 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,735 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:37,736 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,737 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,738 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,738 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,738 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,739 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,740 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,740 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,740 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,741 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,741 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,742 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,743 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,743 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,743 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,743 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,764 - statisticsCountryHashedController - INFO - 205 -2022-11-29 10:03:37,765 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,765 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,766 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,766 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,767 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,768 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,769 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,773 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,776 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,778 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,780 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,780 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,781 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,782 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,784 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,785 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,785 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,786 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,789 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,790 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,791 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,792 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,793 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,793 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,794 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,795 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:37,796 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,797 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,798 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:37,799 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:37,800 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:37,801 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,802 - statisticsCountryHashedController - INFO - 396 -2022-11-29 10:03:37,803 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,803 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,804 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,804 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,805 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,805 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,806 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,806 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,807 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,807 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:03:37,807 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,808 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,808 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,808 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,809 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,809 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,810 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,810 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,811 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,811 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,811 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,812 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,812 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,812 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,813 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,813 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,814 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,834 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,834 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,834 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:37,835 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,835 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,835 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,839 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,839 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:03:37,840 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,840 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,846 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,847 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,848 - statisticsCountryHashedController - INFO - 144 -2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,849 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:37,850 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,850 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,850 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,850 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,851 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,852 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,853 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,853 - statisticsCountryHashedController - INFO - 161 -2022-11-29 10:03:37,853 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,854 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,854 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,854 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,855 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,856 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,857 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,858 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,859 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,859 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,860 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,860 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,861 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,861 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,862 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,863 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,863 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:37,864 - statisticsCountryHashedController - INFO - 188 -2022-11-29 10:03:37,864 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,865 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,865 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,866 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,867 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,868 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,868 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:37,869 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,870 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,872 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,878 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,882 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,883 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,883 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,883 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,884 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,884 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,884 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,884 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,885 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,885 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,885 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,886 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,886 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,886 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,887 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,887 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,887 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,888 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,888 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,888 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,888 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,889 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,889 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,890 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,890 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,891 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,891 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,892 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,892 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,892 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,892 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,893 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,893 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:37,893 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:37,894 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,894 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,894 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,895 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,895 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,895 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,895 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,896 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,896 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,896 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,897 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,897 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,897 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,898 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,898 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,898 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,898 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,899 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,899 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,900 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,900 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,900 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,901 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,901 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,901 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,902 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,902 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,902 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,902 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,903 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,903 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,903 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,904 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,904 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,904 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,905 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,905 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,906 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,906 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,906 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,906 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:37,907 - statisticsCountryHashedController - INFO - 353 -2022-11-29 10:03:37,907 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,908 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,908 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,908 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,909 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,909 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,909 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,910 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,910 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,910 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,911 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,911 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,912 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,912 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,913 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,913 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:03:37,914 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,914 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,914 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,915 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,915 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,915 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,916 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,916 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,917 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,917 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,917 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,918 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,919 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,919 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,920 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,920 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:03:37,921 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:37,921 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,921 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,922 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:03:37,922 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,922 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:03:37,923 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,924 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,924 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,924 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,925 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,925 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,926 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,926 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,926 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,939 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,939 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,940 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,941 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,941 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,942 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,942 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:37,944 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,944 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:37,945 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,945 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,946 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,949 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,950 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,950 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,950 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,951 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,951 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,952 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,952 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,953 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,953 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:37,954 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,954 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,955 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,955 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,955 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,956 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:37,956 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,956 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,957 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:37,957 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,957 - statisticsCountryHashedController - INFO - 188 -2022-11-29 10:03:37,958 - statisticsCountryHashedController - INFO - 375 -2022-11-29 10:03:37,958 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,958 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:37,959 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,959 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,959 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,960 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,960 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,960 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,961 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,963 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,963 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,964 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,965 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,966 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,967 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,967 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,968 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,969 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,969 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,970 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:37,971 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,971 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,972 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,972 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,974 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,974 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,975 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,975 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,976 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,976 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,977 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:37,977 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,978 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,978 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,979 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,980 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,980 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,981 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,982 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:37,982 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:37,982 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,983 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,983 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,984 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,986 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,987 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,987 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:37,988 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:37,988 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:37,989 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:37,989 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:37,990 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:37,990 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,991 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:37,991 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,992 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:37,992 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:37,993 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:37,993 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:37,994 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,001 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,002 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:38,004 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,004 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,004 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,004 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,005 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,005 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,005 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,006 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,006 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,006 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,006 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,007 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,007 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,007 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,008 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,008 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,008 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:38,008 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,009 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,010 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,010 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,010 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,011 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,011 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,012 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,012 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,012 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,012 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,013 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,013 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,014 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,014 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,014 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,014 - statisticsCountryHashedController - INFO - 375 -2022-11-29 10:03:38,015 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,016 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,018 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,019 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,019 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,020 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,020 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,022 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,023 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,024 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,024 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,024 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,024 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,025 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,026 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,027 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,028 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,029 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,030 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,030 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,031 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,031 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,031 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,032 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,032 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,032 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,032 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,033 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,034 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,034 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,034 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,034 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,035 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,036 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,037 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,037 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,037 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,037 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,038 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,038 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,038 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,038 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,039 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,039 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,039 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,040 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,040 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,040 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,041 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,042 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,042 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,042 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,042 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,043 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,043 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,043 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,043 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,044 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,045 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,045 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,045 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,045 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,046 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,046 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,047 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,056 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,058 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,059 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,066 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,067 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,067 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,067 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,067 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,068 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,068 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,069 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:38,069 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,069 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,070 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,070 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,070 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,071 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,072 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,072 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,073 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,074 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,074 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,075 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,075 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,076 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,077 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,078 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:38,079 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,079 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,082 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:03:38,083 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,083 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,084 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,084 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,085 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,086 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,095 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,096 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,097 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,101 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,102 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,104 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,105 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,106 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,107 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,108 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,108 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,109 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,110 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,111 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,111 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:38,112 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,113 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,113 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,116 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,117 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,118 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,118 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,119 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,120 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,121 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,122 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,123 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,126 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,127 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,128 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,128 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,129 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,130 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,130 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,131 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,132 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,132 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,133 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,133 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,134 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,135 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,136 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,137 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,138 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,138 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,139 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,139 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,140 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,141 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,142 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,142 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,143 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,147 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,148 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,150 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,151 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,151 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,152 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,153 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,154 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,155 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,156 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,157 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,158 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,159 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,161 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,161 - statisticsCountryHashedController - INFO - 348 -2022-11-29 10:03:38,161 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,162 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,163 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,164 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,164 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,164 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,165 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,166 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,166 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,166 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,167 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,167 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,168 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,169 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,170 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,171 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,171 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,172 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,172 - statisticsCountryHashedController - INFO - 144 -2022-11-29 10:03:38,173 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,173 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:38,174 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,174 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,176 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,176 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,176 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:38,176 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,177 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,178 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,178 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,178 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,179 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,179 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,180 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,180 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,181 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,181 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,181 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,182 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,182 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,183 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,183 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,183 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,184 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,184 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,185 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:38,186 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,186 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,187 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,187 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,187 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,188 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,188 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,189 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,189 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,189 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,190 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,191 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,191 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:38,191 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,192 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,192 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,193 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,193 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,194 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,194 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,195 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,196 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,196 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,196 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,197 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,198 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,198 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,199 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,200 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:38,201 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,203 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:38,203 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,203 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,204 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,204 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,204 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,205 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,205 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,205 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,206 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,206 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,206 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,207 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,208 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,208 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,208 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,209 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,209 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,209 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,212 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,213 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,213 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,214 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,215 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,215 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,216 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,218 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,219 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,219 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,220 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,222 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,223 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,224 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,224 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:03:38,225 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,225 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,226 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,226 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,227 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,228 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,229 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,229 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,230 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,231 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,232 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,232 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,232 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,236 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,236 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,236 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,237 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,238 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,238 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,239 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,239 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,239 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,240 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,240 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,241 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,241 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,241 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,242 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,243 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,244 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,244 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,245 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,245 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,246 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,247 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,248 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,248 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,249 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,249 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,249 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,249 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,250 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,250 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,250 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,251 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,251 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,251 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,251 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,252 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,252 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,253 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,254 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,254 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,255 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,255 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,256 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,256 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,257 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:38,257 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,257 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,258 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,258 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,258 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,259 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,259 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,260 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,260 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:38,261 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,261 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,261 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,261 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,262 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,262 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,263 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,263 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,263 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,264 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,264 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,264 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,264 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,265 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,265 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,265 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,265 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,266 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,266 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,266 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:38,267 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,267 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:38,267 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,268 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,268 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:38,268 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,269 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,269 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,269 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,270 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,270 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,270 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,271 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,271 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,273 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,273 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,274 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,274 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,274 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,275 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,275 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,276 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,277 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,277 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,278 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,279 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,279 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,279 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:38,280 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,281 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,281 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,282 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,282 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,282 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,283 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,283 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,284 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,284 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,285 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,285 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,285 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,286 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,287 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,287 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,288 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,290 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,290 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,291 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,291 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,291 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,292 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,292 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,292 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,293 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,294 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,294 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,297 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,299 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,299 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,300 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,301 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,301 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,302 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,303 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,303 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,303 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,304 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,305 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,305 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,305 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,305 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,306 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,307 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,307 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,308 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,308 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,309 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,309 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,309 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,309 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,310 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:38,310 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,310 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,311 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,312 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,312 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,312 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,313 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,313 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,314 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,314 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,314 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,314 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,315 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,315 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,316 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,316 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,317 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,317 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,317 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,318 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,319 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,319 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,319 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,320 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,320 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,321 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,321 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,321 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,322 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,322 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,323 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,323 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,324 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,324 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,325 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,325 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,326 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,327 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,327 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,327 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,327 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,328 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,328 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,328 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,329 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,330 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,330 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,331 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,331 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,333 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,334 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,334 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,334 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,335 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,335 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,335 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,336 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,337 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,337 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,337 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,338 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,338 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,339 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,339 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,339 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,340 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,340 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,341 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,341 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,342 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,342 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,343 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,343 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,343 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,344 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,344 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,344 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,345 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,345 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,345 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,345 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,346 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,346 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,346 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,346 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:38,347 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,347 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,347 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:03:38,347 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,348 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,348 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,348 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,348 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,349 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,349 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,349 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,350 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,350 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,350 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:38,351 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,351 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,352 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,373 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,373 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,377 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,377 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,379 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:03:38,381 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,381 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,383 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,383 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,384 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,385 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,385 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,386 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,387 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,387 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,388 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,389 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,389 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,389 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,390 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,391 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,391 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,391 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,393 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,394 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,395 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,397 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,398 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,399 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,403 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,404 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,405 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,406 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,418 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,419 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,419 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,419 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,419 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,420 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,421 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,422 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,422 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,422 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,422 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,423 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,423 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,423 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,423 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,424 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,425 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,426 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,427 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,427 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,428 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,428 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,429 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,429 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,429 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,430 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,430 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,430 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,431 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,431 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,432 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,432 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,433 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,433 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,433 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:03:38,434 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,434 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:03:38,435 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,436 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,436 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,437 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,438 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,438 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,439 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,439 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,440 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,440 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,441 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,441 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,442 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,442 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,443 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,444 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,444 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,445 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,445 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:03:38,445 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,446 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,446 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,446 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:03:38,447 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,447 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,447 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,448 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,448 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,448 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,448 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,449 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,449 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,449 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,450 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,450 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,450 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,451 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,451 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,451 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,452 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,452 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,452 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,452 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,453 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,453 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,453 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,454 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,454 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,454 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,455 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,456 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,456 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,456 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,456 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,457 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,457 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,457 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,457 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,458 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,458 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,458 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,459 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,459 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,459 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,460 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,460 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,460 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,460 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,461 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,461 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,461 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,461 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,462 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,463 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,463 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,463 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,464 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,464 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,464 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,465 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,465 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,466 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,466 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,466 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,467 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,467 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,467 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,468 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,468 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,469 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,469 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,469 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,470 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,470 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,470 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,471 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,471 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,471 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,474 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,475 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,485 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,485 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,486 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,486 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,486 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:03:38,487 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,487 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,500 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,502 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,503 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,504 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,505 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,505 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,506 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,506 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,507 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:03:38,508 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,508 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,509 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,509 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,510 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,510 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,510 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,511 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,512 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,512 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,513 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,513 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,513 - statisticsCountryHashedController - INFO - 353 -2022-11-29 10:03:38,514 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,514 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,515 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,515 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,516 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,516 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,517 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,517 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,517 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,518 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,519 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,519 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:03:38,520 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,521 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,522 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,523 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,523 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,524 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,524 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,525 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,527 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,527 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,527 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,528 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,528 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,529 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,529 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,530 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,531 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,531 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,532 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,533 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,533 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,534 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,534 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,535 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,535 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,536 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,537 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,537 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,538 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,550 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,552 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,552 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,554 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,555 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,556 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,557 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,558 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,559 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,560 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,560 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,562 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,563 - statisticsCountryHashedController - INFO - 205 -2022-11-29 10:03:38,563 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,564 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,565 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,565 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,565 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,566 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,566 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,567 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,567 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,567 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,568 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,568 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,568 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,569 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,570 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,570 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,570 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,571 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,572 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,572 - statisticsCountryHashedController - INFO - 188 -2022-11-29 10:03:38,572 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,573 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,574 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,574 - statisticsCountryHashedController - INFO - 205 -2022-11-29 10:03:38,575 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,575 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,575 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,576 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,576 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,577 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,577 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,578 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,578 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,579 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:03:38,579 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:03:38,579 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,579 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,580 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,580 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,581 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,581 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,582 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,582 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:03:38,582 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,583 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,583 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,584 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,584 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,584 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,585 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,586 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,587 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,587 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,587 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,588 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,588 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,588 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:03:38,589 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,590 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,590 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,590 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,590 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,591 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,592 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,593 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,595 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,597 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,598 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,598 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,599 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,599 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,600 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,600 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,600 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,601 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:03:38,602 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,602 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,602 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,602 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,605 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,605 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,606 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,606 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:03:38,606 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,607 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,608 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,609 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,610 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:03:38,611 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,613 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,613 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,614 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,614 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,615 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,615 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,616 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,616 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,617 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,617 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,618 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,618 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,619 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,620 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:03:38,620 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,621 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,622 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,623 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,624 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:03:38,625 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:03:38,625 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:03:38,626 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,626 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,627 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,629 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,630 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:03:38,646 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:03:38,647 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,647 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,648 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,649 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:03:38,649 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:03:38,650 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:03:38,651 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,651 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,652 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,653 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:03:38,653 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,655 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,655 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,657 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,659 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,659 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,662 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,663 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,663 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,663 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,663 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,664 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:03:38,664 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:03:38,664 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:03:38,664 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,665 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:03:38,666 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,666 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:03:38,666 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:03:38,667 - migrateData - INFO - 3612 Country Stats created -2022-11-29 10:07:28,975 - migrateData - INFO - No new data found -2022-11-29 10:07:28,980 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:07:28,982 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:07:28,985 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:07:28,987 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:07:28,988 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:07:28,989 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:07:28,990 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:07:28,990 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:07:28,990 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:28,991 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:28,991 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:28,992 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:07:28,993 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:28,994 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:07:28,994 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:28,994 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:28,995 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:28,995 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:28,995 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:07:28,996 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:28,996 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:28,996 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:28,997 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:07:28,997 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:28,997 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:07:28,998 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:28,998 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:07:28,998 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:28,999 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:07:28,999 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:07:29,000 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:07:29,000 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:07:29,000 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:07:29,000 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:07:29,001 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:07:29,001 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:29,001 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:07:29,002 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:07:29,002 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,002 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:07:29,003 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:07:29,003 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:07:29,003 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:07:29,004 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:07:29,004 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:07:29,004 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:07:29,005 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,005 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:07:29,005 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:29,006 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,006 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:07:29,006 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:29,007 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:07:29,007 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,007 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:07:29,007 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,008 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,008 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:07:29,008 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,009 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,009 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,010 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,010 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:29,010 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,011 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,012 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,012 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,014 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,015 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:07:29,018 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,019 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,019 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,020 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,020 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,021 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:07:29,021 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,024 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:07:29,025 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,027 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:07:29,027 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,028 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,028 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,029 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:07:29,029 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:07:29,030 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:07:29,030 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:07:29,030 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:07:29,031 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:29,031 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:07:29,032 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,032 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:07:29,033 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:07:29,033 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:07:29,034 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:29,034 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,035 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:07:29,035 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,036 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,038 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,041 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,042 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:07:29,043 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:07:29,043 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:07:29,044 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,045 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,046 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:07:29,046 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:07:29,047 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:07:29,048 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,049 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:07:29,049 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:07:29,050 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:07:29,051 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:07:29,051 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:07:29,052 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,053 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,053 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,054 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,055 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:07:29,057 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:07:29,058 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:07:29,059 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:07:29,060 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:07:29,061 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:07:29,062 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:07:29,063 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:07:29,064 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:07:29,065 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,066 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:07:29,067 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,067 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:07:29,068 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:07:29,069 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:07:29,094 - migrateData - INFO - 24 Idps created -2022-11-29 10:07:29,207 - migrateData - INFO - 409 Sps created -2022-11-29 10:08:05,913 - migrateData - INFO - No new data found -2022-11-29 10:08:05,922 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:08:05,922 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:08:05,923 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:08:05,923 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:08:05,923 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:08:05,923 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:08:05,924 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:08:05,924 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:08:05,924 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,925 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,925 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,925 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:08:05,926 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,926 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:08:05,926 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,927 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,927 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,927 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,928 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:08:05,928 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,928 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,928 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,929 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:08:05,929 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,929 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:08:05,929 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,930 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:08:05,930 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,930 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:08:05,931 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:08:05,931 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:08:05,931 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:08:05,932 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:08:05,932 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:08:05,932 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:08:05,932 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,933 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:08:05,933 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:08:05,933 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,933 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:08:05,934 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:08:05,934 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:08:05,934 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:08:05,935 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:08:05,935 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:08:05,935 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:08:05,936 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,936 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:08:05,936 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,936 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,937 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:08:05,937 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,937 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:08:05,937 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,938 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:08:05,938 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,938 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,939 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:08:05,939 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,939 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,940 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,940 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,940 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,941 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,941 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,942 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,942 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,942 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,943 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:08:05,943 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,943 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,943 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,944 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,944 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,944 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:08:05,945 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,945 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:08:05,945 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,945 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:08:05,946 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,946 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,946 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,947 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:08:05,947 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:08:05,947 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:08:05,948 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:08:05,948 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:08:05,948 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,949 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:08:05,949 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,949 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:08:05,950 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:08:05,951 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:08:05,951 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,952 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,952 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:08:05,952 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,953 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,953 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,953 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,953 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:08:05,953 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:08:05,954 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:08:05,954 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,954 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,960 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:08:05,970 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:08:05,970 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:08:05,973 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,974 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:08:05,974 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:08:05,975 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:08:05,975 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:08:05,975 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:08:05,976 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,976 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,977 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,977 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,977 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:08:05,978 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:08:05,978 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:08:05,979 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:08:05,979 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:08:05,979 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:08:05,980 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:08:05,980 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:08:05,981 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:08:05,981 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,981 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:08:05,981 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,984 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:08:05,985 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:08:05,985 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:08:06,016 - migrateData - INFO - 24 Idps created -2022-11-29 10:08:06,097 - migrateData - INFO - 409 Sps created -2022-11-29 10:08:06,108 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,108 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,109 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,109 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,110 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,110 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,110 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:06,111 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,111 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,111 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,111 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,112 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,113 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,114 - statisticsCountryHashedController - INFO - 418 -2022-11-29 10:08:06,114 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,114 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,114 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,115 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:06,116 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,116 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,116 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,117 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,117 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,118 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,118 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,119 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,119 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,119 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,120 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,120 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 430 -2022-11-29 10:08:06,121 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,122 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,122 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,123 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,123 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,123 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,124 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,124 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,124 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,125 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,125 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,126 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,127 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,128 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,128 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,128 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,129 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,129 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,130 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,130 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,131 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,131 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,132 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,132 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,133 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,133 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,134 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,135 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,135 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,135 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,136 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,136 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,137 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,137 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,137 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,138 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,139 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,139 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,140 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,140 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,141 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,141 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:08:06,142 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,143 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,145 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,145 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,146 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,146 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:06,146 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,147 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,147 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,147 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,147 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,148 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,148 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,148 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,149 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,149 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,149 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,150 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,150 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,150 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,150 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,151 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,151 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,151 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,152 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,152 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,152 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,153 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:06,153 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,153 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,154 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,154 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:06,154 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,155 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,155 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,156 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,157 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,158 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,158 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,158 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,159 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,160 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,160 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,161 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,161 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:08:06,162 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,162 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,162 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,163 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:06,163 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,163 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,164 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,164 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,165 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,166 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:06,166 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,167 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,167 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,167 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,168 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,168 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,169 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:06,169 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,169 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:06,174 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,175 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,175 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,176 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,177 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,177 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:06,177 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,178 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,179 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,179 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,179 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:08:06,179 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,180 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,180 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,180 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:08:06,180 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,181 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,181 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,181 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,181 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,182 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,183 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,183 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,183 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:06,183 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,184 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,184 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,184 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,184 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,185 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,185 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,185 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,186 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,186 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,186 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,187 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,187 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,187 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,187 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,188 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,188 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,188 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,188 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,190 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,191 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,191 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,191 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,192 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,192 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,192 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,192 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,193 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:06,193 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,193 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,193 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,194 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,194 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,194 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,195 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,195 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:08:06,195 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,195 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,196 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,196 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,196 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:08:06,196 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,197 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,197 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,197 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,198 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,198 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:08:06,198 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,198 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,199 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,199 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:06,208 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,210 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,215 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,218 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,221 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,222 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,222 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,223 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,223 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,223 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,224 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,224 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,225 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,225 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:08:06,225 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,225 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,226 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,226 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,227 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,227 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,228 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,228 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,229 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,229 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,230 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,230 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:08:06,230 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,230 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,231 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,231 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,232 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,232 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,233 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:08:06,233 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,234 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,234 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,234 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,235 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,235 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,235 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,236 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,236 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,237 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,237 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:06,237 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,238 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:08:06,238 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,239 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,239 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,239 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,240 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:08:06,240 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,240 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,241 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,241 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,241 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,242 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,242 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,242 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,242 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,243 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,243 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,244 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,244 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,248 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,248 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,249 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,250 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,250 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,250 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:08:06,251 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,251 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,252 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,252 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,252 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,252 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,253 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,253 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,253 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,254 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,254 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,254 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:08:06,255 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,255 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,256 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,256 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,256 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,257 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,257 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:08:06,258 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,258 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,258 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,259 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,259 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,259 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,260 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,260 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,260 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,260 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,261 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,261 - statisticsCountryHashedController - INFO - 451 -2022-11-29 10:08:06,262 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,262 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,262 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,262 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,263 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,263 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,263 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,264 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,264 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:08:06,264 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,265 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,265 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,266 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,266 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,266 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,267 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,268 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,268 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,268 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,269 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,269 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,270 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,270 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,271 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,271 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,271 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,272 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,272 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,273 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,273 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:06,273 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,274 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,274 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,274 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,275 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,275 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,275 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,276 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,276 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,276 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,277 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:06,277 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,277 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,277 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,278 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,278 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,278 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,278 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,279 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,279 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,279 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,280 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,280 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,280 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:06,281 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,281 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,281 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,282 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,282 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,282 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,282 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:06,283 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,283 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,283 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,284 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,284 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:06,284 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,284 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,285 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,285 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,285 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,286 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,286 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,287 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,287 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,287 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,287 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:06,288 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,288 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,289 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,289 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,289 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,290 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,290 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,290 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,291 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,291 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,292 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,292 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,292 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,292 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,293 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,293 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,293 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,294 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,294 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:08:06,294 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,295 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,295 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,295 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,296 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 17 -2022-11-29 10:08:06,297 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,298 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,298 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,299 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,299 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,299 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,299 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,300 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,300 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:08:06,301 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,301 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,302 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,302 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,302 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,303 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,303 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,303 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,306 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,307 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,308 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,308 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,308 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,311 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,312 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:08:06,313 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,313 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,313 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,314 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,314 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,315 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,315 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,315 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:06,315 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,316 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,317 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,318 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,318 - statisticsCountryHashedController - INFO - 243 -2022-11-29 10:08:06,319 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,319 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,320 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,320 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,320 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,321 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,321 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,321 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,322 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,322 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,323 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,323 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,323 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,323 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,324 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,324 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,324 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,324 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,325 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,326 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,326 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,326 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,326 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,327 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,327 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,327 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,328 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,328 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,328 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,329 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,329 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,329 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,330 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,330 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,330 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,330 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,331 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,331 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,332 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,332 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,333 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,333 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,334 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,334 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,335 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,335 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,335 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,336 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,336 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,337 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,337 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,338 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,338 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,338 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,338 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,339 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,339 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,339 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,340 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,340 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,340 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,340 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,341 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,342 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,343 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,344 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:06,345 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,346 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,347 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,348 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,349 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,350 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,351 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,351 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,352 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,353 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,354 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,355 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,356 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,357 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,358 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,358 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,359 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,359 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,379 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,380 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,380 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,381 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:06,382 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,382 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,383 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,384 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,385 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,386 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,387 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,389 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,390 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,392 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,393 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,394 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,395 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,396 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:08:06,397 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,399 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,400 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,401 - statisticsCountryHashedController - INFO - 447 -2022-11-29 10:08:06,402 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,403 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,405 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,406 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,407 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,409 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,410 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,412 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,413 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,414 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,415 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,416 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,417 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,418 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,419 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,419 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:06,420 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,422 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,424 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,424 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,426 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,427 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,428 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,429 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,430 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,431 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,439 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,439 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,440 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,440 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,440 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,441 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,441 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:06,441 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,441 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,442 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,442 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,442 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,443 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,443 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,443 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:06,443 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,444 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,444 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,444 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,445 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,445 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,445 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,446 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,446 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,446 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,446 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,447 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,447 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:06,447 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,448 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,448 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,448 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,449 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:06,449 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,449 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:06,450 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,450 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:06,450 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,451 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,451 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,451 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,451 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,452 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,452 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,452 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,453 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,453 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,453 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,454 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,454 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,454 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,455 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,455 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,455 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,456 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,456 - statisticsCountryHashedController - INFO - 460 -2022-11-29 10:08:06,456 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,456 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,457 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,457 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,458 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,458 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,458 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,459 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,459 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,460 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,461 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,461 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,462 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,463 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,463 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,463 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,464 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,465 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,465 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,465 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,466 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,466 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,467 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,467 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,467 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,468 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,468 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,469 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,469 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,469 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,470 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,470 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,470 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,471 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,471 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,472 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,475 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,475 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,476 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,476 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,476 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,477 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,477 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,477 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,478 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,478 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,479 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,479 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,480 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,480 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,481 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,481 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:06,481 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,482 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,482 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,482 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,483 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,483 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,484 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,484 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,484 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,485 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,486 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,486 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,486 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,487 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,487 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,488 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,488 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,489 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,489 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,490 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,490 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,491 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,491 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,492 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,492 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,492 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,493 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,493 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,494 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,494 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,494 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,495 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,495 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,496 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,496 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,497 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,497 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,498 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,498 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,499 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,499 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,500 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,501 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,501 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,501 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,502 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,502 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,503 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,506 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,507 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,507 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,507 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,508 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,508 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,508 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,509 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,510 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,510 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,510 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,511 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,511 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,511 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,512 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,512 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:06,513 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,513 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,513 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,523 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,523 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,527 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,527 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,528 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,528 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,529 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,529 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,529 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,530 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,530 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,531 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,531 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,531 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,532 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,532 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,533 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,533 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,534 - statisticsCountryHashedController - INFO - 14 -2022-11-29 10:08:06,535 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,536 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,538 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,539 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,541 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,541 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:06,542 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,543 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,544 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:06,544 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,544 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:06,547 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,548 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,549 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,550 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,551 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,552 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,553 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,554 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,554 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,554 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,554 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,555 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:06,556 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,557 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,558 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,558 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,558 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:06,558 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,566 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,566 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,567 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,567 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,567 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,567 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,568 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,568 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,568 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,570 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,573 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,573 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,573 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,573 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,574 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,574 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,574 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,574 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,575 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,575 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,576 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,577 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,578 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,579 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,580 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,581 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,582 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,582 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,583 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,584 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,585 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,593 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,593 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:06,594 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,595 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,596 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,596 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:06,599 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,599 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,599 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,600 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,601 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,602 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,603 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,603 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,604 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,605 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:06,605 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,606 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,607 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,608 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,608 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,609 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,610 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,610 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,611 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,612 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,613 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,613 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,613 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,616 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,617 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,617 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,618 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,618 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,618 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,619 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,619 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,619 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:06,620 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,620 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:06,620 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,620 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:06,621 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,621 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,621 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,622 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,622 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,622 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,623 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,623 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,623 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,624 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,625 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,625 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,626 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,626 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,626 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,626 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,627 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,627 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,627 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,628 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,628 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,628 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,629 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,629 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,630 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,630 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,631 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,631 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,631 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,632 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,632 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,633 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,633 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,633 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,633 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,634 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,634 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,638 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,639 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,640 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,641 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,642 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:06,643 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,644 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,645 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,646 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,646 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,647 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,648 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,649 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,650 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,651 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,652 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,653 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,653 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,654 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,655 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,656 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,656 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,657 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,657 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,658 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,658 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,658 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,659 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,660 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,661 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,661 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,661 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,662 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,662 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,662 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,663 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,665 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,665 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,665 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,666 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,666 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,666 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,666 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,667 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,667 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,668 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,668 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,668 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,669 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,669 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,669 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,670 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,670 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,670 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,670 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,671 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,671 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,671 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,672 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,672 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,673 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,674 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,674 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,685 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,686 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,686 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,686 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,687 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,687 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,688 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,688 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,688 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,689 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,694 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,694 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,694 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,695 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,695 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,695 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,696 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,697 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,697 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,697 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,697 - statisticsCountryHashedController - INFO - 4 -2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,698 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,699 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,700 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,700 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,700 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:08:06,700 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,701 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,701 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,701 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,702 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,710 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,711 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,711 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,712 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,712 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:08:06,712 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,712 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,713 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,713 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:06,713 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,713 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,714 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,714 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,714 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,714 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,715 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,715 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,715 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,716 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:06,716 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,716 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,716 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,717 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,717 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,717 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,717 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,718 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,718 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,718 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,718 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,719 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,719 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,719 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,719 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,720 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,720 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,720 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,723 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,724 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,724 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,724 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,725 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,726 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:06,727 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,727 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:06,727 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,727 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,728 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,728 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,728 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,728 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,729 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,730 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,731 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:08:06,731 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,731 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,731 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,732 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,732 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,732 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,733 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,733 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,735 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,735 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,736 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,739 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,739 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,740 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,740 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,741 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,741 - statisticsCountryHashedController - INFO - 4 -2022-11-29 10:08:06,742 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,742 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,743 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,743 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,743 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,743 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,744 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,744 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,744 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,744 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,745 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:06,745 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,745 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,746 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,746 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,746 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,746 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,747 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,747 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,747 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:06,747 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,748 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,748 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,748 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,748 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:08:06,749 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,749 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,750 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,750 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,750 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,751 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,751 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,752 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,752 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,753 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,753 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,754 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,754 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,755 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,755 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,755 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,755 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,756 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,756 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,756 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,756 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,757 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,758 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,758 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:08:06,758 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,758 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,759 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,759 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,759 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,759 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,760 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,760 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,760 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:06,760 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,761 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,762 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,762 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,762 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,766 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,767 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,767 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,768 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,768 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,768 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,769 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,769 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,769 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,769 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,770 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,770 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,770 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,770 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,771 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,771 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,771 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,771 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,772 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,772 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,772 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,772 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,773 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,773 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,773 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,774 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,774 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,774 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,774 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:08:06,775 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,775 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,775 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,776 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,776 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,776 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,777 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,777 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,777 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,778 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,778 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,778 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,778 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,779 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,779 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,779 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,779 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,780 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,780 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,780 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,780 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,781 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,781 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,782 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,783 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:06,783 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,784 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,785 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,786 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,786 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,786 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,787 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,787 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,788 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,788 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:08:06,789 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,789 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:06,790 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,791 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,791 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,792 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,802 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,812 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,813 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,815 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:08:06,816 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,817 - statisticsCountryHashedController - INFO - 374 -2022-11-29 10:08:06,819 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,820 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,821 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,823 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,825 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,826 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,828 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,829 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,831 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,832 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:06,834 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,836 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,842 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,844 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,845 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,846 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,848 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,849 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,850 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,850 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,851 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,851 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,852 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,853 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,853 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:08:06,853 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,853 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,854 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,854 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,854 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,855 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,856 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,856 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,857 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:06,857 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,857 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,857 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,858 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,858 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,859 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,859 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,859 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,860 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,860 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,861 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,861 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:06,861 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,861 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,862 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,862 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,863 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,863 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,863 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,864 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,864 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,864 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,865 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,865 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,866 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,866 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,867 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,868 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,868 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:06,868 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,869 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,869 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,869 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,869 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,870 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,870 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,870 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,871 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,872 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,873 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,874 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,874 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,875 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,875 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,876 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,877 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,878 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,878 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,879 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,880 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,881 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,882 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,882 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,883 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,883 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,884 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,885 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:08:06,885 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,885 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,886 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,887 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,887 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,888 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:06,888 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:06,889 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,889 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,889 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,890 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,890 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,891 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,892 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,892 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,892 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,893 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,893 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:06,894 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,894 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:06,895 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,895 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,896 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,896 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,896 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,897 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,897 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,898 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,898 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,899 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,899 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,900 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,900 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,900 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,901 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,901 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,901 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,902 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,902 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,902 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,903 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,903 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,903 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,904 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,904 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,905 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,905 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,905 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,906 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,906 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,906 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,907 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,907 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,909 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,910 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,911 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:06,912 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,912 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,913 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,914 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:06,914 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,915 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,915 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,916 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,916 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,917 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,917 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,917 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,918 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,919 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,920 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,920 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,921 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,921 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,922 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,922 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,923 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,924 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,924 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,924 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,925 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:06,925 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,925 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,925 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,926 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,926 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,927 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,928 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,928 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,929 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,929 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,930 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,930 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,931 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,932 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:06,932 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,932 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,933 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,934 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,934 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,935 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,935 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,936 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,936 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,937 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,938 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,938 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,938 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:06,939 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,939 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,939 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,940 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,940 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:06,941 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,941 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,942 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,942 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,942 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,943 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,943 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:06,946 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,947 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:06,947 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,948 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:06,948 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,948 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,949 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,950 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,950 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,950 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,950 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,951 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,951 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,952 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,952 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,952 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:06,952 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,953 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,953 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,953 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,953 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,954 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,954 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,954 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,954 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,955 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:06,955 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,955 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,955 - statisticsCountryHashedController - INFO - 144 -2022-11-29 10:08:06,956 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,956 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,957 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,957 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:06,957 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,958 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,958 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,959 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,959 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,959 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,960 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,960 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,960 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,960 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,961 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,961 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:06,962 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,963 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:06,964 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:06,965 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,966 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,966 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,966 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,973 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,974 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,974 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,975 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,976 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:06,976 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,977 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,977 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,978 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:06,978 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,979 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:06,979 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:06,979 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,980 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:06,980 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:06,981 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:06,982 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,983 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:06,984 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:06,985 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,986 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:06,987 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:06,988 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:06,989 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,002 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,003 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,004 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,005 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:07,005 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,006 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,006 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:07,007 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,007 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,008 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,009 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,009 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,010 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,011 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:07,011 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,012 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,012 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,013 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,014 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,015 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,015 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,016 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,017 - statisticsCountryHashedController - INFO - 4 -2022-11-29 10:08:07,017 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,018 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,018 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,019 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,019 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,020 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,020 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,021 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,021 - statisticsCountryHashedController - INFO - 4 -2022-11-29 10:08:07,022 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,023 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,023 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,024 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,024 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,025 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,026 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,039 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,043 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,044 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,044 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:07,045 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,045 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:07,045 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,046 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,046 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,047 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,047 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,048 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:07,048 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,049 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,049 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,049 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:07,049 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,050 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,050 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,050 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,051 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:07,051 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,051 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,051 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,052 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,052 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,053 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,053 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,053 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,054 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,054 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,054 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,054 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,055 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:07,055 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,056 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,057 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,057 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,066 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,067 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:07,067 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,069 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,069 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,069 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,070 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,071 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,072 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,072 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,073 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,074 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,074 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,074 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,075 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:07,075 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,076 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:07,076 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,077 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,077 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,078 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:08:07,080 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,080 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:07,081 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,081 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,082 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,082 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,083 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,083 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,084 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,084 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,085 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,085 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:07,086 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:07,086 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,087 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,089 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,090 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,091 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:07,091 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,094 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,100 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,100 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,101 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,101 - statisticsCountryHashedController - INFO - 380 -2022-11-29 10:08:07,101 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,102 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,102 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:07,102 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:07,103 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:07,103 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,103 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,103 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:07,104 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,104 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,104 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,104 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,105 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,105 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,105 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:07,105 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:07,106 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,106 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,106 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:07,106 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,107 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,107 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,107 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,107 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:07,108 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,108 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,108 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,108 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,109 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,110 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,110 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,110 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,110 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,111 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,111 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:07,111 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,111 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,112 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,112 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,112 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,112 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:07,113 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,113 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:07,113 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,113 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:08:07,114 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,114 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,114 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,114 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,115 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,115 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,115 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,116 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,116 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,116 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,116 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,117 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,118 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:07,118 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,118 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,119 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:07,119 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,119 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,119 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,120 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:07,120 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,120 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,121 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:07,121 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:07,121 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,121 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,122 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,122 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,122 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,123 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,123 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,123 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,123 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,124 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,124 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,124 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:07,125 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,125 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,125 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,125 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:07,126 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,126 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,126 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,126 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:07,127 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,127 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,127 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,127 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:07,128 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,128 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,128 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,128 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,129 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:07,129 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,129 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,129 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,130 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,130 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,130 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,131 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,131 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,131 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,132 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,132 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,132 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,132 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,133 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,134 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,134 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,134 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,135 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,135 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,135 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,136 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:08:07,136 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,136 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,136 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,137 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,137 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,137 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,138 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,138 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:07,138 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,138 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,139 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,140 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,141 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,142 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,143 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,144 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,145 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,146 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,146 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,146 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,146 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,147 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,147 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,147 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,148 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,149 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,149 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,149 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,150 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,150 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,150 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,151 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,151 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,151 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,151 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,152 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,152 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,152 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,152 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,153 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,153 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,153 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,154 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:08:07,154 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,158 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,159 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,159 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,160 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,160 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,160 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:07,160 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,161 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:07,161 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,161 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:07,162 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,162 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,163 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,163 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,164 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,164 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,165 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,165 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,165 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,166 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,166 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:07,166 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,167 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,167 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,167 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,167 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,168 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,168 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,168 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,169 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,169 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,169 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,170 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,170 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,170 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,171 - statisticsCountryHashedController - INFO - 353 -2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,172 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,173 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,174 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,175 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,175 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,176 - statisticsCountryHashedController - INFO - 161 -2022-11-29 10:08:07,176 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,176 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,176 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,177 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,177 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,177 - statisticsCountryHashedController - INFO - 393 -2022-11-29 10:08:07,177 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,178 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,178 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,178 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,179 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,179 - statisticsCountryHashedController - INFO - 350 -2022-11-29 10:08:07,179 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,180 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,180 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:07,180 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,181 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,181 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,181 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,182 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,182 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:07,182 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,183 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,183 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,183 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,183 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,184 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,184 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,184 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,184 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,185 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,185 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,185 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,186 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,186 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,187 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,187 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,187 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,187 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,188 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,189 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,189 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,189 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:07,190 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:07,190 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,190 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,190 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,191 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:07,191 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,191 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,192 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,192 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,192 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,192 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,193 - statisticsCountryHashedController - INFO - 376 -2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,194 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,195 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,196 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,196 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,196 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,196 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,197 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,198 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,198 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,198 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,198 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,199 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,199 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:07,199 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,200 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:07,201 - statisticsCountryHashedController - INFO - 14 -2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,202 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,203 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,204 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,204 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,204 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,204 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,206 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:07,214 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,214 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,215 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,215 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,216 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,217 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,217 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,217 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,217 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,219 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,220 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,222 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,222 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,223 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,224 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,224 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,224 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,224 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,225 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,226 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,227 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,228 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,229 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,230 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,231 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,232 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,233 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,233 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,233 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,233 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,234 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,234 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,234 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,234 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:07,235 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,236 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,237 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,237 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,237 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,237 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,238 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,239 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,240 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,241 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,241 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,241 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,241 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:08:07,242 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,243 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,244 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,245 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,246 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 13 -2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,247 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,248 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,254 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:07,255 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,256 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,257 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,257 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,258 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:07,259 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,259 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,260 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,260 - statisticsCountryHashedController - INFO - 396 -2022-11-29 10:08:07,261 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:07,262 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,264 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:07,265 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,266 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,267 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:07,270 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,270 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,271 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,271 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,272 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:07,272 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,273 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,273 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,274 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,274 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,275 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,275 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:07,276 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:07,276 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,277 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,277 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,278 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,278 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,279 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,279 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,280 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,280 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,281 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,281 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,282 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,282 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,282 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,282 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,283 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,284 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:07,285 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,286 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,287 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,288 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,289 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,290 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,290 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,290 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,889 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,890 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,891 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,891 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,891 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,892 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,892 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,892 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,893 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,893 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,893 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,893 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,894 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:07,894 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,894 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,895 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,895 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,895 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,895 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,896 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,896 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:07,897 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,898 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,898 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,898 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,899 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,900 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,900 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,901 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,901 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,901 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:07,902 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:07,902 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,902 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:07,903 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,904 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,904 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,904 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,905 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:07,905 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,905 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:07,906 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,907 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:07,907 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,907 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,907 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,908 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:07,908 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,908 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,909 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,909 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,909 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,909 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,910 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,910 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,910 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:07,910 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,911 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,911 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,911 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,911 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,912 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,913 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,913 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,913 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,914 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,914 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,914 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:07,915 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,916 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:07,916 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,917 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,917 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:07,918 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,918 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:07,919 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:07,919 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,919 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,920 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,920 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,920 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,921 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:08:07,921 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,921 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,921 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,922 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,922 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,923 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,923 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,923 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,923 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,924 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,924 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:07,924 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:07,924 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,925 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:07,925 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,926 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,926 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:07,927 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,927 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,927 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,928 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,929 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,929 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,929 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,929 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,930 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,930 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,930 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,934 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:07,934 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,935 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,935 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,936 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,936 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,937 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,937 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,938 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,941 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,947 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,947 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,948 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,948 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,949 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,950 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,951 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,952 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,952 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,953 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,953 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:07,954 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:07,954 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,955 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:07,955 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:07,955 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,956 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,956 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:07,957 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,957 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:07,957 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,958 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,959 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,959 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,959 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,960 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:07,960 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,960 - statisticsCountryHashedController - INFO - 353 -2022-11-29 10:08:07,961 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,961 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,961 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,962 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,962 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,963 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:07,963 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,964 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,964 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,965 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,965 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,965 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:07,966 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,966 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:07,966 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,967 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,967 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,967 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,967 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,968 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,968 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,968 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,969 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,969 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,970 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:07,970 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,970 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,971 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,972 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:07,972 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,972 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,972 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:07,973 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,974 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,974 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,974 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:07,975 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,976 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,976 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,976 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,985 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,986 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,987 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,987 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,988 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,989 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:07,989 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:07,990 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,990 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:07,990 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,991 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,991 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,992 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:07,992 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:07,993 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:07,993 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,993 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,994 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,994 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:07,994 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:07,995 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:07,995 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,995 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,996 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:07,996 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:07,996 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:07,997 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:07,997 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:07,997 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:07,998 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:07,998 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,999 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:07,999 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:07,999 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,000 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,000 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,000 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,001 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,001 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,002 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,002 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,003 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,003 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,003 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,004 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,004 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,005 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,006 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,006 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:08,007 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,007 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:08,008 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,008 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:08,009 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:08,009 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,010 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,010 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,011 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,011 - statisticsCountryHashedController - INFO - 205 -2022-11-29 10:08:08,012 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,012 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,013 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,013 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,014 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,014 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,015 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,015 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,016 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,016 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,017 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,017 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,018 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,018 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,019 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,019 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,020 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,021 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,021 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,022 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,022 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,023 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,024 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,024 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,025 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,025 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,026 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,026 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,026 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,027 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,027 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,028 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:08,028 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,029 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,029 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,031 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,032 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,046 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,047 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,048 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:08,048 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,049 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,049 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,049 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,050 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,050 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,051 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,051 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,052 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,052 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,053 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,053 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,054 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,054 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,054 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,055 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,055 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,056 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,056 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,057 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,057 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,057 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,058 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,058 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,059 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,059 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:08,060 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,061 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,062 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,066 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,067 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,068 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,068 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,068 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,069 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,069 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,070 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,070 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,070 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,071 - statisticsCountryHashedController - INFO - 396 -2022-11-29 10:08:08,071 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,072 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,072 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,072 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,073 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,074 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:08,074 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,075 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,075 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,076 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,077 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,081 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,082 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,083 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,083 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,083 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,084 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,084 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,085 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,085 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,086 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,086 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,087 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,087 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:08:08,087 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,088 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,089 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,090 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,090 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,090 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,091 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,092 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,093 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,093 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,094 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,096 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,097 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,098 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,098 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,099 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,100 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,100 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,100 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,101 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,101 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,102 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,102 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,103 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,103 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,104 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,104 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,105 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,105 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,106 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,107 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,108 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,108 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,109 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,110 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,110 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,111 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,111 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,112 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,112 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,113 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,113 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,114 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,114 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,115 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,116 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,116 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,117 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,117 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,118 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,118 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:08,119 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,119 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,120 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,120 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,120 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,121 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,121 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,122 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,122 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,123 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,124 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,125 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,125 - statisticsCountryHashedController - INFO - 368 -2022-11-29 10:08:08,125 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,126 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,127 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,128 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,128 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,129 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,130 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,130 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,131 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,131 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,132 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,146 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,147 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,148 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,149 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:08,150 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,152 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,153 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,154 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,155 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,156 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,157 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,159 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,160 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,161 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,162 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,163 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,164 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,165 - statisticsCountryHashedController - INFO - 144 -2022-11-29 10:08:08,166 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,167 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,168 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,169 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,171 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,172 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,173 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,174 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,175 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,176 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,177 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,178 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,180 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:08,181 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,182 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,183 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,185 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,186 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,187 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,189 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,190 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,191 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,192 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,193 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,194 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,195 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,195 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,199 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,199 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,200 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,201 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,201 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,202 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,203 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,203 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,204 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:08,205 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,205 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,205 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,206 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,206 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,206 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,206 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:08,207 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,207 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,207 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,208 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,209 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,209 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,209 - statisticsCountryHashedController - INFO - 161 -2022-11-29 10:08:08,210 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,215 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,216 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,216 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,217 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,217 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:08,218 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,219 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,219 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,220 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,221 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,221 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,221 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,222 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,222 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,223 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,223 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,224 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,225 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,225 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,226 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,227 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,228 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,229 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,230 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,230 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,231 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,232 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,232 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,233 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,233 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,234 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:08,234 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,235 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,236 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,236 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,237 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,238 - statisticsCountryHashedController - INFO - 188 -2022-11-29 10:08:08,238 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,239 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,240 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,240 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,241 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,242 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,243 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,243 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,244 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,244 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,245 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,246 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,246 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,247 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:08,247 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,248 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,248 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,249 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,249 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,250 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,250 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,251 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,251 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:08,251 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,252 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,252 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,252 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,253 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,253 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,254 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,254 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,254 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,255 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,255 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,256 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,256 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,257 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,257 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,257 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,258 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,258 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,258 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,259 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,259 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,260 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,260 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,261 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,262 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,262 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,262 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,263 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,263 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,263 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,263 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,264 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,264 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,264 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,264 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,265 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,266 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,266 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,267 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,267 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,268 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,268 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,268 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,268 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,270 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,271 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,271 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,271 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:08,272 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,272 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,272 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,273 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,273 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,274 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,274 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,274 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,274 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,275 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,275 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,275 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,275 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,276 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,277 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,277 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,278 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,278 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,279 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,279 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,279 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,280 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,280 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:08,280 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,281 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:08,281 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,281 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,282 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,282 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,283 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,283 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,284 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,284 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,285 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,285 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,286 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,287 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,287 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,288 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,288 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,289 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,290 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,290 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,291 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,291 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,292 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,293 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,293 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,294 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,294 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,294 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,295 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,295 - statisticsCountryHashedController - INFO - 4 -2022-11-29 10:08:08,295 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,295 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,296 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,296 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,296 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,297 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,297 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,297 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,297 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,303 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,303 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,304 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,304 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,305 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,305 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,305 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,306 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,306 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,307 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,307 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,307 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,308 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,308 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,310 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,310 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,311 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,311 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,328 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,329 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,329 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,330 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,330 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,330 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,331 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,331 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,331 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,331 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,332 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,332 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,333 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,333 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,333 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,336 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,337 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,338 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,338 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,338 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,339 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,339 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,339 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,340 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,340 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,340 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,340 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,341 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,341 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,341 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,341 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 353 -2022-11-29 10:08:08,342 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,343 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,343 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,344 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,344 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,345 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,345 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,346 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,347 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,348 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,348 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,349 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,350 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,351 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,354 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,357 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,357 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,357 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,358 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,358 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,358 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,359 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,359 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:08,359 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,360 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,362 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,362 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,363 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,364 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:08,364 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,365 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,366 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,366 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,367 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,367 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,367 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,368 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,369 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,369 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,370 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,372 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,373 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,373 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,374 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,375 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,375 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,376 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,376 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,377 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:08:08,377 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,378 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,378 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,379 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,379 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,380 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,380 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,381 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,381 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,382 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,383 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:08,383 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,384 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,385 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,386 - statisticsCountryHashedController - INFO - 10 -2022-11-29 10:08:08,387 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,387 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,388 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,389 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,390 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,390 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,391 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,392 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,392 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,393 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,394 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,394 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,395 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,396 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,396 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,397 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,397 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,398 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,398 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,399 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,399 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,399 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:08:08,400 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,400 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,401 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,401 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,401 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,402 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,402 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,403 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,403 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,404 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:08:08,404 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,404 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,405 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,405 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:08:08,405 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,406 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,407 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,407 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,408 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,409 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,410 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,410 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,411 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,411 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,412 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,412 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,413 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,413 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,413 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,413 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,422 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,422 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,423 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,424 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,424 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,425 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,426 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,426 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,427 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,427 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,428 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,428 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,429 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,429 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,430 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,431 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,431 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,432 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,433 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,433 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,434 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,435 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,435 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,436 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,437 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,438 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,438 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,439 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,440 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,440 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:08,441 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,441 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,442 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,443 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,443 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,445 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,445 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,446 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,446 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,447 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,447 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,447 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,447 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,448 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,448 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,448 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,448 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,449 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,449 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,449 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,449 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,450 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,450 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,450 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,450 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,451 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,451 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,451 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,452 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,452 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,452 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,452 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,453 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,453 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:08,453 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:08,453 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:08,454 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,454 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,454 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,454 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:08,455 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,456 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,456 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,456 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,456 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,457 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,457 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:08,457 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,457 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,458 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,458 - statisticsCountryHashedController - INFO - 188 -2022-11-29 10:08:08,459 - statisticsCountryHashedController - INFO - 375 -2022-11-29 10:08:08,459 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,459 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,460 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,460 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,460 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:08,460 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,461 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,461 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,463 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,470 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,471 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,472 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,472 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,472 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,473 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,473 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,474 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,485 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,485 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,490 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,490 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,491 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,491 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,494 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,495 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,495 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,496 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,496 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,497 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,497 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,497 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,498 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,498 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,499 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,499 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,500 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,500 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,500 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,501 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,502 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,502 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,502 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,503 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,504 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,505 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,506 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,507 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,508 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,508 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,509 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,513 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,513 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,526 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,529 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,536 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,536 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,537 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,538 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,539 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,539 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,540 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,540 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,542 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,543 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,544 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,544 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,545 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,546 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,547 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,547 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,548 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,549 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,549 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,550 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,551 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,552 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,553 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,553 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,553 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,554 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,554 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,555 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,555 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,556 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,557 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,558 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,558 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,559 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,559 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,560 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,560 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,561 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,562 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,563 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,563 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,563 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,564 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,564 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,564 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,565 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,565 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,565 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:08,566 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:08,566 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,566 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,567 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:08,567 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:08,568 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,568 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,569 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,569 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,569 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,570 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,570 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,570 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,571 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,572 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,573 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,574 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,575 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,576 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,576 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,577 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,577 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:08,578 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,578 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,579 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,579 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,579 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,580 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,580 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,580 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,581 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,581 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,582 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,582 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,583 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,583 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:08,584 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,584 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,585 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,585 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,586 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:08,586 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:08,586 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,587 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,587 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,588 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,588 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,589 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,589 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,589 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,589 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,590 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,591 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,592 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,592 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,592 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,592 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:08,593 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,593 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,593 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,593 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,594 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,595 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:08,603 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:08,604 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,605 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,605 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,606 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,606 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,607 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,607 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,607 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,607 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,608 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,608 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,609 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,610 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,610 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,611 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,612 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,613 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,613 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,614 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,615 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,616 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,616 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,617 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,617 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,618 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,619 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,619 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,620 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,620 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,621 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,622 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,623 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,623 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,624 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,624 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,625 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,626 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,626 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,627 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,627 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,628 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,628 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,628 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,629 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,629 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,630 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:08,630 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,631 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,631 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,632 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,633 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,634 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,634 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,635 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,635 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,636 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,636 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,637 - statisticsCountryHashedController - INFO - 375 -2022-11-29 10:08:08,638 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,638 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,639 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,639 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,639 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,639 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,640 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,640 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,642 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,642 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,643 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,644 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,644 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,644 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,645 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,645 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,646 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,646 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,647 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,647 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,648 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,649 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:08,649 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,650 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,650 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,651 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,651 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,651 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,652 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,652 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,654 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,655 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,656 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,657 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,658 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,659 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,660 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,660 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,661 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,661 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,662 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,662 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:08:08,663 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,673 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,674 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,674 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,674 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:08,674 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,675 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,675 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,675 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,676 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,676 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,677 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,677 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,677 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,678 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,678 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,679 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,679 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,680 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,680 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,681 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,681 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,682 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,683 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,683 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,683 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,683 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,684 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,684 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,684 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,685 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:08,685 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,685 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,686 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,691 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,695 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,702 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,720 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,722 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,723 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,725 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,730 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,731 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,732 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,732 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,732 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,733 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,733 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,733 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,734 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,734 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,734 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,736 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,738 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,739 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,740 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,741 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:08,741 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,742 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,743 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,743 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,743 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,744 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,745 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,745 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,746 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,746 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,747 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,747 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,748 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,748 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,749 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,749 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,750 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,750 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,751 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,752 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,752 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,753 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,754 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,754 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,755 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,755 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,756 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,757 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,759 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,760 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,761 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,761 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,762 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,762 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,762 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,763 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,763 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,764 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,764 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,765 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:08,765 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,766 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,766 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,767 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,767 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,768 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,769 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,769 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,770 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,770 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,771 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,772 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,772 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,772 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,773 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,773 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,773 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,773 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,774 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:08,774 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,774 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,775 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,775 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,775 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,776 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,776 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:08,776 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,777 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,777 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,778 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,778 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,779 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:08,780 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,780 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,781 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,782 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,782 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,783 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,784 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,784 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,785 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,785 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,785 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,786 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,786 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,787 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,787 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,787 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,788 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,788 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,788 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,789 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,789 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,789 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,789 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,790 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,791 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,791 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,791 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,792 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,792 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,792 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,793 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,793 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,794 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,795 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,795 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,795 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,796 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,797 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,798 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,798 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,799 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,799 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,799 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,800 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,800 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,800 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,800 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,802 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,803 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,803 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,803 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,804 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,804 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,805 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,805 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,805 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,806 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,806 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,807 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,807 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,807 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,808 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,808 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,808 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,809 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,809 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,809 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,809 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,810 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,811 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,812 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,813 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,813 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,813 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,814 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,814 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:08,815 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,815 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,816 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,816 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,816 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,817 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,818 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:08,819 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,819 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,820 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,820 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,821 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,821 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,822 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,822 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,823 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,823 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,824 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,826 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,827 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,827 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:08,829 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,829 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,830 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,830 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,831 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,831 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,832 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,833 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,833 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,834 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,834 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,834 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,835 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,835 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,836 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,837 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,838 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,838 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,838 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,838 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,839 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,840 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,841 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,841 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,841 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,841 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,842 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,842 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,842 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,843 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,844 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,844 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,844 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,845 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,845 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,846 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,846 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,846 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,847 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,848 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:08,848 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,848 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,848 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,849 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,849 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,849 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,849 - statisticsCountryHashedController - INFO - 262 -2022-11-29 10:08:08,850 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,854 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,854 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,854 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,854 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,855 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,855 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,855 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,855 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:08,856 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,857 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,858 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,859 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,859 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,859 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,859 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,860 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,860 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,860 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,860 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,861 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,861 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,861 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,861 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,862 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,863 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,864 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,865 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:08,866 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,868 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,869 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,869 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,870 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,870 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,870 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,871 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,871 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,872 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,872 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,872 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,873 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,873 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,874 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,874 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,874 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,875 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,875 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,876 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,876 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,876 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,877 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,877 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,877 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,878 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,878 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,878 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,879 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,879 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,879 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,880 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,880 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,880 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,880 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,881 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,882 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,883 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,884 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,885 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,886 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,887 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,887 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,887 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,887 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,888 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,889 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,889 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,889 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:08,889 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,890 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,890 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,890 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,890 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,891 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:08,891 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,891 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,892 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,892 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,892 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,893 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,893 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,893 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,893 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,894 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,894 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,894 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,894 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,895 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,895 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,895 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,895 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,896 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,897 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 348 -2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,898 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,899 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,900 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,901 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,902 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,903 - statisticsCountryHashedController - INFO - 144 -2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,904 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,905 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,906 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:08,906 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,906 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,907 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,908 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,909 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,909 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,909 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,910 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,911 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,912 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:08,913 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,914 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,915 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:08,916 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,916 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,916 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,916 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,917 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,918 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,919 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,919 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,919 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,920 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,921 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,922 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,923 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,923 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:08,923 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,923 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,924 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,925 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,926 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,926 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,927 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,928 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,929 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,930 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,931 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,932 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,933 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,933 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,933 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,933 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,934 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,934 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,934 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:08,934 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:08,935 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:08,936 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,937 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,938 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,939 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,940 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:08,941 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,942 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:08,942 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:08,942 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,943 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:08,944 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:08,945 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,218 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,225 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,226 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,227 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,227 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,228 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,228 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,229 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,229 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,229 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,230 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,230 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,230 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,230 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,231 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,232 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,233 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,234 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,234 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,234 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,234 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,235 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,235 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,235 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,236 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,236 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,236 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,237 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,237 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,237 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,238 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,238 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,239 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,239 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,239 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,239 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,240 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,240 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,240 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,241 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,241 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,241 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,242 - statisticsCountryHashedController - INFO - 13 -2022-11-29 10:08:10,242 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,242 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,243 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,243 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,244 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,247 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,247 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,248 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,249 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,250 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,250 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,250 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,250 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,251 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,252 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,252 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,252 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,252 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,253 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,254 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,255 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,255 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,256 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,257 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,257 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,258 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,258 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,259 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,259 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:10,260 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,260 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:10,261 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,261 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,262 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,262 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:10,263 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,264 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,265 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,265 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,266 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,266 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,267 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,267 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,268 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,268 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,269 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,269 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,270 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,270 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,270 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,271 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,271 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,271 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,272 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,272 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,273 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,273 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,273 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,274 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,274 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,275 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,275 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,276 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,276 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,276 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,277 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,281 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,282 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,282 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,283 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,283 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,284 - statisticsCountryHashedController - INFO - 13 -2022-11-29 10:08:10,286 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,287 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,287 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,288 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,289 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,289 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,290 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,291 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,291 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,292 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,293 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,294 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,294 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,295 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,296 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,296 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:10,297 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,297 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,297 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,298 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,298 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,299 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,299 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,300 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,300 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,301 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,302 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,302 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,303 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,303 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,304 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,304 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,305 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:10,305 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,306 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,306 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,306 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,307 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,307 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,308 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,308 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,309 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,309 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,309 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,310 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,310 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,311 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,311 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,311 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,312 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,312 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,313 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,313 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,314 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,314 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,314 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,315 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,315 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,316 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,316 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,316 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,317 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,317 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,318 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,318 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,319 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,319 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,319 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,320 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,320 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,321 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,321 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,321 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:10,322 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,322 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:10,323 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:10,323 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,324 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,324 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,324 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,325 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:10,325 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:10,326 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,326 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,326 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,327 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,327 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:10,328 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,328 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,328 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,329 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,329 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,329 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,330 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,330 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,331 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,331 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,331 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,332 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,332 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,333 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,333 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,333 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,334 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,335 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,335 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,335 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,345 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,346 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,347 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,347 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,348 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,348 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,348 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,349 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,349 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,349 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,350 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,350 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,351 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,352 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,353 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,354 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,355 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,356 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,358 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,359 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,360 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,361 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,362 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,363 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,364 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,365 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,366 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,367 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,372 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,373 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:10,375 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,375 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,376 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,377 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,377 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,383 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,384 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,385 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,385 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,386 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,386 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,386 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,387 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:10,387 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,387 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,388 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,388 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,388 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,389 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,389 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,389 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,390 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,390 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,390 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,391 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,391 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,391 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,391 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,392 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,392 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,393 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,393 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,393 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,394 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,394 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,394 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,395 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,395 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,395 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,396 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,397 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,397 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,398 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,406 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,406 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,407 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,407 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,407 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,407 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,408 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,408 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,408 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,408 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,409 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,409 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,409 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,410 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,410 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,410 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,410 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,411 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,411 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,411 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,412 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,412 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,413 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,413 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,414 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,415 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,415 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,417 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,418 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,419 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,419 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,419 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,422 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,423 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,424 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,426 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,426 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,427 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,427 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,427 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,428 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,428 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,428 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,429 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,430 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,431 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,431 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,432 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,432 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,433 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,434 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,434 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,435 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,436 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,436 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,437 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,438 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,439 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,440 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,441 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,442 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,443 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,444 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,444 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,445 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,458 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,462 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,463 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,464 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,464 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,465 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,466 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,467 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,468 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,468 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,469 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,470 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,471 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,472 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,473 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,474 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,474 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,482 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,483 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,483 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,484 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,485 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:10,485 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,486 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,486 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,487 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,487 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,488 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,488 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,489 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,489 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,489 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,490 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,490 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,491 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,491 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,492 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,492 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,493 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,493 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,493 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,494 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,494 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,495 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,495 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,496 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,496 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,496 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,497 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,497 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,498 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,498 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,498 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,499 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,507 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,508 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,508 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,509 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,509 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,510 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,510 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,511 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,511 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,512 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,512 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,513 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,513 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,513 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,514 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,514 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,515 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,515 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,516 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,516 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,517 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,517 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,518 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,518 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,519 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,519 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,519 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,520 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,520 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,521 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,521 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,521 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,522 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,522 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,523 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,523 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:10,524 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,524 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,524 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,525 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,525 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,526 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,527 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,528 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,529 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,529 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,530 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,530 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,531 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,533 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,534 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,535 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,535 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,535 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,536 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,537 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,538 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,539 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,539 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,539 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,540 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,540 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,541 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,541 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,541 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,541 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,542 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,543 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,543 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,543 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,545 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,545 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,546 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,546 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,547 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,547 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,547 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,548 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,548 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,549 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,549 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,549 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,550 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,551 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,553 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,553 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,554 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,554 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,555 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,555 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,555 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,556 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,556 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,557 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,557 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,559 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,559 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,559 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,560 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,560 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,561 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,561 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,561 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,562 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,562 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,563 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,563 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,563 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,564 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,564 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:10,564 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,565 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,565 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,566 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,567 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,567 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,569 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,569 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,570 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,570 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,571 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,571 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,572 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,572 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,572 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,573 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,573 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,573 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,574 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,574 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,574 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,574 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,575 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,575 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,575 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,575 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,576 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,576 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,576 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,577 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,577 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,578 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,578 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,579 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,579 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,579 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,580 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,580 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,580 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,581 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,581 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,581 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,582 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,582 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,582 - statisticsCountryHashedController - INFO - 13 -2022-11-29 10:08:10,583 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,583 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,584 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,584 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,585 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,585 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,586 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,586 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,586 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,587 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:10,587 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,587 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,587 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,588 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,588 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:10,589 - statisticsCountryHashedController - INFO - 216 -2022-11-29 10:08:10,589 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,589 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,590 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,590 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,590 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,591 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,591 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,591 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,592 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,592 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,592 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,593 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,593 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,593 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,594 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,599 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,600 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,600 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,601 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,602 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,603 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,604 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,605 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,605 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,606 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,606 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:10,607 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,608 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,608 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,613 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,613 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,614 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,615 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,615 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,616 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,616 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,617 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,617 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,618 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,619 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,619 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,620 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,621 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,621 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,622 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,622 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,623 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,623 - statisticsCountryHashedController - INFO - 326 -2022-11-29 10:08:10,624 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,625 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,625 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,626 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,627 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,627 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,628 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,629 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,630 - statisticsCountryHashedController - INFO - 4 -2022-11-29 10:08:10,630 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,634 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,635 - statisticsCountryHashedController - INFO - 4 -2022-11-29 10:08:10,636 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,637 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,637 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,638 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,639 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,640 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,641 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,641 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,642 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,643 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,644 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,645 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,646 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,647 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,648 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,649 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,650 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,651 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,652 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,653 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,653 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,654 - statisticsCountryHashedController - INFO - 7 -2022-11-29 10:08:10,655 - statisticsCountryHashedController - INFO - 7 -2022-11-29 10:08:10,656 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,657 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,657 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,658 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:10,660 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,661 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,662 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,663 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:10,664 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,665 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,666 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,666 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,667 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,667 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,668 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,668 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,669 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,670 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,670 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,671 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,672 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,672 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,673 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,674 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,674 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,675 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,676 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,677 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,678 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,678 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,679 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,680 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,681 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,682 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,682 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,683 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,684 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,685 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,687 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,688 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,689 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,689 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,690 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,691 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,692 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,692 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,692 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,693 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,693 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,694 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,695 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,696 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,698 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,701 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,702 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,702 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,702 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,702 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,703 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,704 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,705 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,705 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,705 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,705 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,706 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,706 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,706 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,706 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,707 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,707 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,707 - statisticsCountryHashedController - INFO - 16 -2022-11-29 10:08:10,707 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,708 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,708 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,708 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,709 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,710 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,710 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,710 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,710 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,711 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,712 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,712 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,712 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,712 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,713 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,713 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,713 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,713 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,714 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,714 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,714 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,715 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,715 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,716 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,716 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,716 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,717 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,717 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,718 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,718 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,719 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,719 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,720 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,720 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,721 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,721 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,721 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,722 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,723 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,723 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,723 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,724 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,724 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,724 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,725 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,725 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,726 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,726 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,727 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,727 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,727 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,728 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,729 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,729 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,729 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,729 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,730 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,730 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,730 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,730 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,731 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,731 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,731 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,732 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,732 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,732 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,733 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,733 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,733 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,733 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,734 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,734 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,734 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,735 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,735 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,735 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,736 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,736 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,736 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,737 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,737 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,737 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,738 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,738 - statisticsCountryHashedController - INFO - 142 -2022-11-29 10:08:10,738 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,739 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,739 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,739 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,739 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:08:10,740 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,740 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,740 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,741 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,741 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,741 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,742 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,742 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,742 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,743 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,743 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,743 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,743 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,744 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,745 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,745 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,745 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,746 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,746 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,746 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,747 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,747 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,747 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,748 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,748 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,748 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,749 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,749 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,750 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,750 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,750 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,751 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,751 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,751 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,751 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,752 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,752 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,753 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,753 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,753 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,754 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,755 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,755 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,755 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,755 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,756 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,756 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,756 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:08:10,757 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,759 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,759 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,759 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,760 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,760 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,760 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,761 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,761 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,762 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,762 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,763 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,767 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,767 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,768 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,768 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,769 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,769 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,769 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,771 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,772 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,773 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,774 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,776 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,776 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,777 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,778 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,779 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,780 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,781 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,782 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,783 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,784 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,785 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,786 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,787 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,787 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,788 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,789 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,790 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,791 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,801 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,802 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,802 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,802 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,803 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,803 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,803 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,803 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,804 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,804 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,804 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,805 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,805 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,806 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,807 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,807 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,807 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,808 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,808 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,809 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,811 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,811 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,812 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,812 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,813 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,813 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,813 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,814 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,814 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,814 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,815 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,815 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,815 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,815 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,816 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,816 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,817 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,817 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,817 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,818 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,818 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,819 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,819 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,820 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,820 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,820 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,820 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,821 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,821 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,821 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,821 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,822 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,822 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,822 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,823 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,823 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,824 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,824 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,824 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,825 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,825 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,826 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,826 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,826 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:10,827 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,828 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,828 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,828 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,829 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,830 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,830 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,831 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,831 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,831 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,832 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,832 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,833 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,834 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,834 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,834 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,834 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,835 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,838 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,839 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,840 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,840 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,841 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,841 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,842 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,842 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,842 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,843 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,843 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,843 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,843 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,844 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,844 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,844 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,844 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,845 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,846 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,847 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,848 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,849 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,849 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,849 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,849 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,850 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,850 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,851 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,851 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,852 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,853 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 450 -2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,854 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,855 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,856 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,857 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,857 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,857 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,857 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,858 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,858 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,858 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,858 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,859 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,859 - statisticsCountryHashedController - INFO - 128 -2022-11-29 10:08:10,859 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,859 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,860 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,860 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,860 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,860 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,861 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,862 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,863 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,864 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 353 -2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,865 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,866 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,867 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,867 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,867 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,867 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,868 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,868 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,868 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,868 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,869 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,870 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,870 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,870 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,871 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:08:10,871 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,871 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,872 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,872 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,872 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,872 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 45 -2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,873 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,874 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,874 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,874 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,875 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,875 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,875 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,875 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,876 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,877 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,877 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,877 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,877 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,878 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,879 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,880 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,881 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,882 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,883 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,884 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,885 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,886 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,886 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,889 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,889 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,889 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,890 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,890 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,890 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,890 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,891 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,891 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,891 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,891 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,892 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,893 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,894 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,901 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,902 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,902 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,902 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,903 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,903 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,903 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,903 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,904 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,905 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,905 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,905 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,905 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 205 -2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,906 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,907 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,908 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,909 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,910 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,911 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,912 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,912 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,912 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,912 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,913 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 188 -2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,914 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,915 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 205 -2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:10,916 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,917 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,918 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 339 -2022-11-29 10:08:10,919 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,920 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,921 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,922 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,923 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,924 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,925 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,926 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,927 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,928 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,929 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,930 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,930 - statisticsCountryHashedController - INFO - 218 -2022-11-29 10:08:10,930 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,930 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,931 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,932 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,932 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,932 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,933 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,933 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:10,933 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,933 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,934 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,935 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 1 -2022-11-29 10:08:10,936 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,937 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,938 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,939 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,939 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,940 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,942 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,943 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,943 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,943 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,944 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,944 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,944 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,945 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,946 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,947 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,947 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:10,947 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,947 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:10,948 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:10,949 - statisticsCountryHashedController - INFO - 332 -2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 5 -2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,950 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:10,951 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,951 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:10,951 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,951 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:10,952 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:10,952 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:10,952 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,885 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:11,885 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,886 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:11,886 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,886 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,886 - statisticsCountryHashedController - INFO - 340 -2022-11-29 10:08:11,887 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,887 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:11,887 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,887 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,888 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:11,888 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,888 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:11,888 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,889 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:11,889 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,889 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:11,889 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,890 - statisticsCountryHashedController - INFO - 359 -2022-11-29 10:08:11,890 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,893 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:11,893 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,905 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,906 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,907 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:11,914 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:11,914 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,915 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,915 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,916 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,917 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,917 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:11,918 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,918 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,919 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:11,919 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,920 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:11,920 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,921 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,921 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,921 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:11,922 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:11,922 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,923 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:11,924 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,924 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,924 - statisticsCountryHashedController - INFO - 8 -2022-11-29 10:08:11,925 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,926 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:08:11,927 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:11,928 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:11,928 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,929 - statisticsCountryHashedController - INFO - 182 -2022-11-29 10:08:11,929 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,930 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,930 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,931 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:11,932 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,932 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:11,933 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:11,934 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,934 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:11,935 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:11,935 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:11,935 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,936 - statisticsCountryHashedController - INFO - 436 -2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 240 -2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 177 -2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,937 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:11,938 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:11,939 - statisticsCountryHashedController - INFO - 7 -2022-11-29 10:08:11,939 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,939 - statisticsCountryHashedController - INFO - 378 -2022-11-29 10:08:11,939 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 120 -2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:11,940 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,941 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,941 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,941 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,943 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,944 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,945 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:11,945 - statisticsCountryHashedController - INFO - 9 -2022-11-29 10:08:11,946 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,946 - statisticsCountryHashedController - INFO - 457 -2022-11-29 10:08:11,946 - statisticsCountryHashedController - INFO - 24 -2022-11-29 10:08:11,946 - statisticsCountryHashedController - INFO - 441 -2022-11-29 10:08:11,947 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,947 - statisticsCountryHashedController - INFO - 15 -2022-11-29 10:08:11,948 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,948 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,949 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,949 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:11,949 - statisticsCountryHashedController - INFO - 21 -2022-11-29 10:08:11,950 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:11,950 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:11,951 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,951 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,952 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,952 - statisticsCountryHashedController - INFO - 329 -2022-11-29 10:08:11,952 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,953 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:11,953 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,953 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,954 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,954 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,954 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:11,954 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,955 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,955 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,956 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,957 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,957 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:11,957 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,958 - statisticsCountryHashedController - INFO - 141 -2022-11-29 10:08:11,958 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,958 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:11,958 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:11,959 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,959 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,959 - statisticsCountryHashedController - INFO - 11 -2022-11-29 10:08:11,961 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:11,961 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,961 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:11,961 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,962 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,963 - statisticsCountryHashedController - INFO - 6 -2022-11-29 10:08:11,963 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,963 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:11,964 - statisticsCountryHashedController - INFO - 2 -2022-11-29 10:08:11,964 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:11,964 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:11,965 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,965 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,965 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,966 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,966 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:11,967 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,967 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,968 - statisticsCountryHashedController - INFO - 458 -2022-11-29 10:08:11,968 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,969 - statisticsCountryHashedController - INFO - 443 -2022-11-29 10:08:11,969 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,970 - statisticsCountryHashedController - INFO - 377 -2022-11-29 10:08:11,970 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:11,971 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,972 - statisticsCountryHashedController - INFO - 18 -2022-11-29 10:08:11,972 - statisticsCountryHashedController - INFO - 364 -2022-11-29 10:08:11,972 - statisticsCountryHashedController - INFO - 12 -2022-11-29 10:08:11,973 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,974 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,974 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,975 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,975 - statisticsCountryHashedController - INFO - 207 -2022-11-29 10:08:11,976 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,976 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:11,976 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,977 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,978 - statisticsCountryHashedController - INFO - 140 -2022-11-29 10:08:11,978 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,978 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,979 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,980 - statisticsCountryHashedController - INFO - 420 -2022-11-29 10:08:11,980 - statisticsCountryHashedController - INFO - 19 -2022-11-29 10:08:11,980 - statisticsCountryHashedController - INFO - 22 -2022-11-29 10:08:11,981 - statisticsCountryHashedController - INFO - 345 -2022-11-29 10:08:11,981 - migrateData - INFO - 3612 Country Stats created -2022-11-29 10:21:25,515 - migrateData - INFO - No new data found -2022-11-29 10:21:25,519 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:25,520 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:21:25,521 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:21:25,522 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:21:25,522 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:25,523 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:25,523 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:21:25,524 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:21:25,524 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,524 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,525 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,525 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:25,525 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,526 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:21:25,526 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,527 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,527 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,529 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,531 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:21:25,531 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,532 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,532 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,533 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:25,533 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,533 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:21:25,534 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,534 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:21:25,534 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,535 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:21:25,535 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:21:25,535 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:25,536 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:21:25,536 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:21:25,536 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:21:25,536 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:21:25,537 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,537 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:21:25,537 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:25,538 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,538 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:21:25,539 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:25,540 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:21:25,540 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:21:25,541 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:21:25,541 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:25,541 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:21:25,541 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,542 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:25,542 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,545 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,545 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:21:25,546 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,547 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:21:25,548 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,549 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:25,549 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,550 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,550 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:21:25,551 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,551 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,552 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,552 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,553 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,553 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,554 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,555 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,555 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,556 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,556 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:25,556 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,557 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,557 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,557 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,558 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,558 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:21:25,558 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,559 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:25,559 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,560 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:25,560 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,561 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,561 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,562 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:21:25,562 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:25,563 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:25,563 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:25,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:25,564 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:25,565 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,565 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:21:25,566 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:21:25,566 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:21:25,567 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,567 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,567 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:25,568 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,568 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,569 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,569 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,570 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:21:25,570 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:25,571 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:25,571 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,580 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,581 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:21:25,582 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:21:25,582 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:21:25,582 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,583 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:25,584 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:21:25,584 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:25,584 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:25,584 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:25,585 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,585 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,586 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,586 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,587 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:25,587 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:25,588 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:25,588 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:25,589 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:25,590 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:25,590 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:25,590 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:25,591 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:25,592 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,592 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:21:25,592 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,593 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:21:25,593 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:25,593 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:21:25,620 - migrateData - INFO - 24 Idps created -2022-11-29 10:21:25,691 - migrateData - INFO - 409 Sps created -2022-11-29 10:21:54,424 - migrateData - INFO - No new data found -2022-11-29 10:21:54,430 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:54,431 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:21:54,432 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:21:54,432 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:21:54,433 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:54,433 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:54,434 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:21:54,435 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:21:54,435 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,436 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,436 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,437 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:54,438 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,438 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:21:54,439 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,440 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,440 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,441 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,441 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:21:54,442 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,443 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,443 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,444 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:54,444 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,445 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:21:54,446 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,446 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:21:54,447 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,447 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:21:54,448 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:21:54,448 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:54,448 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:21:54,449 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:21:54,449 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:21:54,449 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:21:54,449 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,450 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:21:54,450 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:54,450 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,450 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:21:54,451 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:54,451 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:21:54,451 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:21:54,452 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:21:54,452 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:54,453 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:21:54,453 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,454 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:54,454 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,455 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,455 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:21:54,456 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,456 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:21:54,456 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,457 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:21:54,457 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,458 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,458 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:21:54,458 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,459 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,459 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,460 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,461 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,461 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,462 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,462 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,463 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,463 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,464 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:21:54,464 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,464 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,465 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,466 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,466 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,466 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:21:54,467 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,467 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:54,468 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,468 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:21:54,469 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,469 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,470 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,470 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:21:54,471 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:54,471 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:54,471 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:54,471 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:54,472 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,472 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:54,473 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,473 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:21:54,474 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:21:54,474 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:21:54,475 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,475 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,476 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:21:54,476 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,477 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,477 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,478 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,478 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:21:54,479 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:54,479 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:21:54,480 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,480 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,481 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:21:54,481 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:21:54,482 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:21:54,482 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,483 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:54,483 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:21:54,484 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:54,484 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:54,485 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:54,485 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,486 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,486 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,487 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,487 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:54,488 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:54,488 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:54,489 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:54,489 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:21:54,490 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:54,490 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:21:54,491 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:54,491 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:21:54,492 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,492 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:21:54,492 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,493 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:21:54,493 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:21:54,493 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:21:54,521 - migrateData - INFO - 24 Idps created -2022-11-29 10:21:54,612 - migrateData - INFO - 409 Sps created -2022-11-29 10:21:54,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:54,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,080 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,082 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,085 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,118 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,703 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,708 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,714 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,754 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,974 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:55,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,080 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,082 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,085 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,367 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,708 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,714 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,777 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,777 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,788 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,974 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:56,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,082 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,085 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,118 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,301 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,754 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,777 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,789 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,874 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:57,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,085 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,118 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,301 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,333 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,367 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,367 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,450 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,450 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,714 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,777 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,788 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,789 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,789 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:21:58,892 - migrateData - INFO - 3612 Country Stats created -2022-11-29 10:22:02,367 - migrateData - INFO - No new data found -2022-11-29 10:22:02,379 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:02,379 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:22:02,379 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:22:02,380 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:22:02,381 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:02,382 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:02,382 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:22:02,383 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:22:02,383 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,384 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,384 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,385 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:02,386 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,386 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:22:02,386 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,387 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,388 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,388 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,389 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:22:02,389 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,390 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,390 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,391 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:02,391 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,391 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:22:02,391 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,392 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:22:02,392 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,393 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:22:02,393 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:22:02,393 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:02,394 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:22:02,394 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:22:02,395 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:22:02,395 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:22:02,396 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,396 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:22:02,396 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:02,397 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,397 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:22:02,398 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:02,398 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:22:02,399 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:22:02,399 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:22:02,400 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:02,400 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:22:02,400 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,401 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:02,401 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,402 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,402 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:22:02,403 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,403 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:22:02,404 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,404 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:02,404 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,405 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,405 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:22:02,406 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,406 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,407 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,408 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,408 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,408 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,409 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,410 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,410 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,411 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,411 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:02,412 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,412 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,413 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,414 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,414 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,415 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:22:02,415 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,416 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:02,416 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,416 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:02,416 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,417 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,417 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,418 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:22:02,418 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:02,419 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:02,420 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:02,420 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:02,420 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,421 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:02,421 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,422 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:22:02,422 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:22:02,423 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:22:02,423 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,424 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,424 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:02,425 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,425 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,426 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,426 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,427 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:22:02,427 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:02,427 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:02,428 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,428 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,429 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:22:02,429 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:22:02,430 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:22:02,430 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,430 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:02,431 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:22:02,431 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:02,431 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:02,432 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:02,432 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,432 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,433 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,433 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,433 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:02,434 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:02,435 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:02,435 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:02,436 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:02,437 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:02,438 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:02,441 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:02,442 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:02,442 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,443 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:22:02,443 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,443 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:22:02,444 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:02,444 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:22:02,477 - migrateData - INFO - 24 Idps created -2022-11-29 10:22:02,544 - migrateData - INFO - 409 Sps created -2022-11-29 10:22:02,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,703 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,708 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,714 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,754 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,777 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,788 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,874 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,874 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,974 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:02,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,082 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,085 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,367 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,450 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,703 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,777 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,788 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,789 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:03,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,333 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,334 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,367 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,450 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,703 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,708 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,714 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,754 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,974 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:04,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,333 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,334 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,450 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,703 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,708 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,974 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:05,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,118 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,367 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:06,582 - migrateData - INFO - 3612 Country Stats created -2022-11-29 10:22:38,317 - migrateData - INFO - No new data found -2022-11-29 10:22:38,322 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:38,323 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:22:38,324 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:22:38,324 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:22:38,325 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:38,325 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:38,325 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:22:38,326 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:22:38,334 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,335 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,335 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,336 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:38,336 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,337 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:22:38,337 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,337 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,338 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,338 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,338 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:22:38,339 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,339 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,340 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,340 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:38,341 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,341 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:22:38,341 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,342 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:22:38,342 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,342 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:22:38,343 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:22:38,343 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:38,343 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:22:38,344 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:22:38,344 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:22:38,344 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:22:38,345 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,345 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:22:38,345 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:38,346 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,346 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:22:38,347 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:38,347 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:22:38,348 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:22:38,348 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:22:38,348 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:38,349 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:22:38,349 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,350 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:38,350 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,351 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,352 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:22:38,352 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,352 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:22:38,353 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,353 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:22:38,354 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,354 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,354 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:22:38,355 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,355 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,355 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,356 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,356 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,356 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,357 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,358 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,358 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,358 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,359 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:22:38,359 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,359 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,360 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,360 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,360 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,363 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:22:38,363 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,364 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:38,364 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,365 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:22:38,365 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,366 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,366 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,366 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:22:38,367 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:38,367 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:38,368 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:38,368 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:38,368 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,368 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:38,368 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,369 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:22:38,370 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:22:38,370 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:22:38,371 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,372 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,373 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:22:38,373 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,373 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,374 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,374 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,374 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:22:38,374 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:38,374 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:22:38,375 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:22:38,376 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,376 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:38,379 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:22:38,379 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:38,379 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:38,380 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:38,380 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,381 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,381 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,381 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,382 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:38,385 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:38,385 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:38,386 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:38,387 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:22:38,387 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:38,387 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:22:38,388 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:38,388 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:22:38,388 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,389 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:22:38,389 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,389 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:22:38,389 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:22:38,389 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:22:38,418 - migrateData - INFO - 24 Idps created -2022-11-29 10:22:38,489 - migrateData - INFO - 409 Sps created -2022-11-29 10:22:38,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,874 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:38,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,334 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,367 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,450 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,874 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,974 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:39,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,118 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,301 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,334 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,450 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,714 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,777 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,788 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,789 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,874 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:40,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,080 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,082 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,085 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,301 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,333 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,404 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,708 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,818 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,874 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:41,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,080 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,082 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,085 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,118 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,161 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,220 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,301 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,333 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,334 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,367 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,646 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:22:42,686 - migrateData - INFO - 3612 Country Stats created -2022-11-29 10:26:10,139 - migrateData - INFO - No new data found -2022-11-29 10:26:10,144 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:26:10,145 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:26:10,146 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:26:10,146 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:26:10,147 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:26:10,149 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:26:10,150 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:26:10,150 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:26:10,151 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,152 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,153 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,153 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:26:10,159 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,159 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:26:10,159 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,159 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,160 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,160 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,160 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:26:10,160 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,161 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,161 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,161 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:26:10,161 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,161 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:26:10,162 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,162 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:26:10,162 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,162 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:26:10,163 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:26:10,163 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:26:10,163 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:26:10,163 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:26:10,163 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:26:10,164 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:26:10,164 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,164 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:26:10,164 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:26:10,164 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,165 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:26:10,165 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:26:10,166 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:26:10,167 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:26:10,167 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:26:10,168 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:26:10,168 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:26:10,168 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,169 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:26:10,169 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,169 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,170 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:26:10,170 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,170 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:26:10,170 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,171 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:26:10,171 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,171 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,171 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:26:10,172 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,172 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,172 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,173 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,173 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,173 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,173 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,182 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,183 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,183 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,184 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:26:10,184 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,185 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,185 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,186 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,187 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,187 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:26:10,188 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,189 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:26:10,189 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,190 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:26:10,190 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,191 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,192 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,192 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:26:10,193 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:26:10,193 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:26:10,193 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:26:10,194 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:26:10,194 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,194 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:26:10,194 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,195 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:26:10,196 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:26:10,196 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:26:10,196 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,197 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,198 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:26:10,199 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,199 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,200 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,201 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,202 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:26:10,202 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:26:10,202 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:26:10,203 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,203 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,203 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:26:10,203 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:26:10,204 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:26:10,204 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,204 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:26:10,204 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:26:10,205 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:26:10,205 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:26:10,205 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:26:10,205 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,205 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,206 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,206 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,206 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:26:10,206 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:26:10,207 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:26:10,215 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:26:10,216 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:26:10,217 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:26:10,217 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:26:10,217 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:26:10,218 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:26:10,219 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,219 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:26:10,220 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,220 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:26:10,222 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:26:10,223 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:26:10,252 - migrateData - INFO - 24 Idps created -2022-11-29 10:26:10,332 - migrateData - INFO - 409 Sps created -2022-11-29 10:26:10,345 - pgConnector - INFO - 10838 -2022-11-29 10:26:10,346 - statisticsCountryHashedController - INFO - 10838 -2022-11-29 10:26:10,348 - pgConnector - INFO - 10839 -2022-11-29 10:26:10,350 - statisticsCountryHashedController - INFO - 10839 -2022-11-29 10:26:10,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,353 - pgConnector - INFO - 10841 -2022-11-29 10:26:10,354 - statisticsCountryHashedController - INFO - 10841 -2022-11-29 10:26:10,356 - pgConnector - INFO - 10842 -2022-11-29 10:26:10,357 - statisticsCountryHashedController - INFO - 10842 -2022-11-29 10:26:10,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,360 - pgConnector - INFO - 10846 -2022-11-29 10:26:10,360 - statisticsCountryHashedController - INFO - 10846 -2022-11-29 10:26:10,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,362 - pgConnector - INFO - 10848 -2022-11-29 10:26:10,363 - statisticsCountryHashedController - INFO - 10848 -2022-11-29 10:26:10,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,368 - pgConnector - INFO - 10850 -2022-11-29 10:26:10,368 - statisticsCountryHashedController - INFO - 10850 -2022-11-29 10:26:10,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,371 - pgConnector - INFO - 10853 -2022-11-29 10:26:10,371 - statisticsCountryHashedController - INFO - 10853 -2022-11-29 10:26:10,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,386 - pgConnector - INFO - 10861 -2022-11-29 10:26:10,386 - statisticsCountryHashedController - INFO - 10861 -2022-11-29 10:26:10,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,392 - pgConnector - INFO - 10865 -2022-11-29 10:26:10,392 - statisticsCountryHashedController - INFO - 10865 -2022-11-29 10:26:10,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,401 - pgConnector - INFO - 10881 -2022-11-29 10:26:10,401 - statisticsCountryHashedController - INFO - 10881 -2022-11-29 10:26:10,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,404 - pgConnector - INFO - 10887 -2022-11-29 10:26:10,404 - statisticsCountryHashedController - INFO - 10887 -2022-11-29 10:26:10,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,411 - pgConnector - INFO - 10896 -2022-11-29 10:26:10,411 - statisticsCountryHashedController - INFO - 10896 -2022-11-29 10:26:10,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,416 - pgConnector - INFO - 10904 -2022-11-29 10:26:10,416 - statisticsCountryHashedController - INFO - 10904 -2022-11-29 10:26:10,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,475 - pgConnector - INFO - 10938 -2022-11-29 10:26:10,475 - statisticsCountryHashedController - INFO - 10938 -2022-11-29 10:26:10,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,575 - pgConnector - INFO - 10990 -2022-11-29 10:26:10,575 - statisticsCountryHashedController - INFO - 10990 -2022-11-29 10:26:10,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,581 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,582 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,675 - pgConnector - INFO - 11068 -2022-11-29 10:26:10,675 - statisticsCountryHashedController - INFO - 11068 -2022-11-29 10:26:10,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,689 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,703 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,706 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,707 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,708 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,710 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,714 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,716 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,754 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,819 - pgConnector - INFO - 11204 -2022-11-29 10:26:10,820 - statisticsCountryHashedController - INFO - 11204 -2022-11-29 10:26:10,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,974 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:10,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,078 - pgConnector - INFO - 11465 -2022-11-29 10:26:11,078 - statisticsCountryHashedController - INFO - 11465 -2022-11-29 10:26:11,080 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,082 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,141 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,212 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,217 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,237 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,256 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,274 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,333 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,334 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,341 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,377 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,476 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,529 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,588 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,590 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,591 - pgConnector - INFO - 11858 -2022-11-29 10:26:11,592 - statisticsCountryHashedController - INFO - 11858 -2022-11-29 10:26:11,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,625 - pgConnector - INFO - 11887 -2022-11-29 10:26:11,625 - statisticsCountryHashedController - INFO - 11887 -2022-11-29 10:26:11,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,631 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,669 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,674 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,677 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,723 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,788 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,789 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,835 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,840 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,874 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,883 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,889 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,962 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,966 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:11,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,048 - pgConnector - INFO - 12198 -2022-11-29 10:26:12,048 - statisticsCountryHashedController - INFO - 12198 -2022-11-29 10:26:12,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,080 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,118 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,128 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,144 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,157 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,213 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,215 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,234 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,236 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,239 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,242 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,301 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,333 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,334 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,362 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,405 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,408 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,446 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,447 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,448 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,449 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,450 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,451 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,453 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,456 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,471 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,481 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,508 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,515 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,517 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,518 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,520 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,552 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,572 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,573 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,574 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,575 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,576 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,577 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,584 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,587 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,607 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,623 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,625 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,626 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,630 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,631 - pgConnector - INFO - 12667 -2022-11-29 10:26:12,631 - statisticsCountryHashedController - INFO - 12667 -2022-11-29 10:26:12,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,667 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,680 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,686 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,687 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,688 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,702 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,703 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,714 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,720 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,725 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,727 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,754 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,755 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,760 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,769 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,780 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,789 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,804 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,805 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,811 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,812 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,813 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,814 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,815 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,816 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,817 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,824 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,825 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,846 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,865 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,875 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,883 - pgConnector - INFO - 12885 -2022-11-29 10:26:12,883 - statisticsCountryHashedController - INFO - 12885 -2022-11-29 10:26:12,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,886 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,897 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,906 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,919 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,920 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,921 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,922 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,931 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,932 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,933 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,934 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,973 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,974 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,997 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:12,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,022 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,027 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,050 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,056 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,071 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,083 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,084 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,085 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,086 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,097 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,099 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,101 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,103 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,104 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,112 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,113 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,116 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,117 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,118 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,119 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,120 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,122 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,124 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,151 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,152 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,153 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,154 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,155 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,156 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,158 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,162 - pgConnector - INFO - 13170 -2022-11-29 10:26:13,162 - statisticsCountryHashedController - INFO - 13170 -2022-11-29 10:26:13,163 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,164 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,166 - pgConnector - INFO - 13174 -2022-11-29 10:26:13,166 - statisticsCountryHashedController - INFO - 13174 -2022-11-29 10:26:13,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,179 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,180 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,181 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,182 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,183 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,184 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,185 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,186 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,208 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,209 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,210 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,211 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,214 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,216 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,218 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,219 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,221 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,222 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,223 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,224 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,225 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,226 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,227 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,228 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,229 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,230 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,231 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,232 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,233 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,235 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,238 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,240 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,241 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,246 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,248 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,249 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,251 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,257 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,258 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,259 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,260 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,261 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,266 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,270 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,271 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,273 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,275 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,276 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,277 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,283 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,289 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,290 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,294 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,297 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,298 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,299 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,301 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,304 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,305 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,310 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,328 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,334 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,352 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,353 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,365 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,366 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,368 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,370 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,371 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,374 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,376 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,379 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,382 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,385 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,388 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,390 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,393 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,396 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,398 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,399 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,400 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,401 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,402 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,403 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,406 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,407 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,409 - pgConnector - INFO - 13422 -2022-11-29 10:26:13,409 - statisticsCountryHashedController - INFO - 13422 -2022-11-29 10:26:13,409 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,410 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,411 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,412 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,413 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,414 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,415 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,416 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,417 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,418 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,420 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,422 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,429 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,432 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,436 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,441 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,444 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,452 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,455 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,457 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,458 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,459 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,461 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,464 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,466 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,468 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,473 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,479 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,480 - pgConnector - INFO - 13489 -2022-11-29 10:26:13,481 - statisticsCountryHashedController - INFO - 13489 -2022-11-29 10:26:13,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,484 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,489 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,492 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,495 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,498 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,502 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,504 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,507 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,509 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,510 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,511 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,512 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,513 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,516 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,525 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,530 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,531 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,532 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,559 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,567 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,568 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,569 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,570 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,571 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,599 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,621 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,624 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,627 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,628 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,629 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,640 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,650 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,651 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,656 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,659 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,660 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,661 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,668 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,670 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,671 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,672 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,673 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,675 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,676 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,678 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,679 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,681 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,682 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,683 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,684 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,685 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,690 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,691 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,692 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,693 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,694 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,695 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,696 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,697 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,698 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,699 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,700 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,701 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,703 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,704 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,705 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,708 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,709 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,711 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,712 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,713 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,715 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,717 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,718 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,719 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,721 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,722 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,724 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,726 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,728 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,729 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,730 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,731 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,732 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,733 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,734 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,735 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,736 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,737 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,738 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,739 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,740 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,741 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,742 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,743 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,744 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,745 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,746 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,747 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,748 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,749 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,750 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,751 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,752 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,753 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,754 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,756 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,757 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,758 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,759 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,761 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,762 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,763 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,764 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,765 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,766 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,767 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,768 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,770 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,771 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,772 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,773 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,774 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,775 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,776 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,778 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,779 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,781 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,782 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,783 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,784 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,785 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,786 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,787 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,788 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,789 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,790 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,791 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,792 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,793 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,794 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,795 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,796 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,797 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,798 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,799 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,800 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,801 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,802 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,803 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,806 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,807 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,808 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,809 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,810 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,819 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,820 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,821 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,822 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,823 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,826 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,827 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,828 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,829 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,830 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,831 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,832 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,833 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,834 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,836 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,837 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,838 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,839 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,841 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,842 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,843 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,844 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,845 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,847 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,848 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,849 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,850 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,851 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,852 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,853 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,854 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,855 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,856 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,857 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,858 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,859 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,860 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,861 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,862 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,863 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,864 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,866 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,867 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,868 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,869 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,870 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,871 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,872 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,873 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,876 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,877 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,878 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,879 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,880 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,881 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,882 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,884 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,885 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,887 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,888 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,890 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,891 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,892 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,893 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,894 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,895 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,896 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,898 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,899 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,900 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,901 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,902 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,903 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,904 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,905 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,907 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,908 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,909 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,910 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,911 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,912 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,913 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,914 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,915 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,916 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,917 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,918 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,923 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,924 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,925 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,926 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,927 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,928 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,929 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,930 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,935 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,936 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,937 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,938 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,939 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,940 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,941 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,942 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,943 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,944 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,945 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,946 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,947 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,948 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,949 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,950 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,951 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,952 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,953 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,954 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,955 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,956 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,957 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,958 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,959 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,960 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,961 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,963 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,964 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,965 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,967 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,968 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,969 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,970 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,971 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,972 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,975 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,976 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,977 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,978 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,979 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,980 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,981 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,982 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,983 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,984 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,985 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,986 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,987 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,988 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,989 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,990 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,991 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,992 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,993 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,994 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,995 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,996 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,998 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:13,999 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,000 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,001 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,002 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,003 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,004 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,005 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,006 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,007 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,008 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,009 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,010 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,011 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,012 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,013 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,014 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,015 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,016 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,017 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,018 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,019 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,020 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,021 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,023 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,024 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,025 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,026 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,028 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,029 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,030 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,031 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,032 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,033 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,034 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,035 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,036 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,037 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,038 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,039 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,040 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,041 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,042 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,043 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,044 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,045 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,046 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,047 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,048 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,049 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,051 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,052 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,053 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,054 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,055 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,057 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,058 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,059 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,060 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,061 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,062 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,063 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,064 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,065 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,066 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,067 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,068 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,069 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,070 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,072 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,073 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,074 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,075 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,076 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,077 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,078 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,079 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,081 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,082 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,087 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,088 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,089 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,090 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,091 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,092 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,093 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,094 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,095 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,096 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,098 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,100 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,102 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,105 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,106 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,107 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,108 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,109 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,110 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,111 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,114 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,115 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,121 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,123 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,125 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,126 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,127 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,129 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,130 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,131 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,132 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,133 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,134 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,135 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,136 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,137 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,138 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,139 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,140 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,142 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,143 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,145 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,146 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,147 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,148 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,149 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,150 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,159 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,160 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,162 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,165 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,166 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,167 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,168 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,169 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,170 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,171 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,172 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,173 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,174 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,175 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,176 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,177 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,178 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,187 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,188 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,189 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,190 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,191 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,192 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,193 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,194 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,195 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,196 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,197 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,198 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,199 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,200 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,201 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,202 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,203 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,204 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,205 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,206 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,207 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,243 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,244 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,245 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,247 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,250 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,252 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,253 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,254 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,255 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,262 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,263 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,264 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,265 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,267 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,268 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,269 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,272 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,278 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,279 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,280 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,281 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,282 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,284 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,285 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,286 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,287 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,288 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,291 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,292 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,293 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,295 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,296 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,300 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,301 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,302 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,303 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,306 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,307 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,308 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,309 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,311 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,312 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,313 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,314 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,315 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,316 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,317 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,318 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,319 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,320 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,321 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,322 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,323 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,324 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,325 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,326 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,327 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,329 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,330 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,331 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,332 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,333 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,335 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,336 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,337 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,338 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,339 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,340 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,342 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,343 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,344 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,345 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,346 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,347 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,348 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,349 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,350 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,351 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,354 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,355 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,356 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,357 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,358 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,359 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,360 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,361 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,363 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,364 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,369 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,372 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,373 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,375 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,378 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,380 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,381 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,383 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,384 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,386 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,387 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,389 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,391 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,392 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,394 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,395 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,397 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,419 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,421 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,423 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,424 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,425 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,426 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,427 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,428 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,430 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,431 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,433 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,434 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,435 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,437 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,438 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,439 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,440 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,442 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,443 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,445 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,454 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,460 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,462 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,463 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,465 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,467 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,469 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,470 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,472 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,474 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,475 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,477 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,478 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,480 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,482 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,483 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,485 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,486 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,487 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,488 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,490 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,491 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,493 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,494 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,496 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,497 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,499 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,500 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,501 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,503 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,505 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,506 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,514 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,519 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,521 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,522 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,523 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,524 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,526 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,527 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,528 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,533 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,534 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,535 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,536 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,537 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,538 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,539 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,540 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,541 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,542 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,543 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,544 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,545 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,546 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,547 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,548 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,549 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,550 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,551 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,553 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,554 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,555 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,556 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,557 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,558 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,560 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,561 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,562 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,563 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,564 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,565 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,566 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,578 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,579 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,580 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,583 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,585 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,586 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,589 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,591 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,592 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,593 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,594 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,595 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,596 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,597 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,598 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,600 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,601 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,602 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,603 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,604 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,605 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,606 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,608 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,609 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,610 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,611 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,612 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,613 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,614 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,615 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,616 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,617 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,618 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,619 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,620 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,622 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,632 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,633 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,634 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,635 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,636 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,637 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,638 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,639 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,641 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,642 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,643 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,644 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,645 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,647 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,648 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,649 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,652 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,653 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,654 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,655 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,657 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,658 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,662 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,663 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,664 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,665 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,666 - statisticsCountryHashedController - INFO - None -2022-11-29 10:26:14,667 - migrateData - INFO - 3612 Country Stats created -2022-11-29 10:32:16,517 - migrateData - INFO - No new data found -2022-11-29 10:32:16,521 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:16,522 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:32:16,523 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:32:16,523 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:32:16,523 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:16,524 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:16,524 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:32:16,525 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:32:16,525 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,526 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,526 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,527 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:16,527 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,527 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:32:16,528 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,528 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,528 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,528 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,529 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:32:16,529 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,529 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,530 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,530 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:16,530 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,531 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:32:16,531 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,531 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:32:16,531 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,532 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:32:16,532 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:32:16,533 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:16,533 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:32:16,533 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:32:16,533 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:32:16,534 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:32:16,534 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,534 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:32:16,534 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:16,534 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,535 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:32:16,535 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:16,536 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:32:16,536 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:32:16,536 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:32:16,536 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:16,536 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:32:16,538 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,538 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:16,539 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,539 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,539 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:32:16,539 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,540 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:32:16,540 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,540 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:16,540 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,541 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,541 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:32:16,541 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,541 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,542 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,542 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,542 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,542 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,543 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,544 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,544 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,546 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,546 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:16,548 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,549 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,550 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,550 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,550 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,551 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:32:16,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,552 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:16,553 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,553 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:16,554 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,555 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:32:16,556 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:16,557 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:16,557 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:16,558 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:16,558 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,559 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:16,559 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,560 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:32:16,561 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:32:16,561 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:32:16,561 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,562 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,563 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:16,563 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,564 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,564 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,564 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,564 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:32:16,565 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:16,565 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:16,566 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,566 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,567 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:32:16,567 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:32:16,568 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:32:16,569 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,569 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:16,570 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:32:16,570 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:16,570 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:16,571 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:16,571 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,572 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,572 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,573 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,573 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:16,574 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:16,574 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:16,575 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:16,576 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:16,576 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:16,577 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:16,577 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:16,578 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:16,578 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,578 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:32:16,579 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,579 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:32:16,579 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:16,579 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:32:16,607 - migrateData - INFO - 24 Idps created -2022-11-29 10:32:16,685 - migrateData - INFO - 409 Sps created -2022-11-29 10:32:18,001 - migrateData - INFO - 3612 Country Stats created -2022-11-29 10:32:42,317 - migrateData - INFO - No new data found -2022-11-29 10:32:42,321 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:42,322 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:32:42,322 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:32:42,323 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-29 10:32:42,323 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:42,323 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:42,324 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:32:42,324 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:32:42,325 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,325 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,325 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,326 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:42,326 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,327 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-29 10:32:42,327 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,328 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,328 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,328 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,329 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:32:42,329 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,329 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,329 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,332 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:42,333 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,334 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:32:42,334 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,334 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:32:42,335 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,335 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-29 10:32:42,335 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-29 10:32:42,336 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:42,336 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:32:42,336 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:32:42,337 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-29 10:32:42,339 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-29 10:32:42,339 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,339 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-29 10:32:42,340 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:42,340 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,340 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:32:42,341 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:42,341 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:32:42,341 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:32:42,341 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:32:42,342 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:42,342 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-29 10:32:42,342 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,343 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:42,343 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,343 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,343 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:32:42,344 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,344 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:32:42,345 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,345 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-29 10:32:42,345 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,345 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,346 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-29 10:32:42,346 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,346 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,347 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,347 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,348 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,348 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,349 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,350 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,351 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,352 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,352 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-29 10:32:42,354 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,354 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,359 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,360 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,360 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,360 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-29 10:32:42,361 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,361 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:42,362 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,363 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-29 10:32:42,363 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,364 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,364 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,365 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-29 10:32:42,365 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:42,366 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:42,366 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:42,367 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:42,367 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,367 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:42,367 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,368 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-29 10:32:42,368 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:32:42,368 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-29 10:32:42,369 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,369 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,369 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-29 10:32:42,369 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,369 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,370 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,370 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,370 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-29 10:32:42,371 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:42,371 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-29 10:32:42,372 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,372 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,372 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:32:42,373 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:32:42,374 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-29 10:32:42,374 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,375 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:42,375 - migrateData - INFO - Vo name AMB with id 9 -2022-11-29 10:32:42,376 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:42,380 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:42,380 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:42,381 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,381 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,381 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,382 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,382 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:42,384 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:42,387 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:42,387 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:42,388 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-29 10:32:42,389 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:42,390 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-29 10:32:42,391 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:42,391 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-29 10:32:42,392 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,393 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:32:42,394 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,394 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:32:42,395 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-29 10:32:42,395 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-29 10:32:42,430 - migrateData - INFO - 24 Idps created -2022-11-29 10:32:42,515 - migrateData - INFO - 409 Sps created -2022-11-29 10:32:43,868 - migrateData - INFO - 3612 Country Stats created diff --git a/data_migrations/log/metricsMigrate.log.2022-11-30 b/data_migrations/log/metricsMigrate.log.2022-11-30 deleted file mode 100644 index abecbfa..0000000 --- a/data_migrations/log/metricsMigrate.log.2022-11-30 +++ /dev/null @@ -1,4714 +0,0 @@ -2022-11-30 09:07:19,019 - migrateData - INFO - No new data found -2022-11-30 09:07:19,031 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:07:19,033 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:07:19,034 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:07:19,034 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:07:19,035 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:07:19,035 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:07:19,036 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:07:19,036 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:07:19,037 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,038 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,039 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,039 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:07:19,040 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,041 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-30 09:07:19,042 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,044 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,045 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,045 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,046 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:07:19,047 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,048 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,048 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,049 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:07:19,050 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,050 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:07:19,052 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,053 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:07:19,054 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,056 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-30 09:07:19,057 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:07:19,059 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:07:19,059 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:07:19,059 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:07:19,060 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:07:19,060 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:07:19,060 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,060 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:07:19,061 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:07:19,061 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,063 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:07:19,065 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:07:19,067 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:07:19,068 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:07:19,070 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:07:19,073 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:07:19,075 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-30 09:07:19,077 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,079 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:07:19,081 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,081 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,081 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:07:19,082 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,083 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:07:19,084 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,086 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:07:19,087 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,088 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,089 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:07:19,090 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,090 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,091 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,092 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,093 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,093 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,094 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,096 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,098 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,099 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,100 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:07:19,100 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,101 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,102 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,103 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,104 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,105 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:07:19,106 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,106 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:07:19,107 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,107 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:07:19,108 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,110 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,110 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,111 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:07:19,112 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:07:19,113 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:07:19,113 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:07:19,114 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:07:19,114 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,114 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:07:19,115 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,115 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-30 09:07:19,115 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:07:19,116 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-30 09:07:19,116 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,116 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,116 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:07:19,117 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,117 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,118 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,118 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,119 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-30 09:07:19,120 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:07:19,120 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:07:19,120 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,121 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,121 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:07:19,121 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:07:19,121 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:07:19,122 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,122 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:07:19,123 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:07:19,123 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:07:19,124 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:07:19,125 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:07:19,125 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,126 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,127 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,127 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,128 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:07:19,129 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:07:19,130 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:07:19,131 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:07:19,132 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:07:19,133 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:07:19,133 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:07:19,134 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:07:19,135 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:07:19,135 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,136 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:07:19,136 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,137 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:07:19,138 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:07:19,138 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:07:19,178 - migrateData - INFO - 24 Idps created -2022-11-30 09:07:19,316 - migrateData - INFO - 409 Sps created -2022-11-30 09:10:08,176 - migrateData - INFO - No new data found -2022-11-30 09:10:08,180 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:10:08,182 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:10:08,184 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:10:08,185 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:10:08,187 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:10:08,191 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:10:08,193 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:10:08,195 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:10:08,197 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,198 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,199 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,203 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:10:08,204 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,205 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-30 09:10:08,205 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,205 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,206 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,206 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,207 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:10:08,207 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,207 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,207 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,208 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:10:08,208 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,208 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:10:08,209 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,209 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:10:08,209 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,210 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-30 09:10:08,210 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:10:08,210 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:10:08,210 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:10:08,222 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:10:08,223 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:10:08,223 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:10:08,223 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,224 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:10:08,224 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:10:08,224 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,224 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:10:08,225 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:10:08,225 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:10:08,225 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:10:08,225 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:10:08,225 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:10:08,226 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-30 09:10:08,226 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,226 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:10:08,227 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,227 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,227 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:10:08,227 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,228 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:10:08,228 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,228 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:10:08,228 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,229 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,229 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:10:08,229 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,229 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,230 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,230 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,231 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,231 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,231 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,232 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,232 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,232 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,233 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:10:08,233 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,233 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,234 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,234 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,234 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,234 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:10:08,235 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,235 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:10:08,235 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,235 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:10:08,236 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,236 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,236 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,237 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:10:08,237 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:10:08,237 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:10:08,238 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:10:08,238 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:10:08,238 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,238 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:10:08,239 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,239 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-30 09:10:08,239 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:10:08,240 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-30 09:10:08,240 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,240 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,240 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:10:08,241 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,241 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,241 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,241 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,242 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-30 09:10:08,242 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:10:08,242 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:10:08,242 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,243 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,243 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:10:08,243 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:10:08,243 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:10:08,244 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,244 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:10:08,244 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:10:08,245 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:10:08,245 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:10:08,245 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:10:08,246 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,246 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,246 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,246 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,248 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:10:08,248 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:10:08,249 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:10:08,255 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:10:08,256 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:10:08,256 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:10:08,257 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:10:08,257 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:10:08,257 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:10:08,258 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,258 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:10:08,258 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,258 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:10:08,259 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:10:08,259 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:10:08,289 - migrateData - INFO - 24 Idps created -2022-11-30 09:10:08,383 - migrateData - INFO - 409 Sps created -2022-11-30 09:10:08,399 - statisticsCountryHashedController - ERROR - Service entityid not found -2022-11-30 09:10:08,406 - pgConnector - ERROR - invalid input syntax for type date: "1bfaf5e477434bbbde82e7bc30435146" -LINE 2: VALUES ('1bfaf5e477434bbbde82e7bc30435146', '202... - ^ -2022-11-30 09:11:18,145 - migrateData - INFO - No new data found -2022-11-30 09:11:18,149 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:11:18,150 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:11:18,150 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:11:18,150 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:11:18,151 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:11:18,151 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:11:18,151 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:11:18,152 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:11:18,152 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,153 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,153 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,154 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:11:18,155 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,155 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-30 09:11:18,156 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,156 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,156 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,157 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,157 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:11:18,158 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,158 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,158 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,159 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:11:18,159 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,159 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:11:18,160 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,160 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:11:18,160 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,162 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-30 09:11:18,163 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:11:18,163 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:11:18,163 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:11:18,163 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:11:18,164 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:11:18,164 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:11:18,165 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,165 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:11:18,166 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:11:18,166 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,166 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:11:18,166 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:11:18,167 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:11:18,167 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:11:18,167 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:11:18,167 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:11:18,167 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-30 09:11:18,168 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,168 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:11:18,168 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,168 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,168 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:11:18,169 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,169 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:11:18,169 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,169 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:11:18,170 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,170 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,170 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:11:18,170 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,170 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,171 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,171 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,171 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,171 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,172 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,172 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,172 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,173 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,173 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:11:18,173 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,173 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,174 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,175 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,178 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,180 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:11:18,183 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,184 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:11:18,185 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,185 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:11:18,186 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,187 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,187 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,187 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:11:18,188 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:11:18,189 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:11:18,190 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:11:18,190 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:11:18,201 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,202 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:11:18,202 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,206 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-30 09:11:18,207 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:11:18,208 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-30 09:11:18,209 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,210 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,212 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:11:18,213 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,215 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,216 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,217 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,217 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-30 09:11:18,218 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:11:18,219 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:11:18,219 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,220 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,220 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:11:18,221 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:11:18,222 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:11:18,222 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,223 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:11:18,224 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:11:18,224 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:11:18,225 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:11:18,226 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:11:18,226 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,227 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,228 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,229 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,230 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:11:18,231 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:11:18,233 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:11:18,234 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:11:18,235 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:11:18,236 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:11:18,236 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:11:18,237 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:11:18,238 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:11:18,238 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,239 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:11:18,239 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,239 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:11:18,240 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:11:18,240 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:11:18,271 - migrateData - INFO - 24 Idps created -2022-11-30 09:11:18,364 - migrateData - INFO - 409 Sps created -2022-11-30 09:11:18,375 - statisticsCountryHashedController - ERROR - Service entityid not found -2022-11-30 09:11:18,378 - pgConnector - ERROR - invalid input syntax for type date: "1bfaf5e477434bbbde82e7bc30435146" -LINE 2: VALUES ('1bfaf5e477434bbbde82e7bc30435146', '202... - ^ -2022-11-30 09:12:02,744 - migrateData - INFO - No new data found -2022-11-30 09:12:02,751 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:12:02,752 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:12:02,752 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:12:02,752 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:12:02,753 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:12:02,753 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:12:02,754 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:12:02,754 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:12:02,755 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,755 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,755 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,756 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:12:02,756 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,756 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-30 09:12:02,757 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,757 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,757 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,763 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,764 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:12:02,765 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,765 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,766 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,766 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:12:02,766 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,766 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:12:02,767 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,767 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:12:02,767 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,768 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-30 09:12:02,768 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:12:02,768 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:12:02,768 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:12:02,769 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:12:02,769 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:12:02,769 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:12:02,770 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,770 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:12:02,770 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:12:02,771 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,771 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:12:02,772 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:12:02,772 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:12:02,772 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:12:02,773 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:12:02,773 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:12:02,774 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-30 09:12:02,774 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,775 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:12:02,775 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,775 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,775 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:12:02,776 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,776 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:12:02,776 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,776 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:12:02,777 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,777 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,777 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:12:02,777 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,777 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,778 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,781 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,781 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,781 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,782 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,785 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,787 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,790 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,791 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:12:02,792 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,793 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,794 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,795 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,796 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,797 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:12:02,798 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,799 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:12:02,800 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,801 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:12:02,801 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,809 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,810 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,811 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:12:02,813 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:12:02,814 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:12:02,815 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:12:02,817 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:12:02,818 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,819 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:12:02,820 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,821 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-30 09:12:02,822 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:12:02,822 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-30 09:12:02,823 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,825 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,826 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:12:02,827 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,829 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,833 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,834 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,835 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-30 09:12:02,835 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:12:02,836 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:12:02,837 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,838 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,839 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:12:02,840 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:12:02,841 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:12:02,841 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,842 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:12:02,843 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:12:02,844 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:12:02,844 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:12:02,845 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:12:02,846 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,846 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,848 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,849 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,850 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:12:02,851 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:12:02,852 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:12:02,853 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:12:02,854 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:12:02,855 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:12:02,855 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:12:02,856 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:12:02,857 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:12:02,858 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,859 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:12:02,859 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,860 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:12:02,861 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:12:02,862 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:12:02,887 - migrateData - INFO - 24 Idps created -2022-11-30 09:12:02,994 - migrateData - INFO - 409 Sps created -2022-11-30 09:12:03,008 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:12:03,010 - pgConnector - ERROR - invalid input syntax for type date: "1bfaf5e477434bbbde82e7bc30435146" -LINE 2: VALUES ('1bfaf5e477434bbbde82e7bc30435146', '202... - ^ -2022-11-30 09:15:46,398 - migrateData - INFO - No new data found -2022-11-30 09:15:46,404 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:15:46,408 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:15:46,411 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:15:46,415 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:15:46,418 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:15:46,422 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:15:46,426 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:15:46,429 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:15:46,432 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,432 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,433 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,433 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:15:46,434 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,438 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-30 09:15:46,440 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,441 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,441 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,447 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,450 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:15:46,453 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,454 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,457 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,458 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:15:46,459 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,459 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:15:46,460 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,460 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:15:46,461 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,461 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-30 09:15:46,462 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:15:46,475 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:15:46,479 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:15:46,482 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:15:46,486 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:15:46,487 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:15:46,487 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,488 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:15:46,494 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:15:46,496 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,497 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:15:46,497 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:15:46,498 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:15:46,499 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:15:46,499 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:15:46,500 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:15:46,500 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-30 09:15:46,501 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,501 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:15:46,502 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,502 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,503 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:15:46,503 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,504 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:15:46,504 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,505 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:15:46,514 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,517 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,520 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:15:46,523 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,525 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,528 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,531 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,534 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,536 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,538 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,541 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,542 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,545 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,546 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:15:46,547 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,548 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,549 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,551 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,552 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,553 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:15:46,553 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,554 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:15:46,555 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,556 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:15:46,557 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,558 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,559 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,560 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:15:46,561 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:15:46,562 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:15:46,563 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:15:46,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:15:46,574 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,575 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:15:46,575 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,576 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-30 09:15:46,578 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:15:46,579 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-30 09:15:46,580 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,581 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,581 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:15:46,582 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,582 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,583 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,584 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,585 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-30 09:15:46,586 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:15:46,587 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:15:46,589 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,591 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,593 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:15:46,595 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:15:46,597 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:15:46,598 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,600 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:15:46,601 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:15:46,603 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:15:46,604 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:15:46,606 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:15:46,607 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,609 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,610 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,611 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,612 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:15:46,613 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:15:46,614 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:15:46,616 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:15:46,617 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:15:46,618 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:15:46,619 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:15:46,621 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:15:46,622 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:15:46,624 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,625 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:15:46,626 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,627 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:15:46,628 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:15:46,629 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:15:46,664 - migrateData - INFO - 24 Idps created -2022-11-30 09:15:46,781 - migrateData - INFO - 409 Sps created -2022-11-30 09:15:46,809 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:15:46,811 - statisticsCountryHashedController - INFO - 1bfaf5e477434bbbde82e7bc30435146 -2022-11-30 09:15:46,812 - pgConnector - ERROR - invalid input syntax for type date: "1bfaf5e477434bbbde82e7bc30435146" -LINE 2: VALUES ('1bfaf5e477434bbbde82e7bc30435146', '202... - ^ -2022-11-30 09:16:28,556 - migrateData - INFO - No new data found -2022-11-30 09:16:28,560 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:28,561 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:16:28,562 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:16:28,563 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:16:28,564 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:28,565 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:28,566 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:16:28,567 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:16:28,570 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,571 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,572 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,573 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:28,578 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,579 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-30 09:16:28,584 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,584 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,585 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,585 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,585 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:16:28,586 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,586 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,586 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,587 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:28,587 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,587 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:16:28,588 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,588 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:16:28,588 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,589 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-30 09:16:28,589 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:16:28,589 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:28,590 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:16:28,590 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:16:28,590 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:16:28,591 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:16:28,591 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,591 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:16:28,592 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:28,592 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,592 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:16:28,593 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:28,593 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:16:28,593 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:16:28,593 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:16:28,594 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:28,594 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-30 09:16:28,595 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,596 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:28,596 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,597 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,597 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:16:28,597 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,598 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:16:28,599 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,600 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:28,600 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,601 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,601 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:16:28,602 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,602 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,603 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,623 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,626 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,627 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,629 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,631 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,631 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,633 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,633 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:28,634 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,636 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,637 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,638 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,638 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,639 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:16:28,639 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,640 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:28,641 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,641 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:28,642 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,655 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,656 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,657 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:16:28,658 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:28,658 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:28,659 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:28,660 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:28,660 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,661 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:28,661 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,662 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-30 09:16:28,662 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:16:28,663 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-30 09:16:28,663 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,664 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,664 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:28,665 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,665 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,665 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,666 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,667 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-30 09:16:28,667 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:28,668 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:28,668 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,669 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,669 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:16:28,669 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:16:28,670 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:16:28,671 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,671 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:28,672 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:16:28,672 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:28,673 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:28,673 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:28,674 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,674 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,678 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,680 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,681 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:28,682 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:28,684 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:28,685 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:28,686 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:28,687 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:28,687 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:28,687 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:28,688 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:28,688 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,688 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:16:28,688 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,689 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:16:28,689 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:28,689 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:16:28,726 - migrateData - INFO - 24 Idps created -2022-11-30 09:16:28,804 - migrateData - INFO - 409 Sps created -2022-11-30 09:16:28,815 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:28,817 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,819 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,821 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,823 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,825 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,827 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,828 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,832 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,833 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,835 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,837 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,839 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,842 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,844 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,845 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,847 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,848 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,849 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,851 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,852 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,853 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:28,855 - statisticsCountryHashedController - INFO - 2020-12-22 -2022-11-30 09:16:28,856 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,858 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,859 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,861 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:28,862 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:28,863 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:28,865 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,869 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,871 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,873 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,874 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,876 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,878 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,879 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,881 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,883 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:28,885 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,886 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,887 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,888 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,889 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,891 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,894 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,896 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,899 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,901 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,902 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:28,904 - statisticsCountryHashedController - INFO - 2020-12-23 -2022-11-30 09:16:28,906 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,907 - statisticsCountryHashedController - INFO - 2020-12-24 -2022-11-30 09:16:28,910 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:28,910 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:28,911 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,913 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,914 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,915 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,917 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,917 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,918 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,918 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,919 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,921 - statisticsCountryHashedController - INFO - 2020-12-27 -2022-11-30 09:16:28,922 - statisticsCountryHashedController - INFO - 2020-12-27 -2022-11-30 09:16:28,924 - statisticsCountryHashedController - INFO - 2020-12-27 -2022-11-30 09:16:28,926 - statisticsCountryHashedController - INFO - 2020-12-27 -2022-11-30 09:16:28,927 - statisticsCountryHashedController - INFO - 2020-12-27 -2022-11-30 09:16:28,929 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,930 - statisticsCountryHashedController - INFO - 2020-12-27 -2022-11-30 09:16:28,932 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,933 - statisticsCountryHashedController - INFO - 2020-12-27 -2022-11-30 09:16:28,935 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:28,937 - statisticsCountryHashedController - INFO - 2020-12-28 -2022-11-30 09:16:28,938 - statisticsCountryHashedController - INFO - 2020-12-28 -2022-11-30 09:16:28,940 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,941 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,943 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,944 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,946 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:28,948 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,952 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,954 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,955 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,957 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,958 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,959 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,961 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,962 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,964 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,966 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,968 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,970 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,971 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:28,975 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,976 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,979 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,981 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,983 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,984 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,986 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,990 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,992 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:28,993 - statisticsCountryHashedController - INFO - 2020-12-29 -2022-11-30 09:16:28,995 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:28,996 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:28,998 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:28,998 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:29,000 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:29,000 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found -2022-11-30 09:16:29,002 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,004 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,006 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:29,008 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:29,009 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:29,011 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,012 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:29,014 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,015 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,016 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,018 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,020 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:29,020 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,023 - statisticsCountryHashedController - INFO - 2021-04-09 -2022-11-30 09:16:29,025 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,026 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,028 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,030 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:29,031 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,032 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,032 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:29,034 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:29,045 - statisticsCountryHashedController - INFO - 2021-05-06 -2022-11-30 09:16:29,047 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,049 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,050 - statisticsCountryHashedController - INFO - 2020-12-30 -2022-11-30 09:16:29,052 - statisticsCountryHashedController - INFO - 2020-12-31 -2022-11-30 09:16:29,054 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,055 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,056 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,057 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:29,057 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,058 - statisticsCountryHashedController - INFO - 2020-12-31 -2022-11-30 09:16:29,060 - statisticsCountryHashedController - INFO - 2021-05-07 -2022-11-30 09:16:29,064 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,065 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found -2022-11-30 09:16:29,066 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,067 - statisticsCountryHashedController - INFO - 2020-12-31 -2022-11-30 09:16:29,069 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,070 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,071 - statisticsCountryHashedController - INFO - 2021-05-07 -2022-11-30 09:16:29,072 - statisticsCountryHashedController - INFO - 2021-04-10 -2022-11-30 09:16:29,074 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,078 - statisticsCountryHashedController - INFO - 2021-04-10 -2022-11-30 09:16:29,081 - statisticsCountryHashedController - INFO - 2021-05-07 -2022-11-30 09:16:29,083 - statisticsCountryHashedController - INFO - 2021-01-01 -2022-11-30 09:16:29,085 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,086 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,087 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,088 - statisticsCountryHashedController - INFO - 2021-01-02 -2022-11-30 09:16:29,090 - statisticsCountryHashedController - INFO - 2021-05-07 -2022-11-30 09:16:29,092 - statisticsCountryHashedController - INFO - 2021-05-07 -2022-11-30 09:16:29,093 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,094 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,095 - statisticsCountryHashedController - INFO - 2021-05-07 -2022-11-30 09:16:29,096 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:29,098 - statisticsCountryHashedController - INFO - 2021-05-07 -2022-11-30 09:16:29,100 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,101 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,102 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:29,103 - statisticsCountryHashedController - INFO - 2021-04-11 -2022-11-30 09:16:29,105 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,106 - statisticsCountryHashedController - INFO - 2021-01-04 -2022-11-30 09:16:29,108 - statisticsCountryHashedController - INFO - 2021-01-04 -2022-11-30 09:16:29,109 - statisticsCountryHashedController - INFO - 2021-01-04 -2022-11-30 09:16:29,110 - statisticsCountryHashedController - INFO - 2021-01-04 -2022-11-30 09:16:29,112 - statisticsCountryHashedController - INFO - 2021-01-04 -2022-11-30 09:16:29,113 - statisticsCountryHashedController - INFO - 2021-05-08 -2022-11-30 09:16:29,116 - statisticsCountryHashedController - INFO - 2021-01-04 -2022-11-30 09:16:29,117 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,124 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,126 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,127 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,128 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,130 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,132 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,134 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,136 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,140 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,147 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,149 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,151 - statisticsCountryHashedController - INFO - 2021-04-11 -2022-11-30 09:16:29,153 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,154 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,156 - statisticsCountryHashedController - INFO - 2021-01-05 -2022-11-30 09:16:29,158 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,159 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,160 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,161 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,163 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,164 - statisticsCountryHashedController - INFO - 2021-01-06 -2022-11-30 09:16:29,167 - statisticsCountryHashedController - INFO - 2021-01-06 -2022-11-30 09:16:29,169 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,171 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,172 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,175 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,176 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:29,178 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,180 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,181 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:29,182 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,183 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,184 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,185 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,186 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,202 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,204 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,206 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,210 - statisticsCountryHashedController - INFO - 2021-01-07 -2022-11-30 09:16:29,212 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,214 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:29,214 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,217 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,218 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,220 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,220 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,222 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,224 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,226 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,228 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,230 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,232 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,234 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,236 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,238 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,239 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,241 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,243 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,244 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,246 - statisticsCountryHashedController - INFO - 2021-01-08 -2022-11-30 09:16:29,248 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,249 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,263 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,266 - statisticsCountryHashedController - INFO - 2021-01-10 -2022-11-30 09:16:29,278 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,281 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,283 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:29,291 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,293 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,295 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,298 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,300 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,304 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,308 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,312 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,314 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,315 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,316 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,319 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,322 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,323 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found -2022-11-30 09:16:29,324 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,326 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,328 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,329 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,330 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:29,331 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,334 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,337 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,340 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,342 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,345 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,347 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,348 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,349 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,355 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,356 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,359 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,361 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,364 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,366 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,368 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,371 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,373 - statisticsCountryHashedController - INFO - 2021-01-11 -2022-11-30 09:16:29,375 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found -2022-11-30 09:16:29,376 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,378 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,379 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,381 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,382 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,384 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,386 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:29,387 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found -2022-11-30 09:16:29,390 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,392 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,393 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,396 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,397 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,401 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,402 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:29,404 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,406 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,407 - statisticsCountryHashedController - INFO - 2021-04-12 -2022-11-30 09:16:29,409 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,410 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,412 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,414 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,415 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,415 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,417 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,420 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,422 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,424 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,427 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,428 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,429 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,431 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,433 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,435 - statisticsCountryHashedController - ERROR - Service entityid bulut.truba.gov.tr not found -2022-11-30 09:16:29,436 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,441 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,445 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,448 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,450 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:29,452 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,455 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,458 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,461 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,463 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,466 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,469 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,471 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,473 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,475 - statisticsCountryHashedController - INFO - 2021-01-12 -2022-11-30 09:16:29,483 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:29,483 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,484 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,485 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,489 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,490 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,491 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,494 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,496 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,498 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,500 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,504 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,505 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,505 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:29,505 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,508 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,510 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,511 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,512 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found -2022-11-30 09:16:29,513 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,514 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,516 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,519 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,520 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:29,521 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,523 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,525 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,527 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,531 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,533 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,534 - statisticsCountryHashedController - INFO - 2021-05-10 -2022-11-30 09:16:29,537 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,542 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,543 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,544 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,546 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,548 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,550 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,552 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,554 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,556 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,557 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,562 - statisticsCountryHashedController - ERROR - Service entityid test not found -2022-11-30 09:16:29,563 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,565 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,567 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,569 - statisticsCountryHashedController - ERROR - Service entityid bulut.truba.gov.tr not found -2022-11-30 09:16:29,571 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,575 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,577 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,579 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,580 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,580 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,581 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,582 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,590 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,591 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:29,593 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,594 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,597 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,598 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,599 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:29,600 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,603 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,604 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,606 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,607 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,610 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,612 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,613 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,614 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,616 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,618 - statisticsCountryHashedController - INFO - 2021-01-13 -2022-11-30 09:16:29,620 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,622 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,623 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,628 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,630 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,635 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,637 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,638 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:29,641 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,642 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,644 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,646 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,648 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,650 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,651 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,653 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,655 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,656 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,659 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,661 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:29,662 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,663 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,665 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,668 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,670 - statisticsCountryHashedController - INFO - 2021-04-13 -2022-11-30 09:16:29,673 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,675 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,677 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,679 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,681 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,693 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,698 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,699 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,701 - statisticsCountryHashedController - INFO - 2021-01-14 -2022-11-30 09:16:29,703 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,705 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,706 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,708 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,711 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,714 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,718 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,721 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,723 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,726 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,728 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,731 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,743 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:29,744 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,746 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found -2022-11-30 09:16:29,748 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,753 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,754 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,756 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,757 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,759 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,760 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,761 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,763 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,764 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,765 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,767 - statisticsCountryHashedController - INFO - 2021-01-15 -2022-11-30 09:16:29,768 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,768 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,770 - statisticsCountryHashedController - INFO - 2021-01-16 -2022-11-30 09:16:29,771 - statisticsCountryHashedController - INFO - 2021-01-16 -2022-11-30 09:16:29,773 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,774 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,776 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,776 - statisticsCountryHashedController - INFO - 2021-01-16 -2022-11-30 09:16:29,778 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,783 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,784 - statisticsCountryHashedController - INFO - 2021-01-17 -2022-11-30 09:16:29,786 - statisticsCountryHashedController - INFO - 2021-01-17 -2022-11-30 09:16:29,788 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,789 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,790 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:29,791 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,792 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,793 - statisticsCountryHashedController - ERROR - Service entityid bulut.truba.gov.tr not found -2022-11-30 09:16:29,794 - statisticsCountryHashedController - INFO - 2021-01-17 -2022-11-30 09:16:29,795 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,796 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,796 - statisticsCountryHashedController - INFO - 2021-01-17 -2022-11-30 09:16:29,798 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,800 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,803 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,805 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,807 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,809 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,811 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,813 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,815 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,817 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,819 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,821 - statisticsCountryHashedController - INFO - 2021-05-11 -2022-11-30 09:16:29,822 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:29,823 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,825 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,826 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,828 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,829 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,830 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,832 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,834 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,839 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,841 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,842 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,844 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,846 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,848 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,851 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,852 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,854 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,856 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,857 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:29,858 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,860 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,862 - statisticsCountryHashedController - INFO - 2021-01-18 -2022-11-30 09:16:29,864 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,866 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,867 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,868 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,869 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,871 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,872 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,874 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,875 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,877 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,879 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,881 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,883 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,885 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,887 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,888 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,890 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,892 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,893 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,903 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:29,905 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:29,907 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,908 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,909 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:29,910 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,911 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,913 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,915 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,917 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,919 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,923 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,925 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,927 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,929 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,931 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,932 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,934 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,935 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,938 - statisticsCountryHashedController - INFO - 2021-01-19 -2022-11-30 09:16:29,940 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:29,941 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,942 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,943 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,944 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:29,945 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,946 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found -2022-11-30 09:16:29,947 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,949 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,953 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,955 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,958 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,959 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,961 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,962 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,964 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,966 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,968 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,969 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,971 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,972 - statisticsCountryHashedController - INFO - 2021-04-14 -2022-11-30 09:16:29,973 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,975 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,977 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,979 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,981 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,983 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,984 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,985 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,987 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,989 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,991 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,991 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,993 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:29,994 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,995 - statisticsCountryHashedController - INFO - 2021-01-20 -2022-11-30 09:16:29,996 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:29,997 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:29,999 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,001 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,003 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,004 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,007 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,008 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,010 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,011 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,013 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,014 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,016 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,017 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,019 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:30,020 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,021 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,023 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,024 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,026 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,027 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,028 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,030 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,032 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,035 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,036 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,038 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,040 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:30,040 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,042 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,043 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,045 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,047 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,049 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,051 - statisticsCountryHashedController - INFO - 2021-01-21 -2022-11-30 09:16:30,053 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,055 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,056 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,059 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,061 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,062 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,064 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,065 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,066 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,068 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,070 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,072 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,074 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,075 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,077 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,078 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,080 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,082 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,084 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,086 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,091 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,092 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,094 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,096 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,097 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,099 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,101 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,103 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,105 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,111 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,113 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,115 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,118 - statisticsCountryHashedController - INFO - 2021-01-22 -2022-11-30 09:16:30,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,120 - statisticsCountryHashedController - INFO - 2021-01-23 -2022-11-30 09:16:30,122 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,125 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,127 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,128 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,130 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,132 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:30,133 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,135 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,137 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,139 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,141 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,142 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,144 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,145 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,147 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,149 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,151 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,153 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,154 - statisticsCountryHashedController - ERROR - Service entityid 5cb3d4d1-4990-4941-b126-829eed975fd5 not found -2022-11-30 09:16:30,155 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,156 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,157 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,159 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,161 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,163 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,165 - statisticsCountryHashedController - INFO - 2021-04-15 -2022-11-30 09:16:30,166 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:30,168 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,176 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,178 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,181 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,184 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,186 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,188 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,190 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,192 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,193 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,194 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,196 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,198 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,199 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,201 - statisticsCountryHashedController - INFO - 2021-01-25 -2022-11-30 09:16:30,203 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,205 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,208 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,209 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,219 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,221 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,224 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,227 - statisticsCountryHashedController - ERROR - Service entityid 5cb3d4d1-4990-4941-b126-829eed975fd5 not found -2022-11-30 09:16:30,228 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,231 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,233 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,236 - statisticsCountryHashedController - INFO - 2021-05-12 -2022-11-30 09:16:30,239 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,240 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,242 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,243 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,245 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,247 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,250 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,252 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,254 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,255 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,257 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,258 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,262 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,263 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,266 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,271 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,275 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,276 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,278 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,282 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,284 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:30,287 - statisticsCountryHashedController - INFO - 2021-05-13 -2022-11-30 09:16:30,289 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,291 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,293 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:30,294 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,296 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,298 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,299 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,300 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:30,301 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,304 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,306 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,308 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,310 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,313 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,314 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,316 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,318 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,325 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,329 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,331 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,335 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,337 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,339 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,342 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,344 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,347 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,348 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,349 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,351 - statisticsCountryHashedController - INFO - 2021-01-26 -2022-11-30 09:16:30,352 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,354 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,356 - statisticsCountryHashedController - INFO - 2021-05-13 -2022-11-30 09:16:30,359 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,362 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,365 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,366 - statisticsCountryHashedController - INFO - 2021-05-13 -2022-11-30 09:16:30,368 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,370 - statisticsCountryHashedController - INFO - 2021-04-16 -2022-11-30 09:16:30,372 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,372 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found -2022-11-30 09:16:30,373 - statisticsCountryHashedController - INFO - 2021-05-13 -2022-11-30 09:16:30,379 - statisticsCountryHashedController - INFO - 2021-05-13 -2022-11-30 09:16:30,381 - statisticsCountryHashedController - INFO - 2021-05-13 -2022-11-30 09:16:30,383 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,384 - statisticsCountryHashedController - INFO - 2021-05-13 -2022-11-30 09:16:30,387 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,389 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,391 - statisticsCountryHashedController - INFO - 2021-04-17 -2022-11-30 09:16:30,395 - statisticsCountryHashedController - INFO - 2021-04-17 -2022-11-30 09:16:30,396 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:30,398 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,399 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,400 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,402 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,404 - statisticsCountryHashedController - INFO - 2021-04-17 -2022-11-30 09:16:30,406 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,407 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,408 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,410 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,411 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,412 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,413 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,415 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,417 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,418 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,419 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,421 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,422 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,427 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,429 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,431 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:30,432 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,436 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,438 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,441 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,443 - statisticsCountryHashedController - INFO - 2021-04-18 -2022-11-30 09:16:30,446 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,447 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,449 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,451 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,452 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,454 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,456 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,457 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,459 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,461 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,463 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,464 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,466 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,468 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,475 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,478 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,481 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,484 - statisticsCountryHashedController - INFO - 2021-05-14 -2022-11-30 09:16:30,486 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,487 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,489 - statisticsCountryHashedController - INFO - 2021-01-27 -2022-11-30 09:16:30,490 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found -2022-11-30 09:16:30,492 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,494 - statisticsCountryHashedController - INFO - 2021-05-15 -2022-11-30 09:16:30,495 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:30,496 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,498 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,499 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,501 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,503 - statisticsCountryHashedController - INFO - 2021-04-18 -2022-11-30 09:16:30,506 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,507 - statisticsCountryHashedController - INFO - 2021-04-18 -2022-11-30 09:16:30,509 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,512 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,513 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:30,514 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,517 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,519 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,521 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,522 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,525 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,534 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,537 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,539 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,542 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,543 - statisticsCountryHashedController - INFO - 2021-05-16 -2022-11-30 09:16:30,546 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,551 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,554 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,557 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,559 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,561 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,564 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,569 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found -2022-11-30 09:16:30,573 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,575 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,578 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,582 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,604 - statisticsCountryHashedController - INFO - 2021-05-16 -2022-11-30 09:16:30,606 - statisticsCountryHashedController - INFO - 2021-05-16 -2022-11-30 09:16:30,621 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:30,626 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,628 - statisticsCountryHashedController - INFO - 2021-01-28 -2022-11-30 09:16:30,635 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,637 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,639 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,642 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,644 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,646 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,648 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,649 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,651 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,653 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,654 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,656 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,658 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,662 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,665 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,668 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,671 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,674 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,676 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,682 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,684 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,686 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,688 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,691 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,704 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,706 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,708 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,710 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found -2022-11-30 09:16:30,712 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,714 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,715 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,719 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,720 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,722 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,725 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,727 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,729 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,730 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found -2022-11-30 09:16:30,731 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,733 - statisticsCountryHashedController - INFO - 2021-01-29 -2022-11-30 09:16:30,736 - statisticsCountryHashedController - INFO - 2021-01-30 -2022-11-30 09:16:30,737 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,738 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,738 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,739 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,739 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,741 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,742 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:30,743 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,765 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,766 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,768 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,769 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,771 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,772 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,774 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,777 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,779 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found -2022-11-30 09:16:30,783 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,785 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:30,786 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,788 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,790 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,792 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found -2022-11-30 09:16:30,793 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,795 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,797 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,798 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,800 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,802 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,804 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,805 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,807 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found -2022-11-30 09:16:30,808 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,808 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,810 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,815 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,817 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,818 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,819 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,820 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,821 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,822 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,824 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,827 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,829 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,831 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,835 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,837 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,839 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,841 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,843 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,845 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:30,845 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,847 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,849 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,850 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,852 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,853 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,855 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,857 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,859 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,861 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,862 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,864 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,865 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,866 - statisticsCountryHashedController - INFO - 2021-04-19 -2022-11-30 09:16:30,868 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,868 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:30,869 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:30,870 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,871 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:30,872 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,874 - statisticsCountryHashedController - INFO - 2021-05-17 -2022-11-30 09:16:30,877 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,883 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,885 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,887 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,889 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,891 - statisticsCountryHashedController - INFO - 2021-02-01 -2022-11-30 09:16:30,892 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:30,894 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,896 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,898 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,900 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:30,901 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,903 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,904 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,906 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,909 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,913 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:30,914 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,916 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,918 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,920 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,921 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,925 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,931 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,933 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,945 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,951 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,953 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,954 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,956 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,958 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,960 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,962 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,965 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,967 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,968 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,970 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,971 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,973 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,975 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,977 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,978 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,980 - statisticsCountryHashedController - ERROR - Service entityid newEMSO not found -2022-11-30 09:16:30,981 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,982 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:30,984 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:30,986 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,987 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,989 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,991 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,992 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,994 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:30,995 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,997 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:30,998 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:30,999 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:31,002 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:31,004 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:31,006 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,007 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found -2022-11-30 09:16:31,008 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:31,010 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:31,013 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,014 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,017 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,019 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:31,020 - statisticsCountryHashedController - INFO - 2021-02-02 -2022-11-30 09:16:31,022 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,024 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,026 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,027 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,029 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,031 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,032 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,034 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,035 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,037 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,038 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,040 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,043 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,044 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,046 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,048 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,049 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,050 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,053 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,055 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,057 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,057 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,063 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,064 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,066 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,068 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,070 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,071 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,073 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,074 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,075 - statisticsCountryHashedController - ERROR - Service entityid newEMSO not found -2022-11-30 09:16:31,076 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,077 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,080 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,082 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,084 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,086 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,087 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:31,089 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,091 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,093 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,095 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,097 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,099 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,101 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,102 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,104 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,105 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,107 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,109 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,110 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,112 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,113 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,114 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,115 - statisticsCountryHashedController - INFO - 2021-02-03 -2022-11-30 09:16:31,116 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,118 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,118 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,120 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:31,120 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,123 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,125 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,127 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,136 - statisticsCountryHashedController - ERROR - Service entityid 20001e63-94f9-4d23-b6a3-34f2d015d2fa not found -2022-11-30 09:16:31,137 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:31,137 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,138 - statisticsCountryHashedController - ERROR - Service entityid 7e7b6a97-bf7d-44c1-9819-45a919f9fd67 not found -2022-11-30 09:16:31,139 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:31,139 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,139 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,141 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,143 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,145 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,147 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,148 - statisticsCountryHashedController - ERROR - Service entityid eosc-performance not found -2022-11-30 09:16:31,149 - statisticsCountryHashedController - INFO - 2021-04-20 -2022-11-30 09:16:31,150 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:31,151 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found -2022-11-30 09:16:31,152 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:31,153 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,155 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,157 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,159 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,161 - statisticsCountryHashedController - INFO - 2021-05-18 -2022-11-30 09:16:31,163 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,164 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,166 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,167 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,168 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,171 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,175 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,180 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,182 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,206 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,209 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,213 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,215 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,217 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,219 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,221 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,222 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:31,223 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,224 - statisticsCountryHashedController - INFO - 2021-02-04 -2022-11-30 09:16:31,227 - statisticsCountryHashedController - ERROR - Service entityid 59153ccc-b010-426d-b5cd-f13ec16f20e7 not found -2022-11-30 09:16:31,229 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,232 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,234 - statisticsCountryHashedController - ERROR - Service entityid 59153ccc-b010-426d-b5cd-f13ec16f20e7 not found -2022-11-30 09:16:31,235 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,236 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,247 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found -2022-11-30 09:16:31,249 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,250 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,252 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,255 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,257 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,259 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,262 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,263 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,265 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:31,267 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,270 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,275 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,278 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,281 - statisticsCountryHashedController - ERROR - Service entityid 23a67871-130a-47a3-bffb-da6f05b8f886 not found -2022-11-30 09:16:31,282 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:31,283 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:31,285 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,287 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,290 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,293 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,297 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,298 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,300 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,302 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,304 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,307 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,308 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,310 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,312 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,313 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,315 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,316 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,318 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,320 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,322 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,323 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,324 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,326 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,327 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,328 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,330 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,331 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,332 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:31,333 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,339 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,341 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,343 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,345 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,349 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,351 - statisticsCountryHashedController - INFO - 2021-04-21 -2022-11-30 09:16:31,353 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,355 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:31,356 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,358 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,360 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,362 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/default-sp not found -2022-11-30 09:16:31,363 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,365 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,368 - statisticsCountryHashedController - INFO - 2021-02-05 -2022-11-30 09:16:31,370 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,371 - statisticsCountryHashedController - INFO - 2021-02-06 -2022-11-30 09:16:31,373 - statisticsCountryHashedController - INFO - 2021-02-06 -2022-11-30 09:16:31,374 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found -2022-11-30 09:16:31,375 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,377 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,379 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,383 - statisticsCountryHashedController - INFO - 2021-02-06 -2022-11-30 09:16:31,385 - statisticsCountryHashedController - INFO - 2021-02-06 -2022-11-30 09:16:31,387 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,389 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,389 - statisticsCountryHashedController - ERROR - Service entityid chaimeleon-keycloak not found -2022-11-30 09:16:31,395 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,397 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:31,397 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,398 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:31,399 - statisticsCountryHashedController - INFO - 2021-02-07 -2022-11-30 09:16:31,400 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,402 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,405 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,406 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,408 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,409 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:31,410 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,413 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,416 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,418 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,420 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,422 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,423 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,423 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:31,424 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,426 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,427 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,428 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found -2022-11-30 09:16:31,429 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,430 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,432 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,435 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,437 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,438 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,448 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,449 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:31,451 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,453 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,455 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,457 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:31,458 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,460 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,462 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,464 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,467 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,470 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,472 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,474 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,477 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,478 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,479 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,480 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:31,481 - statisticsCountryHashedController - INFO - 2021-05-19 -2022-11-30 09:16:31,484 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,486 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,488 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,495 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,497 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:31,498 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,500 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,503 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,513 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,516 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,519 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,521 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,524 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,526 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:31,526 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,527 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,528 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,529 - statisticsCountryHashedController - INFO - 2021-02-08 -2022-11-30 09:16:31,531 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,532 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,534 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,535 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,536 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found -2022-11-30 09:16:31,537 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,538 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,539 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,541 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,544 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,551 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,555 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,558 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,561 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,563 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,566 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,569 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,572 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,574 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,577 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,580 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,583 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,586 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,589 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,592 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,594 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:31,596 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,602 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,603 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,603 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,605 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,608 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,610 - statisticsCountryHashedController - INFO - 2021-04-22 -2022-11-30 09:16:31,612 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,614 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,615 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,616 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,618 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,620 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,621 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,621 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:31,623 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,624 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,626 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,627 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,629 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,637 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,640 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,643 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,645 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found -2022-11-30 09:16:31,647 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,649 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,650 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,651 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,653 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,654 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,656 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,658 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,660 - statisticsCountryHashedController - INFO - 2021-05-20 -2022-11-30 09:16:31,662 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,664 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,666 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,668 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,670 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,671 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,673 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,677 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,679 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,681 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,683 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,685 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,700 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,704 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,706 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,711 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,715 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,717 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,719 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,722 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,723 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,725 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,732 - statisticsCountryHashedController - INFO - 2021-02-09 -2022-11-30 09:16:31,733 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,734 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,736 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,737 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,739 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,740 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,741 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,742 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,744 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,746 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,749 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,750 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found -2022-11-30 09:16:31,752 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,753 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found -2022-11-30 09:16:31,755 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,757 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,759 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,760 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,763 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,765 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,766 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,768 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,770 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,771 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,772 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,773 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,776 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,779 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,781 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found -2022-11-30 09:16:31,783 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,786 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,787 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,789 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,790 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:31,791 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,793 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,796 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,800 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,803 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,814 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,816 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,818 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,821 - statisticsCountryHashedController - INFO - 2021-02-10 -2022-11-30 09:16:31,823 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,825 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,831 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,833 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,834 - statisticsCountryHashedController - INFO - 2021-02-11 -2022-11-30 09:16:31,835 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:31,839 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,843 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:31,843 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,845 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,846 - statisticsCountryHashedController - INFO - 2021-05-21 -2022-11-30 09:16:31,848 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found -2022-11-30 09:16:31,850 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,851 - statisticsCountryHashedController - INFO - 2021-02-11 -2022-11-30 09:16:31,866 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,869 - statisticsCountryHashedController - INFO - 2021-02-11 -2022-11-30 09:16:31,878 - statisticsCountryHashedController - INFO - 2021-02-11 -2022-11-30 09:16:31,893 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,894 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,895 - statisticsCountryHashedController - INFO - 2021-02-11 -2022-11-30 09:16:31,897 - statisticsCountryHashedController - INFO - 2021-05-22 -2022-11-30 09:16:31,898 - statisticsCountryHashedController - INFO - 2021-05-22 -2022-11-30 09:16:31,900 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,901 - statisticsCountryHashedController - ERROR - Service entityid 773da5b9-1a83-4e6f-8cb9-512cbd07b8ea not found -2022-11-30 09:16:31,902 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,902 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,905 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,908 - statisticsCountryHashedController - INFO - 2021-02-11 -2022-11-30 09:16:31,909 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:31,911 - statisticsCountryHashedController - INFO - 2021-02-11 -2022-11-30 09:16:31,912 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,914 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,916 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,918 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,919 - statisticsCountryHashedController - ERROR - Service entityid 773da5b9-1a83-4e6f-8cb9-512cbd07b8ea not found -2022-11-30 09:16:31,919 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,921 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,922 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:31,923 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,925 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,927 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,929 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,930 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,932 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,933 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,935 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,937 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,938 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,939 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:31,940 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:31,941 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,942 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,943 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,943 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:31,944 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,945 - statisticsCountryHashedController - INFO - 2021-05-23 -2022-11-30 09:16:31,947 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,947 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,949 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:31,949 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,951 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,953 - statisticsCountryHashedController - INFO - 2021-05-23 -2022-11-30 09:16:31,955 - statisticsCountryHashedController - INFO - 2021-05-23 -2022-11-30 09:16:31,957 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,959 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,961 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,962 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,963 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,964 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,966 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found -2022-11-30 09:16:31,967 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,968 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,969 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,969 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:31,970 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:31,970 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,973 - statisticsCountryHashedController - INFO - 2021-02-12 -2022-11-30 09:16:31,975 - statisticsCountryHashedController - INFO - 2021-02-13 -2022-11-30 09:16:31,976 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,977 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:31,977 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:31,978 - statisticsCountryHashedController - INFO - 2021-02-13 -2022-11-30 09:16:31,980 - statisticsCountryHashedController - INFO - 2021-02-13 -2022-11-30 09:16:31,981 - statisticsCountryHashedController - INFO - 2021-02-13 -2022-11-30 09:16:31,983 - statisticsCountryHashedController - INFO - 2021-02-13 -2022-11-30 09:16:31,984 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:31,985 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,987 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:31,989 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,990 - statisticsCountryHashedController - INFO - 2021-02-14 -2022-11-30 09:16:31,992 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,993 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:31,995 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,996 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:31,999 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:32,001 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:32,003 - statisticsCountryHashedController - INFO - 2021-04-23 -2022-11-30 09:16:32,004 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:32,005 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,007 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,008 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,010 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found -2022-11-30 09:16:32,011 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found -2022-11-30 09:16:32,012 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,013 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found -2022-11-30 09:16:32,014 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,018 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,020 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,022 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,023 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,025 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,026 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,027 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,029 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,030 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,031 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,031 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,032 - statisticsCountryHashedController - INFO - 2021-02-14 -2022-11-30 09:16:32,034 - statisticsCountryHashedController - INFO - 2021-04-24 -2022-11-30 09:16:32,035 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,037 - statisticsCountryHashedController - ERROR - Service entityid eosc-performance not found -2022-11-30 09:16:32,037 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,039 - statisticsCountryHashedController - INFO - 2021-04-24 -2022-11-30 09:16:32,040 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found -2022-11-30 09:16:32,041 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,041 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,043 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,045 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,047 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,049 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,051 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,052 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,054 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,056 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,058 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,060 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,063 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,065 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,067 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,068 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,069 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,070 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,073 - statisticsCountryHashedController - INFO - 2021-04-24 -2022-11-30 09:16:32,075 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:32,075 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:32,076 - statisticsCountryHashedController - INFO - 2021-05-24 -2022-11-30 09:16:32,077 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,078 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,080 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,081 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,085 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,087 - statisticsCountryHashedController - INFO - 2021-04-25 -2022-11-30 09:16:32,089 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,090 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,092 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,093 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,094 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,119 - statisticsCountryHashedController - INFO - 2021-02-15 -2022-11-30 09:16:32,127 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,127 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,127 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:32,128 - statisticsCountryHashedController - INFO - 2021-04-25 -2022-11-30 09:16:32,130 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,132 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,134 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,136 - statisticsCountryHashedController - INFO - 2021-04-25 -2022-11-30 09:16:32,138 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:32,138 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,139 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,149 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,152 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,154 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,155 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,156 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,156 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,157 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,158 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,159 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,161 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,163 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,164 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,166 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,166 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,167 - statisticsCountryHashedController - ERROR - Service entityid eosc-performance not found -2022-11-30 09:16:32,168 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,169 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:32,170 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,172 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,173 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,175 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:32,175 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:32,176 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,176 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,178 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,179 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,180 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,183 - statisticsCountryHashedController - INFO - 2021-02-16 -2022-11-30 09:16:32,191 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,193 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,195 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,200 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,204 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,207 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,209 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,211 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,213 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,214 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,217 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,218 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,221 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,225 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,228 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,230 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,232 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,236 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,239 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,241 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,243 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:32,244 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,247 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,250 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found -2022-11-30 09:16:32,251 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,253 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,255 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,260 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,262 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,263 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,265 - statisticsCountryHashedController - ERROR - Service entityid sdc-keycloak not found -2022-11-30 09:16:32,267 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,270 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,273 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,275 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,276 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,278 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,280 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,287 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,293 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,297 - statisticsCountryHashedController - INFO - 2021-04-26 -2022-11-30 09:16:32,299 - statisticsCountryHashedController - ERROR - Service entityid https://snf-14603.ok-kno.grnetcloud.net/registry not found -2022-11-30 09:16:32,300 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,302 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:32,304 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,306 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,308 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,310 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,311 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,314 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,315 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,317 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,320 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,321 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,324 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,326 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,328 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,330 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,332 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,334 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,336 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,347 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,350 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,353 - statisticsCountryHashedController - INFO - 2021-05-25 -2022-11-30 09:16:32,355 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,355 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,357 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,358 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:32,360 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,362 - statisticsCountryHashedController - ERROR - Service entityid sdc-keycloak not found -2022-11-30 09:16:32,363 - statisticsCountryHashedController - ERROR - Service entityid sdc-keycloak not found -2022-11-30 09:16:32,364 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,366 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,367 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,369 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,371 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,372 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:32,373 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,374 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,376 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,377 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,383 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,385 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,388 - statisticsCountryHashedController - INFO - 2021-02-17 -2022-11-30 09:16:32,398 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,401 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,403 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,405 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,406 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found -2022-11-30 09:16:32,407 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found -2022-11-30 09:16:32,408 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,410 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,412 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,414 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,416 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,418 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,420 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,422 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,424 - statisticsCountryHashedController - ERROR - Service entityid a83ee657-da5a-40d2-9904-fe9c33afa0f2 not found -2022-11-30 09:16:32,424 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,425 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,426 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,428 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:32,429 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,430 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,431 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,432 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,434 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,437 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,440 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,442 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,444 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,445 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,449 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,451 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,454 - statisticsCountryHashedController - INFO - 2021-02-18 -2022-11-30 09:16:32,456 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,458 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,461 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:32,463 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,465 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,467 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,470 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,473 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,476 - statisticsCountryHashedController - INFO - 2021-04-27 -2022-11-30 09:16:32,478 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,478 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:32,480 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,482 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,484 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:32,485 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,486 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,487 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,489 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,501 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,502 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,503 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,505 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,525 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,526 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:32,526 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found -2022-11-30 09:16:32,528 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,531 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,534 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,536 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,538 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,540 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,541 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:32,543 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:32,544 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,547 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,549 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,552 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,553 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,555 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,557 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,559 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,560 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,562 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,564 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,565 - statisticsCountryHashedController - INFO - 2021-05-26 -2022-11-30 09:16:32,568 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,574 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,577 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,579 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,580 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,585 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,586 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,588 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,590 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,591 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,593 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,595 - statisticsCountryHashedController - INFO - 2021-02-19 -2022-11-30 09:16:32,596 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,598 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,599 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,601 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,602 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,603 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,604 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,606 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,608 - statisticsCountryHashedController - INFO - 2021-02-20 -2022-11-30 09:16:32,609 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,611 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found -2022-11-30 09:16:32,611 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,613 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,615 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,616 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found -2022-11-30 09:16:32,617 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,620 - statisticsCountryHashedController - INFO - 2021-02-20 -2022-11-30 09:16:32,621 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,622 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,624 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,625 - statisticsCountryHashedController - INFO - 2021-02-21 -2022-11-30 09:16:32,628 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,629 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,632 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,635 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,636 - statisticsCountryHashedController - INFO - 2021-02-21 -2022-11-30 09:16:32,638 - statisticsCountryHashedController - INFO - 2021-02-21 -2022-11-30 09:16:32,640 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,641 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,642 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,644 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,646 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,648 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,649 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,651 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:32,654 - statisticsCountryHashedController - INFO - 2021-02-21 -2022-11-30 09:16:32,656 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:32,661 - statisticsCountryHashedController - INFO - 2021-02-21 -2022-11-30 09:16:32,663 - statisticsCountryHashedController - ERROR - Service entityid 4c4ba6f1-fbbe-4dad-a61e-0dcd60e32bb1 not found -2022-11-30 09:16:32,664 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,666 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,668 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,670 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,672 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,674 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found -2022-11-30 09:16:32,692 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,693 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,695 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,697 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:32,698 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,700 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,701 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,702 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,704 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,706 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,708 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,715 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found -2022-11-30 09:16:32,716 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,727 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,728 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,729 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,731 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,732 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,734 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,735 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,736 - statisticsCountryHashedController - INFO - 2021-04-28 -2022-11-30 09:16:32,738 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,740 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,741 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,743 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,748 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,749 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,751 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,756 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,757 - statisticsCountryHashedController - INFO - 2021-05-27 -2022-11-30 09:16:32,759 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,760 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,763 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,764 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,771 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:32,772 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,774 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:32,775 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,782 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,784 - statisticsCountryHashedController - INFO - 2021-02-22 -2022-11-30 09:16:32,786 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,788 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,789 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,790 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found -2022-11-30 09:16:32,790 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,792 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,795 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,798 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,804 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,815 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,817 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,820 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,846 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,848 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,849 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,851 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,852 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,855 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,858 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,862 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found -2022-11-30 09:16:32,863 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,865 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,866 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,868 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,870 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,872 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,875 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,876 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,878 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,880 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,881 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:32,883 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,884 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,885 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,887 - statisticsCountryHashedController - INFO - 2021-02-23 -2022-11-30 09:16:32,888 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,890 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,892 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,893 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,895 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:32,897 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,902 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,913 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,914 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,916 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,918 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:32,919 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,921 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,924 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,926 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,927 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,929 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,931 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,933 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,934 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,935 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,937 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,938 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,941 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,942 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,943 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:32,944 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,945 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,946 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found -2022-11-30 09:16:32,947 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,949 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,952 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,953 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:32,954 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,956 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found -2022-11-30 09:16:32,956 - statisticsCountryHashedController - ERROR - Service entityid bfed8446-2b9f-4cee-a68c-a0d73ad3ca1a not found -2022-11-30 09:16:32,956 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,958 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,960 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,960 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,961 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,963 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,966 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,968 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,971 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,972 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,974 - statisticsCountryHashedController - INFO - 2021-04-29 -2022-11-30 09:16:32,976 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,978 - statisticsCountryHashedController - INFO - 2021-02-24 -2022-11-30 09:16:32,979 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:32,980 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:32,980 - statisticsCountryHashedController - INFO - 2021-05-28 -2022-11-30 09:16:32,982 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:32,983 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:32,984 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:32,984 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:32,987 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:32,989 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:32,990 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:32,992 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:32,994 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:32,995 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:32,998 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:32,999 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,001 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:33,003 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:33,005 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:33,006 - statisticsCountryHashedController - INFO - 2021-04-30 -2022-11-30 09:16:33,008 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found -2022-11-30 09:16:33,008 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,009 - statisticsCountryHashedController - INFO - 2021-04-30 -2022-11-30 09:16:33,022 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:33,024 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:33,026 - statisticsCountryHashedController - INFO - 2021-04-30 -2022-11-30 09:16:33,028 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:33,029 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found -2022-11-30 09:16:33,030 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:33,031 - statisticsCountryHashedController - INFO - 2021-02-25 -2022-11-30 09:16:33,033 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,035 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,039 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,040 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,042 - statisticsCountryHashedController - INFO - 2021-05-29 -2022-11-30 09:16:33,044 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,045 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,046 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,047 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,049 - statisticsCountryHashedController - INFO - 2021-04-30 -2022-11-30 09:16:33,051 - statisticsCountryHashedController - INFO - 2021-04-30 -2022-11-30 09:16:33,053 - statisticsCountryHashedController - INFO - 2021-04-30 -2022-11-30 09:16:33,054 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,056 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,057 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:33,057 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,058 - statisticsCountryHashedController - INFO - 2021-04-30 -2022-11-30 09:16:33,060 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,061 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,062 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,064 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,065 - statisticsCountryHashedController - INFO - 2021-05-30 -2022-11-30 09:16:33,066 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,068 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,070 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,070 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,072 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,074 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,076 - statisticsCountryHashedController - INFO - 2021-02-26 -2022-11-30 09:16:33,077 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,078 - statisticsCountryHashedController - INFO - 2021-02-27 -2022-11-30 09:16:33,084 - statisticsCountryHashedController - INFO - 2021-02-27 -2022-11-30 09:16:33,086 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,086 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,087 - statisticsCountryHashedController - INFO - 2021-02-27 -2022-11-30 09:16:33,089 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,090 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,091 - statisticsCountryHashedController - INFO - 2021-02-27 -2022-11-30 09:16:33,092 - statisticsCountryHashedController - INFO - 2021-02-28 -2022-11-30 09:16:33,093 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,094 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found -2022-11-30 09:16:33,095 - statisticsCountryHashedController - INFO - 2021-02-28 -2022-11-30 09:16:33,096 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found -2022-11-30 09:16:33,097 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,097 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,098 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,099 - statisticsCountryHashedController - INFO - 2021-05-01 -2022-11-30 09:16:33,100 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,100 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,101 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found -2022-11-30 09:16:33,102 - statisticsCountryHashedController - INFO - 2021-02-28 -2022-11-30 09:16:33,103 - statisticsCountryHashedController - INFO - 2021-02-28 -2022-11-30 09:16:33,105 - statisticsCountryHashedController - INFO - 2021-02-28 -2022-11-30 09:16:33,107 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,108 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,110 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,110 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,112 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,113 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,117 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,118 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,120 - statisticsCountryHashedController - INFO - 2021-05-02 -2022-11-30 09:16:33,121 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,123 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,123 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,124 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,126 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,128 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,129 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,131 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,133 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,134 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,135 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,139 - statisticsCountryHashedController - INFO - 2021-05-02 -2022-11-30 09:16:33,140 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,142 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,143 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,145 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,146 - statisticsCountryHashedController - ERROR - Service entityid eosc:grn:gr not found -2022-11-30 09:16:33,147 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:33,147 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,148 - statisticsCountryHashedController - INFO - 2021-05-02 -2022-11-30 09:16:33,150 - statisticsCountryHashedController - ERROR - Service entityid https://cappakleis1.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:33,151 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,153 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,154 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,155 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:33,156 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,158 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,160 - statisticsCountryHashedController - INFO - 2021-05-03 -2022-11-30 09:16:33,161 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,162 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,163 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,165 - statisticsCountryHashedController - INFO - 2021-05-03 -2022-11-30 09:16:33,167 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,168 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:33,169 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,171 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:33,175 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,179 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,180 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,182 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,184 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,186 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,187 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,189 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,190 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,191 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,192 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,194 - statisticsCountryHashedController - INFO - 2021-05-31 -2022-11-30 09:16:33,195 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,196 - statisticsCountryHashedController - INFO - 2021-05-03 -2022-11-30 09:16:33,198 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:33,199 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,201 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,202 - statisticsCountryHashedController - INFO - 2021-03-01 -2022-11-30 09:16:33,214 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:33,216 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,225 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found -2022-11-30 09:16:33,226 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,229 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,231 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,233 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,236 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,238 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,240 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,242 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,244 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,246 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,248 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,249 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found -2022-11-30 09:16:33,250 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,252 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,254 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,256 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,256 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:33,257 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,259 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,262 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,265 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,266 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,267 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,268 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,269 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,270 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,271 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,272 - statisticsCountryHashedController - ERROR - Service entityid 78f817f0-d1bd-48fc-bab6-c35b5cf31aa7 not found -2022-11-30 09:16:33,273 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,276 - statisticsCountryHashedController - INFO - 2021-05-04 -2022-11-30 09:16:33,279 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,281 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,283 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,284 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,285 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,287 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,288 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,289 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,291 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,294 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,296 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,298 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,300 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:33,301 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,302 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,305 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,307 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,309 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:33,310 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,312 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,313 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,315 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,316 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:33,316 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:33,330 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,331 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,334 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,336 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,338 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,340 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,342 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,344 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:33,345 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,345 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:33,346 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,347 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:33,348 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,349 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,351 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,352 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,353 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,355 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,356 - statisticsCountryHashedController - INFO - 2021-03-02 -2022-11-30 09:16:33,361 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,362 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,362 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found -2022-11-30 09:16:33,363 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,365 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,367 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,369 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:33,371 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,374 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:33,375 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,377 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,378 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,380 - statisticsCountryHashedController - INFO - 2021-06-01 -2022-11-30 09:16:33,382 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:33,383 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,384 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,385 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,388 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,391 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,393 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,396 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,398 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,400 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,401 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,404 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,406 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:33,407 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,408 - statisticsCountryHashedController - ERROR - Service entityid 03e2e77f-76b0-4cb3-8e31-d3e81d49cbab not found -2022-11-30 09:16:33,409 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,411 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,412 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,414 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,424 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,426 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,427 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,429 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,431 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,432 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,434 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:33,434 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,435 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:33,436 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,440 - statisticsCountryHashedController - INFO - 2021-03-03 -2022-11-30 09:16:33,442 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,444 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,445 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,447 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,449 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,451 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,452 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,455 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,456 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,458 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:33,459 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,461 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,462 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,463 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:33,464 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,466 - statisticsCountryHashedController - ERROR - Service entityid keystone-cloud-cnaf not found -2022-11-30 09:16:33,467 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,469 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,475 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:33,475 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,476 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:33,477 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,479 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,480 - statisticsCountryHashedController - INFO - 2021-05-05 -2022-11-30 09:16:33,483 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,484 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,485 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,486 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,487 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,489 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,490 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,491 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,492 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,492 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:33,493 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,494 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,494 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,495 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss not found -2022-11-30 09:16:33,496 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,498 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:33,499 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,502 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,504 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,507 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,508 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:33,511 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,512 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:33,514 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,515 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,517 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,519 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,521 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,521 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:33,523 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,524 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,525 - statisticsCountryHashedController - INFO - 2021-06-02 -2022-11-30 09:16:33,527 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,531 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,532 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,534 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,536 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,538 - statisticsCountryHashedController - ERROR - Service entityid https://eosc-kc.aai-dev.grnet.gr/auth/realms/master not found -2022-11-30 09:16:33,539 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,540 - statisticsCountryHashedController - INFO - 2021-03-04 -2022-11-30 09:16:33,543 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:33,544 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,545 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,548 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,551 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,552 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,554 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,556 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,558 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,561 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,563 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,566 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,568 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,570 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,571 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,575 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,576 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,578 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,579 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,583 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,585 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found -2022-11-30 09:16:33,596 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,599 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,604 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,607 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,609 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,611 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,613 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:33,614 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,616 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,617 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,619 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,620 - statisticsCountryHashedController - ERROR - Service entityid b3eba1d4-4697-4532-8b46-993905bd621a not found -2022-11-30 09:16:33,621 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,621 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,622 - statisticsCountryHashedController - INFO - 2021-03-05 -2022-11-30 09:16:33,624 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,625 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,626 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,628 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,629 - statisticsCountryHashedController - INFO - 2021-03-06 -2022-11-30 09:16:33,635 - statisticsCountryHashedController - INFO - 2021-03-06 -2022-11-30 09:16:33,637 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,643 - statisticsCountryHashedController - INFO - 2021-03-07 -2022-11-30 09:16:33,645 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,646 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,648 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,650 - statisticsCountryHashedController - INFO - 2021-06-03 -2022-11-30 09:16:33,652 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,653 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,654 - statisticsCountryHashedController - INFO - 2021-03-07 -2022-11-30 09:16:33,719 - statisticsCountryHashedController - INFO - 2021-03-07 -2022-11-30 09:16:33,729 - statisticsCountryHashedController - INFO - 2021-03-07 -2022-11-30 09:16:33,731 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,732 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,734 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,736 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,738 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,739 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,750 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,752 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:33,755 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,758 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,760 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,762 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,764 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:33,766 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,772 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,775 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,778 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:33,780 - statisticsCountryHashedController - ERROR - Service entityid 5ae2cbfd-46fa-4c27-8b19-ad6f48978420 not found -2022-11-30 09:16:33,793 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,802 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,805 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,808 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,809 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,810 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,811 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,813 - statisticsCountryHashedController - INFO - 2021-03-08 -2022-11-30 09:16:33,815 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,820 - statisticsCountryHashedController - ERROR - Service entityid 94a9ebcc-3c09-49a5-82fc-d92fe68262b4 not found -2022-11-30 09:16:33,821 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,823 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:33,825 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,828 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,832 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,834 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,837 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,839 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,841 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,842 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,844 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:33,846 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,849 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,850 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,851 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,853 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,855 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,857 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,863 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:33,865 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,866 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,867 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,868 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,869 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,870 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,870 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,871 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,872 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,872 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,873 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,874 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,875 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,878 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,880 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:33,882 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:33,884 - statisticsCountryHashedController - INFO - 2021-03-09 -2022-11-30 09:16:33,886 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,886 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:33,886 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:33,887 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:33,889 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,891 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:33,891 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found -2022-11-30 09:16:33,892 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:33,893 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found -2022-11-30 09:16:33,895 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:33,897 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,897 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:33,898 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,900 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,902 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found -2022-11-30 09:16:33,903 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,904 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:33,905 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,908 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,909 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,911 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,914 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,916 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,920 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,924 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,927 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,929 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,931 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,933 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,936 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,937 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,939 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,942 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,944 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,946 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,947 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,948 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,950 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:33,951 - statisticsCountryHashedController - INFO - 2021-03-10 -2022-11-30 09:16:33,953 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:33,955 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,957 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,959 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,961 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,963 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,965 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,970 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,973 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,978 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,982 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,984 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,990 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,992 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,995 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:33,997 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:33,999 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:34,001 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:34,003 - statisticsCountryHashedController - INFO - 2021-03-11 -2022-11-30 09:16:34,004 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/sso not found -2022-11-30 09:16:34,005 - statisticsCountryHashedController - INFO - 2021-06-04 -2022-11-30 09:16:34,007 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,008 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,010 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,012 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,014 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,015 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,017 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,018 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,019 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,020 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,022 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,023 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,023 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,025 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,026 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,028 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,030 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,031 - statisticsCountryHashedController - INFO - 2021-06-05 -2022-11-30 09:16:34,033 - statisticsCountryHashedController - INFO - 2021-03-12 -2022-11-30 09:16:34,035 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,035 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,036 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,036 - statisticsCountryHashedController - INFO - 2021-03-13 -2022-11-30 09:16:34,038 - statisticsCountryHashedController - INFO - 2021-06-05 -2022-11-30 09:16:34,039 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,040 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,041 - statisticsCountryHashedController - INFO - 2021-03-14 -2022-11-30 09:16:34,043 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,044 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,045 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,047 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,049 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,058 - statisticsCountryHashedController - INFO - 2021-06-06 -2022-11-30 09:16:34,060 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,061 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/simplesaml/module.php/saml/sp/metadata.php/sso not found -2022-11-30 09:16:34,062 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,064 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,067 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,071 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,074 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,077 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,081 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,083 - statisticsCountryHashedController - INFO - 2021-03-15 -2022-11-30 09:16:34,084 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:34,085 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:34,086 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,088 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,091 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,094 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,096 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,103 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,104 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,106 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,114 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,117 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,118 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,121 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,122 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,125 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,127 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,129 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,131 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,131 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,133 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,136 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,137 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,139 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,140 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,141 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,142 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,144 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,145 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,146 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,148 - statisticsCountryHashedController - ERROR - Service entityid http://snf-14603.ok-kno.grnetcloud.net/proxy/module.php/saml/sp/metadata.php/sso not found -2022-11-30 09:16:34,148 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,151 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found -2022-11-30 09:16:34,153 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,155 - statisticsCountryHashedController - INFO - 2021-03-16 -2022-11-30 09:16:34,156 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,158 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,159 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,160 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,162 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,164 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,165 - statisticsCountryHashedController - INFO - 2021-06-07 -2022-11-30 09:16:34,167 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,170 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,172 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,173 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,174 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,175 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,175 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,176 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,177 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,178 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:34,180 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,182 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,183 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,184 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,186 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,188 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,189 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,191 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,192 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:34,193 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,194 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,195 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,196 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,198 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,199 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,200 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,201 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,203 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,205 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,208 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,209 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,211 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,213 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,215 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,216 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,218 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,220 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,222 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,222 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:34,223 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,226 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,227 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,228 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,229 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,230 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,232 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,233 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,235 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,236 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,236 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,237 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,237 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,239 - statisticsCountryHashedController - INFO - 2021-03-17 -2022-11-30 09:16:34,240 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,241 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,241 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:34,242 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,243 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,244 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,245 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,246 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,247 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,247 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,249 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,250 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,252 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,253 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,253 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found -2022-11-30 09:16:34,254 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,254 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,255 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:34,257 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,259 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,262 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,266 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,268 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,270 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,272 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,274 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,279 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,280 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,282 - statisticsCountryHashedController - INFO - 2021-06-08 -2022-11-30 09:16:34,284 - statisticsCountryHashedController - INFO - 2021-03-18 -2022-11-30 09:16:34,285 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,287 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,287 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,288 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,291 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,293 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,294 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,296 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,298 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,299 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:34,300 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,302 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,304 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,306 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,308 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,309 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,311 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,313 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,320 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,328 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,329 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found -2022-11-30 09:16:34,330 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,332 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,338 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,339 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,342 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,358 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,360 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,362 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,363 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,364 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,366 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,368 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,370 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,372 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,374 - statisticsCountryHashedController - INFO - 2021-03-19 -2022-11-30 09:16:34,378 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,379 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,379 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,380 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,380 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,381 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,382 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,384 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,385 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,388 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,391 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,392 - statisticsCountryHashedController - INFO - 2021-06-09 -2022-11-30 09:16:34,394 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,395 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,396 - statisticsCountryHashedController - INFO - 2021-03-20 -2022-11-30 09:16:34,398 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,399 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,400 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,401 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,402 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,403 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,404 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,405 - statisticsCountryHashedController - INFO - 2021-03-21 -2022-11-30 09:16:34,407 - statisticsCountryHashedController - INFO - 2021-03-21 -2022-11-30 09:16:34,409 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:34,409 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,411 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,413 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,416 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,418 - statisticsCountryHashedController - INFO - 2021-06-10 -2022-11-30 09:16:34,420 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,422 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,424 - statisticsCountryHashedController - INFO - 2021-06-10 -2022-11-30 09:16:34,427 - statisticsCountryHashedController - INFO - 2021-06-10 -2022-11-30 09:16:34,430 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,433 - statisticsCountryHashedController - INFO - 2021-06-10 -2022-11-30 09:16:34,435 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,438 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,439 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,440 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,443 - statisticsCountryHashedController - INFO - 2021-06-10 -2022-11-30 09:16:34,444 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,447 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,448 - statisticsCountryHashedController - INFO - 2021-06-10 -2022-11-30 09:16:34,450 - statisticsCountryHashedController - INFO - 2021-06-10 -2022-11-30 09:16:34,452 - statisticsCountryHashedController - INFO - 2021-06-10 -2022-11-30 09:16:34,453 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,454 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,457 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,460 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,461 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,463 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,464 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,464 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,465 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found -2022-11-30 09:16:34,466 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,468 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,469 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found -2022-11-30 09:16:34,470 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,472 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,474 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,477 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,479 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,480 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,481 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:34,481 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,484 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,488 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,491 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,493 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:34,493 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,494 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,495 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,498 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,500 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,501 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,503 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,505 - statisticsCountryHashedController - INFO - 2021-06-11 -2022-11-30 09:16:34,506 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,517 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,519 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,521 - statisticsCountryHashedController - INFO - 2021-03-22 -2022-11-30 09:16:34,522 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,524 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,525 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,525 - statisticsCountryHashedController - INFO - 2021-06-12 -2022-11-30 09:16:34,527 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,530 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,532 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,534 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,537 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,540 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,542 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,544 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,545 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,547 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,548 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,550 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,553 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,555 - statisticsCountryHashedController - INFO - 2021-06-13 -2022-11-30 09:16:34,557 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,559 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,560 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,563 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,564 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,567 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,569 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,571 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,573 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,574 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,576 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,577 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,584 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,586 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,588 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:34,588 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,589 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,592 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,594 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,596 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:34,597 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,600 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,602 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,603 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,605 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,606 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,607 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,608 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found -2022-11-30 09:16:34,609 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,610 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,612 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,613 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,623 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,625 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,627 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,631 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,632 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,633 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,635 - statisticsCountryHashedController - INFO - 2021-06-14 -2022-11-30 09:16:34,636 - statisticsCountryHashedController - ERROR - Service entityid 574f1d35-58ac-4e43-9515-f4c062ec29b7 not found -2022-11-30 09:16:34,637 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,638 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,639 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,640 - statisticsCountryHashedController - INFO - 2021-03-23 -2022-11-30 09:16:34,641 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,641 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,642 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,642 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:34,645 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,647 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,648 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,650 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,652 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,653 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:34,667 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,669 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,684 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,686 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,688 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found -2022-11-30 09:16:34,690 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:34,692 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,694 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,697 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,700 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:34,702 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,726 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,728 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,731 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,733 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,736 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,738 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,739 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,742 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,744 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:34,745 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,746 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,749 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,750 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,753 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,756 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,757 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,758 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,760 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,762 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,776 - statisticsCountryHashedController - INFO - 2021-06-15 -2022-11-30 09:16:34,778 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,779 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,784 - statisticsCountryHashedController - ERROR - Service entityid 8e175a06-d45c-4b69-adae-6a7257bb4990 not found -2022-11-30 09:16:34,785 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,788 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,790 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,791 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,792 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,794 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,799 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,803 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,810 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,811 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,812 - statisticsCountryHashedController - ERROR - Service entityid 574f1d35-58ac-4e43-9515-f4c062ec29b7 not found -2022-11-30 09:16:34,813 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,814 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,815 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,816 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,816 - statisticsCountryHashedController - ERROR - Service entityid a83ee657-da5a-40d2-9904-fe9c33afa0f2 not found -2022-11-30 09:16:34,816 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,818 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,820 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,824 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,829 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,832 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,833 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,833 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,834 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,836 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,838 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,839 - statisticsCountryHashedController - ERROR - Service entityid a83ee657-da5a-40d2-9904-fe9c33afa0f2 not found -2022-11-30 09:16:34,841 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,867 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,874 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,876 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,879 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,881 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,883 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,890 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,893 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,896 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,902 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,905 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:34,907 - statisticsCountryHashedController - INFO - 2021-06-16 -2022-11-30 09:16:34,910 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,913 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,915 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,916 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,918 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,920 - statisticsCountryHashedController - INFO - 2021-03-24 -2022-11-30 09:16:34,922 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,923 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:34,924 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,926 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,928 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:34,930 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,932 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,935 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,936 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,936 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:34,939 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,941 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,942 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:34,943 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,946 - statisticsCountryHashedController - ERROR - Service entityid https://test-lsaai-advancedsupport.ggus.eu/secure not found -2022-11-30 09:16:34,947 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,947 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:34,948 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,952 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,955 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,956 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,958 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,960 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,964 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,966 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,967 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,969 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,970 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,971 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,972 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,973 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,975 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,976 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,977 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss not found -2022-11-30 09:16:34,978 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:34,980 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,982 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,983 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,985 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,986 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:34,987 - statisticsCountryHashedController - ERROR - Service entityid a83ee657-da5a-40d2-9904-fe9c33afa0f2 not found -2022-11-30 09:16:34,988 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,990 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:34,992 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,994 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,996 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:34,999 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:35,000 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:35,002 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:35,003 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:35,004 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,004 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,005 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,005 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,006 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,007 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:35,008 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,010 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:35,012 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:35,013 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:35,015 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,016 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:35,019 - statisticsCountryHashedController - INFO - 2021-03-25 -2022-11-30 09:16:35,021 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,023 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,024 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:35,026 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,028 - statisticsCountryHashedController - ERROR - Service entityid bdc6498f-ca16-4a8f-8953-3b0e58c0579c not found -2022-11-30 09:16:35,031 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:35,033 - statisticsCountryHashedController - INFO - 2021-06-17 -2022-11-30 09:16:35,035 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,036 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,037 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,039 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,039 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,041 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,043 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,045 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,047 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,048 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,050 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found -2022-11-30 09:16:35,051 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,052 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,054 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,056 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,057 - statisticsCountryHashedController - ERROR - Service entityid lofar-stager-dev not found -2022-11-30 09:16:35,058 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,059 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,059 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:35,060 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,062 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,066 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,067 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,069 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,070 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,072 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,075 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,076 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,078 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,079 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,082 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,084 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,086 - statisticsCountryHashedController - INFO - 2021-03-26 -2022-11-30 09:16:35,088 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,089 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,091 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,091 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,092 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,094 - statisticsCountryHashedController - INFO - 2021-06-18 -2022-11-30 09:16:35,095 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,096 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,096 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,097 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,098 - statisticsCountryHashedController - INFO - 2021-03-27 -2022-11-30 09:16:35,100 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,100 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,101 - statisticsCountryHashedController - INFO - 2021-03-27 -2022-11-30 09:16:35,102 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,103 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,104 - statisticsCountryHashedController - INFO - 2021-03-28 -2022-11-30 09:16:35,105 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,105 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,106 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,106 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,110 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,111 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,113 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,115 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,117 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,120 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,123 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,125 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,126 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,128 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,129 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,130 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,132 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,133 - statisticsCountryHashedController - INFO - 2021-06-19 -2022-11-30 09:16:35,135 - statisticsCountryHashedController - INFO - 2021-06-19 -2022-11-30 09:16:35,136 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,137 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,138 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,139 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,140 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,141 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,142 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,144 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,146 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,147 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,148 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,149 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,151 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,152 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,152 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,153 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,155 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,158 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,160 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,160 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,162 - statisticsCountryHashedController - INFO - 2021-03-29 -2022-11-30 09:16:35,163 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,165 - statisticsCountryHashedController - INFO - 2021-06-20 -2022-11-30 09:16:35,176 - statisticsCountryHashedController - INFO - 2021-06-20 -2022-11-30 09:16:35,178 - statisticsCountryHashedController - INFO - 2021-06-20 -2022-11-30 09:16:35,179 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,181 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,182 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,183 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,186 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,188 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,190 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,192 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,194 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,197 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,198 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,199 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,202 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry-iss/shibboleth not found -2022-11-30 09:16:35,204 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,206 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,210 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,212 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,224 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,225 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,227 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,231 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,232 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,234 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,236 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,237 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,239 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,241 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,243 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,244 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,246 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,249 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,251 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,252 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,254 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,255 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,256 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,258 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,260 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,262 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,263 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,264 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,266 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,267 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,268 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,269 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,270 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,272 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,272 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,275 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,277 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,278 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,279 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,281 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,283 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,284 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,285 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,295 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,297 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,299 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,301 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,303 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,305 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,306 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,308 - statisticsCountryHashedController - INFO - 2021-03-30 -2022-11-30 09:16:35,310 - statisticsCountryHashedController - INFO - 2021-06-21 -2022-11-30 09:16:35,311 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,313 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,316 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:35,317 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:35,319 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,321 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,323 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,326 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,336 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,340 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,342 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,344 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,346 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,349 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,351 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,352 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,354 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,354 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:35,355 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,357 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,358 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,360 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,362 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,364 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,365 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,367 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss not found -2022-11-30 09:16:35,369 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,371 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,372 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,376 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,377 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,380 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,381 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:35,382 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,383 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,383 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,384 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss not found -2022-11-30 09:16:35,384 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,386 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,388 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,390 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,395 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,397 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,398 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,400 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,402 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,404 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,404 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,406 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,408 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,409 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,411 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,413 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,415 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,420 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,421 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,424 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,426 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,427 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,429 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,431 - statisticsCountryHashedController - INFO - 2021-03-31 -2022-11-30 09:16:35,432 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,433 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,435 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,437 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,439 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,441 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,443 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,445 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,446 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,447 - statisticsCountryHashedController - INFO - 2021-06-22 -2022-11-30 09:16:35,449 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,451 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,452 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,454 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,455 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,456 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,458 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,460 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,462 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,464 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,466 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,475 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,477 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,481 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,484 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,486 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,488 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,491 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,493 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,496 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,498 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,499 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,502 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,505 - statisticsCountryHashedController - INFO - 2021-04-01 -2022-11-30 09:16:35,507 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,508 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,510 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,515 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,517 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,518 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,518 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,519 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,519 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,521 - statisticsCountryHashedController - ERROR - Service entityid vito-default-client not found -2022-11-30 09:16:35,522 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found -2022-11-30 09:16:35,543 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,550 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,551 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,552 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,554 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,556 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,565 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,566 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found -2022-11-30 09:16:35,569 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,572 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found -2022-11-30 09:16:35,573 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found -2022-11-30 09:16:35,574 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,575 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found -2022-11-30 09:16:35,576 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,580 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,587 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,589 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,591 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,592 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,594 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,596 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,598 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,600 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,602 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,605 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,607 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,610 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,611 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,611 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,612 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,614 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,616 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,617 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,619 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,633 - statisticsCountryHashedController - INFO - 2021-06-23 -2022-11-30 09:16:35,636 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,638 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,643 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,645 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,647 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,648 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,650 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,650 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,651 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,653 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,654 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,655 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,657 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,659 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:35,661 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,663 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:35,664 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,665 - statisticsCountryHashedController - INFO - 2021-04-02 -2022-11-30 09:16:35,667 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:35,667 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,669 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,670 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,671 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,671 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,673 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,674 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,675 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,677 - statisticsCountryHashedController - INFO - 2021-06-24 -2022-11-30 09:16:35,695 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,696 - statisticsCountryHashedController - INFO - 2021-06-24 -2022-11-30 09:16:35,698 - statisticsCountryHashedController - INFO - 2021-06-24 -2022-11-30 09:16:35,700 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,701 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found -2022-11-30 09:16:35,702 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,704 - statisticsCountryHashedController - INFO - 2021-06-24 -2022-11-30 09:16:35,707 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found -2022-11-30 09:16:35,709 - statisticsCountryHashedController - INFO - 2021-06-24 -2022-11-30 09:16:35,711 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:35,712 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,715 - statisticsCountryHashedController - INFO - 2021-04-03 -2022-11-30 09:16:35,717 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,718 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,720 - statisticsCountryHashedController - INFO - 2021-04-03 -2022-11-30 09:16:35,722 - statisticsCountryHashedController - INFO - 2021-04-03 -2022-11-30 09:16:35,724 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,726 - statisticsCountryHashedController - INFO - 2021-04-04 -2022-11-30 09:16:35,729 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,734 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,736 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,738 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,740 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,741 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:35,743 - statisticsCountryHashedController - INFO - 2021-04-04 -2022-11-30 09:16:35,745 - statisticsCountryHashedController - INFO - 2021-04-04 -2022-11-30 09:16:35,748 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,750 - statisticsCountryHashedController - INFO - 2021-04-04 -2022-11-30 09:16:35,752 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,754 - statisticsCountryHashedController - INFO - 2021-04-04 -2022-11-30 09:16:35,756 - statisticsCountryHashedController - INFO - 2021-04-04 -2022-11-30 09:16:35,762 - statisticsCountryHashedController - INFO - 2021-04-04 -2022-11-30 09:16:35,765 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,766 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,769 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,770 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,771 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,773 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,776 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,779 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,782 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,785 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,788 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,789 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,792 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,798 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,800 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,805 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,806 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,807 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,809 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,811 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,813 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,816 - statisticsCountryHashedController - INFO - 2021-06-25 -2022-11-30 09:16:35,819 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,820 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,821 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found -2022-11-30 09:16:35,822 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,823 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,825 - statisticsCountryHashedController - INFO - 2021-04-05 -2022-11-30 09:16:35,826 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,826 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,827 - statisticsCountryHashedController - INFO - 2021-06-26 -2022-11-30 09:16:35,828 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,830 - statisticsCountryHashedController - INFO - 2021-06-26 -2022-11-30 09:16:35,831 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found -2022-11-30 09:16:35,832 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,832 - statisticsCountryHashedController - INFO - 2021-06-26 -2022-11-30 09:16:35,835 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,838 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,840 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,843 - statisticsCountryHashedController - INFO - 2021-06-27 -2022-11-30 09:16:35,845 - statisticsCountryHashedController - INFO - 2021-06-27 -2022-11-30 09:16:35,848 - statisticsCountryHashedController - INFO - 2021-06-27 -2022-11-30 09:16:35,851 - statisticsCountryHashedController - INFO - 2021-06-27 -2022-11-30 09:16:35,853 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-binder not found -2022-11-30 09:16:35,856 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,858 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,860 - statisticsCountryHashedController - ERROR - Service entityid http://snf-4325.ok-kno.grnetcloud.net:8080/oidc not found -2022-11-30 09:16:35,862 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,864 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,866 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,869 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,872 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,874 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,876 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,880 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,881 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,882 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,884 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,886 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,889 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,891 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,893 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,895 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,897 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,898 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,901 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,903 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:35,903 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,905 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,906 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,908 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:35,908 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:35,909 - statisticsCountryHashedController - INFO - 2021-04-06 -2022-11-30 09:16:35,912 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,914 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,917 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,919 - statisticsCountryHashedController - ERROR - Service entityid 30413bb9-6fdc-4887-95da-2d8d51b458fd not found -2022-11-30 09:16:35,920 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,922 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,924 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,926 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,928 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,930 - statisticsCountryHashedController - ERROR - Service entityid fedcloud not found -2022-11-30 09:16:35,931 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-binder not found -2022-11-30 09:16:35,932 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,934 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,936 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,940 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:35,941 - statisticsCountryHashedController - ERROR - Service entityid https://doab-test.atmire.com/shibboleth not found -2022-11-30 09:16:35,943 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:35,944 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,947 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,949 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,951 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,954 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,957 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,959 - statisticsCountryHashedController - ERROR - Service entityid o3webapp not found -2022-11-30 09:16:35,961 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,964 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,965 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,969 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,971 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,971 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,973 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,974 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:35,975 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,977 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,978 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,980 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:35,981 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,983 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,985 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,987 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:35,988 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:35,990 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,996 - statisticsCountryHashedController - INFO - 2021-06-28 -2022-11-30 09:16:35,999 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:36,012 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found -2022-11-30 09:16:36,013 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:36,014 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,016 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:36,017 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,019 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,020 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,022 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,023 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,025 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,027 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,030 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,032 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,033 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,034 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,036 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry-iss/shibboleth not found -2022-11-30 09:16:36,036 - statisticsCountryHashedController - ERROR - Service entityid cb847477-b992-4447-963f-eb6a7655d231 not found -2022-11-30 09:16:36,037 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,038 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,039 - statisticsCountryHashedController - ERROR - Service entityid cb847477-b992-4447-963f-eb6a7655d231 not found -2022-11-30 09:16:36,041 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,043 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:36,045 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,047 - statisticsCountryHashedController - INFO - 2021-04-07 -2022-11-30 09:16:36,051 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:36,052 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:36,053 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,056 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,057 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,058 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,058 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,059 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,060 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,060 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,061 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,061 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,062 - statisticsCountryHashedController - ERROR - Service entityid cff09226-d0c0-450c-a4f9-1a70c96099ec not found -2022-11-30 09:16:36,062 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:36,062 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,065 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:36,065 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,066 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,066 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:36,068 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,070 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,071 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,073 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,075 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,077 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,078 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,080 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,081 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,082 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,084 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,085 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,087 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,088 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,089 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:36,089 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,091 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,093 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,094 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,094 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,095 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,096 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:36,098 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,099 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,100 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,101 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,102 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,104 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,106 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,107 - statisticsCountryHashedController - ERROR - Service entityid 121e2ba4-bf72-424e-9574-24a23c97e9b0 not found -2022-11-30 09:16:36,108 - statisticsCountryHashedController - INFO - 2021-06-29 -2022-11-30 09:16:36,109 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,110 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:36,110 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,112 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,114 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,117 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:36,118 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:36,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:36,120 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-dev.aai-dev.grnet.gr/registry/shibboleth not found -2022-11-30 09:16:36,121 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,123 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,124 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,126 - statisticsCountryHashedController - ERROR - Service entityid test not found -2022-11-30 09:16:36,126 - statisticsCountryHashedController - ERROR - Service entityid 539c0110-70fc-436d-8180-d97916b0dc6a not found -2022-11-30 09:16:36,127 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,129 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,130 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,131 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,133 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,137 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,138 - statisticsCountryHashedController - ERROR - Service entityid https://rciam-ansible.aai-dev.grnet.gr/registry not found -2022-11-30 09:16:36,140 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,141 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,143 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:36,143 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,144 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,146 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:36,149 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,150 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,152 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,154 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,155 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,158 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,160 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,161 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,163 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,163 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:36,164 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,165 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,166 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,168 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,170 - statisticsCountryHashedController - ERROR - Service entityid rohub-sso not found -2022-11-30 09:16:36,171 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,172 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,174 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,176 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,178 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,179 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,179 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,180 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,181 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream2.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,181 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,182 - statisticsCountryHashedController - ERROR - Service entityid egi-notebooks-cesnet-hub not found -2022-11-30 09:16:36,184 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,186 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,187 - statisticsCountryHashedController - INFO - 2021-04-08 -2022-11-30 09:16:36,188 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,189 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,190 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:36,190 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,191 - statisticsCountryHashedController - ERROR - Service entityid 03df3f5d-f794-4d30-a3fe-0c52417ddff9 not found -2022-11-30 09:16:36,191 - statisticsCountryHashedController - ERROR - Service entityid https://comanage-upstream.aai-dev.grnet.gr/shibboleth not found -2022-11-30 09:16:36,192 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,192 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,193 - statisticsCountryHashedController - ERROR - Identity provider identifier not found -2022-11-30 09:16:36,193 - statisticsCountryHashedController - ERROR - Service entityid https://aai-dev.egi.eu/registry not found -2022-11-30 09:16:36,194 - statisticsCountryHashedController - INFO - 2021-06-30 -2022-11-30 09:16:36,195 - statisticsCountryHashedController - INFO - 2546 Country Stats created -2022-11-30 09:16:56,033 - migrateData - INFO - No new data found -2022-11-30 09:16:56,037 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:56,039 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:16:56,040 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:16:56,040 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 09:16:56,041 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:56,042 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:56,042 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:16:56,042 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:16:56,043 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,043 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,043 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,044 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:56,044 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,044 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-30 09:16:56,045 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,045 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,045 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,046 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,046 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:16:56,046 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,047 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,047 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,047 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:56,047 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,048 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:16:56,048 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,048 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:16:56,048 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,049 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-30 09:16:56,049 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 09:16:56,049 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:56,050 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:16:56,050 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:16:56,050 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 09:16:56,051 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 09:16:56,051 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,053 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 09:16:56,054 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:56,054 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,055 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:16:56,055 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:56,056 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:16:56,057 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:16:56,058 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:16:56,059 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:56,060 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-30 09:16:56,061 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,061 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:56,062 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,063 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,063 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:16:56,066 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,067 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:16:56,067 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,067 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 09:16:56,068 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,069 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,069 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 09:16:56,070 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,070 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,071 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,073 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,073 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,074 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,074 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,076 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,077 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,078 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,078 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 09:16:56,079 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,080 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,080 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,081 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,082 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,082 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 09:16:56,083 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,084 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:56,085 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,086 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 09:16:56,086 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,088 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,088 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,089 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 09:16:56,090 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:56,091 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:56,091 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:56,092 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:56,093 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,093 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:56,094 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,095 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-30 09:16:56,095 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:16:56,096 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-30 09:16:56,097 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,098 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,098 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 09:16:56,099 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,100 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,101 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,101 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,102 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-30 09:16:56,103 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:56,104 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 09:16:56,104 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,105 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,105 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:16:56,106 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:16:56,107 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 09:16:56,107 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,108 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:56,109 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 09:16:56,109 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:56,110 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:56,111 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:56,111 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,112 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,113 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,114 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,115 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:56,115 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:56,116 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:56,117 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:56,119 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 09:16:56,120 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:56,121 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 09:16:56,122 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:56,127 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 09:16:56,128 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,128 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:16:56,129 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,129 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:16:56,130 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 09:16:56,130 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 09:16:56,164 - migrateData - INFO - 24 Idps created -2022-11-30 09:16:56,250 - migrateData - INFO - 409 Sps created -2022-11-30 09:16:56,252 - statisticsCountryHashedController - INFO - 0 Country Stats created -2022-11-30 14:04:13,833 - migrateData - INFO - No new data found -2022-11-30 14:04:13,845 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 14:04:13,845 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 14:04:13,845 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 14:04:13,846 - migrateData - INFO - Vo name WP5 with id 6 -2022-11-30 14:04:13,846 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 14:04:13,846 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 14:04:13,847 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 14:04:13,847 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 14:04:13,847 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,848 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,848 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,848 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 14:04:13,849 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,849 - migrateData - INFO - Vo name onboarding.egi.eu with id 27 -2022-11-30 14:04:13,849 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,850 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,850 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,850 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,850 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 14:04:13,851 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,851 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,851 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,852 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 14:04:13,852 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,852 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 14:04:13,852 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,853 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 14:04:13,853 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,853 - migrateData - INFO - Vo name eiscat.se with id 24 -2022-11-30 14:04:13,854 - migrateData - INFO - Vo name WP5-all with id 5 -2022-11-30 14:04:13,854 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 14:04:13,854 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 14:04:13,855 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 14:04:13,855 - migrateData - INFO - Vo name test-sso-confluence with id 11 -2022-11-30 14:04:13,855 - migrateData - INFO - Vo name test-sso-mailman with id 10 -2022-11-30 14:04:13,856 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,856 - migrateData - INFO - Vo name rcauth.eu with id 15 -2022-11-30 14:04:13,856 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 14:04:13,857 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,857 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 14:04:13,857 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 14:04:13,858 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 14:04:13,858 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 14:04:13,858 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 14:04:13,858 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 14:04:13,859 - migrateData - INFO - Vo name vo.parent.example.eu with id 16 -2022-11-30 14:04:13,859 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,860 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 14:04:13,860 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,860 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,861 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 14:04:13,861 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,861 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 14:04:13,862 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,863 - migrateData - INFO - Vo name vo.geoss.eu with id 1 -2022-11-30 14:04:13,863 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,863 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,864 - migrateData - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-11-30 14:04:13,864 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 14:04:13,865 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 14:04:13,865 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,866 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 14:04:13,867 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 14:04:13,867 - migrateData - INFO - Vo name radio-observatory with id 21 -2022-11-30 14:04:13,868 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,869 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,871 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,872 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,873 - migrateData - INFO - Vo name vo.dariah.eu with id 2 -2022-11-30 14:04:13,874 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,875 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 14:04:13,876 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,877 - migrateData - INFO - Vo name training.egi.eu with id 4 -2022-11-30 14:04:13,877 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,879 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,881 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,882 - migrateData - INFO - Vo name cloud.grnet.gr with id 13 -2022-11-30 14:04:13,883 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 14:04:13,884 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 14:04:13,885 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 14:04:13,886 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 14:04:13,887 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,888 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 14:04:13,893 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,893 - migrateData - INFO - Vo name test-TRIPLE with id 17 -2022-11-30 14:04:13,894 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 14:04:13,894 - migrateData - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-11-30 14:04:13,895 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,895 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,896 - migrateData - INFO - Vo name checkin-integration with id 3 -2022-11-30 14:04:13,896 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,897 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,897 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,898 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,899 - migrateData - INFO - Vo name eosc-synergy.eu with id 20 -2022-11-30 14:04:13,900 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 14:04:13,900 - migrateData - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-11-30 14:04:13,903 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,905 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,906 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 14:04:13,907 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 14:04:13,908 - migrateData - INFO - Vo name vo.access.egi.eu with id 26 -2022-11-30 14:04:13,909 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,910 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 14:04:13,912 - migrateData - INFO - Vo name AMB with id 9 -2022-11-30 14:04:13,913 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 14:04:13,915 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 14:04:13,916 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 14:04:13,918 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,919 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,921 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,922 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,922 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 14:04:13,924 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 14:04:13,925 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 14:04:13,928 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 14:04:13,931 - migrateData - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-11-30 14:04:13,933 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 14:04:13,935 - migrateData - INFO - Vo name goc.egi.eu with id 23 -2022-11-30 14:04:13,936 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 14:04:13,937 - migrateData - INFO - Vo name vo.operas-eu.org with id 25 -2022-11-30 14:04:13,938 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,938 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 14:04:13,939 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,939 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 14:04:13,940 - migrateData - INFO - Vo name vo.example.org with id 22 -2022-11-30 14:04:13,940 - migrateData - INFO - Vo name openEO_test with id 28 -2022-11-30 14:04:13,966 - migrateData - INFO - 24 Idps created -2022-11-30 14:04:14,062 - migrateData - INFO - 409 Sps created -2022-11-30 14:04:14,064 - statisticsCountryHashedController - INFO - 0 Country Stats created diff --git a/data_migrations/log/metricsMigrate.log.2022-12-01 b/data_migrations/log/metricsMigrate.log.2022-12-01 deleted file mode 100644 index 0eb77b6..0000000 --- a/data_migrations/log/metricsMigrate.log.2022-12-01 +++ /dev/null @@ -1,127 +0,0 @@ -2022-12-07 09:46:04,489 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-12-07 09:46:04,490 - voMembershipsController - INFO - Vo name WP5 with id 6 -2022-12-07 09:46:04,491 - voMembershipsController - INFO - Vo name WP5-all with id 5 -2022-12-07 09:46:04,493 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-12-07 09:46:04,493 - voMembershipsController - INFO - Vo name AMB with id 9 -2022-12-07 09:46:04,494 - voMembershipsController - INFO - Vo name WP5 with id 6 -2022-12-07 09:46:04,494 - voMembershipsController - INFO - Vo name WP5-all with id 5 -2022-12-07 09:46:04,495 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 -2022-12-07 09:46:04,496 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,497 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,499 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,500 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,500 - voMembershipsController - INFO - Vo name vo.access.egi.eu with id 26 -2022-12-07 09:46:04,501 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,501 - voMembershipsController - INFO - Vo name WP5-all with id 5 -2022-12-07 09:46:04,502 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 -2022-12-07 09:46:04,503 - voMembershipsController - INFO - Vo name eiscat.se with id 24 -2022-12-07 09:46:04,503 - voMembershipsController - INFO - Vo name vo.dariah.eu with id 2 -2022-12-07 09:46:04,504 - voMembershipsController - INFO - Vo name rcauth.eu with id 15 -2022-12-07 09:46:04,504 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,505 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,506 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,507 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-12-07 09:46:04,508 - voMembershipsController - INFO - Vo name test-sso-mailman with id 10 -2022-12-07 09:46:04,509 - voMembershipsController - INFO - Vo name test-sso-confluence with id 11 -2022-12-07 09:46:04,509 - voMembershipsController - INFO - Vo name test-sso-confluence with id 11 -2022-12-07 09:46:04,510 - voMembershipsController - INFO - Vo name test-sso-mailman with id 10 -2022-12-07 09:46:04,511 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,512 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,512 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 -2022-12-07 09:46:04,513 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 -2022-12-07 09:46:04,513 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,514 - voMembershipsController - INFO - Vo name AMB with id 9 -2022-12-07 09:46:04,514 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 -2022-12-07 09:46:04,514 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-12-07 09:46:04,515 - voMembershipsController - INFO - Vo name vo.parent.example.eu with id 16 -2022-12-07 09:46:04,515 - voMembershipsController - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-12-07 09:46:04,517 - voMembershipsController - INFO - Vo name cloud.grnet.gr with id 13 -2022-12-07 09:46:04,517 - voMembershipsController - INFO - Vo name cloud.grnet.gr with id 13 -2022-12-07 09:46:04,518 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,519 - voMembershipsController - INFO - Vo name vo.dariah.eu with id 2 -2022-12-07 09:46:04,519 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,520 - voMembershipsController - INFO - Vo name vo.dariah.eu with id 2 -2022-12-07 09:46:04,520 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,521 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,522 - voMembershipsController - INFO - Vo name ggus-supporters.egi.eu with id 14 -2022-12-07 09:46:04,523 - voMembershipsController - INFO - Vo name radio-observatory with id 21 -2022-12-07 09:46:04,524 - voMembershipsController - INFO - Vo name radio-observatory with id 21 -2022-12-07 09:46:04,524 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,525 - voMembershipsController - INFO - Vo name radio-observatory with id 21 -2022-12-07 09:46:04,526 - voMembershipsController - INFO - Vo name radio-observatory with id 21 -2022-12-07 09:46:04,527 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,528 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,528 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,529 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,530 - voMembershipsController - INFO - Vo name vo.dariah.eu with id 2 -2022-12-07 09:46:04,530 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,531 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,532 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,532 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,535 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,542 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,543 - voMembershipsController - INFO - Vo name cloud.grnet.gr with id 13 -2022-12-07 09:46:04,543 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 -2022-12-07 09:46:04,544 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-12-07 09:46:04,544 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-12-07 09:46:04,545 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-12-07 09:46:04,545 - voMembershipsController - INFO - Vo name openEO_test with id 28 -2022-12-07 09:46:04,546 - voMembershipsController - INFO - Vo name stats-viewers.aai.egi.eu with id 18 -2022-12-07 09:46:04,546 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,546 - voMembershipsController - INFO - Vo name test-TRIPLE with id 17 -2022-12-07 09:46:04,546 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,547 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,547 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,547 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,547 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name eosc-synergy.eu with id 20 -2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-12-07 09:46:04,548 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,549 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,549 - voMembershipsController - INFO - Vo name vo.access.egi.eu with id 26 -2022-12-07 09:46:04,549 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 -2022-12-07 09:46:04,549 - voMembershipsController - INFO - Vo name AMB with id 9 -2022-12-07 09:46:04,550 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 -2022-12-07 09:46:04,550 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-12-07 09:46:04,550 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-12-07 09:46:04,550 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,551 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,551 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 -2022-12-07 09:46:04,552 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 -2022-12-07 09:46:04,552 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 -2022-12-07 09:46:04,553 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 -2022-12-07 09:46:04,555 - voMembershipsController - INFO - Vo name service-integration.aai.egi.eu with id 12 -2022-12-07 09:46:04,555 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 -2022-12-07 09:46:04,556 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 -2022-12-07 09:46:04,556 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 -2022-12-07 09:46:04,557 - voMembershipsController - INFO - Vo name vo.operas-eu.org with id 25 -2022-12-07 09:46:04,557 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,558 - voMembershipsController - INFO - Vo name openEO_test with id 28 -2022-12-07 09:46:04,558 - voMembershipsController - INFO - Vo name openEO_test with id 28 -2022-12-07 09:46:04,558 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,559 - voMembershipsController - INFO - Vo name openEO_test with id 28 -2022-12-07 09:46:04,584 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,585 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,585 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,586 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,586 - voMembershipsController - INFO - Vo name training.egi.eu with id 4 -2022-12-07 09:46:04,587 - voMembershipsController - INFO - Vo name vo.geoss.eu with id 1 -2022-12-07 09:46:04,587 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,588 - voMembershipsController - INFO - Vo name checkin-integration with id 3 -2022-12-07 09:46:04,588 - voMembershipsController - INFO - Vo name radio-observatory with id 21 -2022-12-07 09:46:04,589 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,590 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,590 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,591 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,591 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,592 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,592 - voMembershipsController - INFO - Vo name vo.example.org with id 22 -2022-12-07 09:46:04,593 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 -2022-12-07 09:46:04,593 - voMembershipsController - INFO - Vo name goc.egi.eu with id 23 -2022-12-07 09:46:04,594 - voMembershipsController - INFO - Vo name rcauth.eu with id 15 -2022-12-07 09:46:04,595 - voMembershipsController - INFO - Vo name worsica.vo.incd.pt with id 19 -2022-12-07 09:46:04,595 - voMembershipsController - INFO - Vo name vo.access.egi.eu with id 26 -2022-12-07 09:46:04,596 - voMembershipsController - INFO - Vo name vo.access.egi.eu with id 26 -2022-12-07 09:46:04,596 - voMembershipsController - INFO - Vo name onboarding.egi.eu with id 27 diff --git a/data_migrations/migrateData.py b/data_migrations/migrateData.py deleted file mode 100644 index 44bd5e0..0000000 --- a/data_migrations/migrateData.py +++ /dev/null @@ -1,88 +0,0 @@ -#!/usr/local/bin/python3 -import os -import sys -from Controller.statisticsCountryHashedController import statisticsCountryHashedController -from Controller.usersController import usersController - -# change working directory -os.chdir(os.path.dirname(os.path.abspath(sys.argv[0]))) -from Model.vos import vos -from Model.vosInfo import vosInfo -from Model.voMemberships import voMemberships -from Model.identityProvidersMap import identityProvidersMap -from Model.serviceProvidersMap import serviceProvidersMap -from Controller.vosController import vosController -from Controller.voMembershipsController import voMembershipsController -from Controller.identityProvidersMapController import identityProvidersMapController -from Controller.serviceProvidersMapController import serviceProvidersMapController - -from Logger import log - - -class migrateData: - logger = log.get_logger("migrateData") - - @classmethod - def voMembershipsMigrate(self): - - voMembershipsData = voMembershipsController.getDataNotMapped() - - - @classmethod - def vosMigrate(self): - - vosData = vosController.getDataNotMapped() - mappedItems = 0 - - for item in vosData: - voItem = vosInfo(item.name, item.description, "egi") - id = vosInfo.save(voItem) - if id is not None: - self.logger.info("{0} item".format(id)) - vosInfoItem = vos(id, item.created) - vos.save(vosInfoItem) - mappedItems +=1 - - - if mappedItems > 0: - self.logger.info("{0} vos created".format(mappedItems)) - else: - self.logger.info("No new data found") - - @classmethod - def idpsMigrate(self): - mappedItems = 0 - idpsData = identityProvidersMapController.getAllData() - for item in idpsData: - idpItem = identityProvidersMap(item.entityid, item.name) - identityProvidersMap.save(idpItem) - mappedItems +=1 - - self.logger.info("{0} Idps created".format(mappedItems)) - - @classmethod - def spsMigrate(self): - mappedItems = 0 - spsData = serviceProvidersMapController.getAllData() - for item in spsData: - spItem = serviceProvidersMap(item.identifier, item.name.replace("'", "''")) - serviceProvidersMap.save(spItem) - mappedItems +=1 - - self.logger.info("{0} Sps created".format(mappedItems)) - @classmethod - def countryStatsMigrate(self): - statisticsCountryHashedController.saveAllData() - - @classmethod - def usersMigrate(self): - usersController.saveUsers() - -#run script -migrateData.vosMigrate() -migrateData.voMembershipsMigrate() -migrateData.idpsMigrate() -migrateData.spsMigrate() -migrateData.countryStatsMigrate() -migrateData.usersMigrate() - diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index db23afb..f7ecb58 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -6,7 +6,9 @@ import ErrorPage from "./Pages/Error"; import {QueryClient, QueryClientProvider} from 'react-query' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; -import RegisteredUsers from "./Pages/RegisteredUsers"; +import Dashboard from "./Pages/Dashboard"; +import Idps from "./Pages/Idps"; +import Sps from "./Pages/Sps"; function App() { // const queryClient = new QueryClient() @@ -19,9 +21,16 @@ function App() { {/* }/> */} {/* }/> */} {/* }/> */} - }/> + {/* }/> }/> }/> + + }/> */} + }/> + }/> + }/> + }/> + }/> {/* */} diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index c57059f..713550f 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -1,16 +1,30 @@ +import { useState, useContext, useEffect } from "react"; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; import Container from "react-bootstrap/Container"; import CommunitiesChart from "../../components/Communities/communitiesChart"; import CommunitiesDataTable from "../../components/Communities/communitiesDataTable"; import CommunitiesMap from "../../components/Communities/communitiesMap"; const Communities = () => { + const {project, environment } = useParams(); + const [tenantId, setTenantId] = useState(0); - return ( + useEffect(() => { + client.get("tenant/" + project + "/" + environment). + then(response => { + + setTenantId(response["data"][0]["id"]) + }) + }, []) + + if (tenantId == 0) return + else return (

              Communities

              - - - + + +
              ) } diff --git a/javascript/src/Pages/Users/index.js b/javascript/src/Pages/Users/index.js index 765e196..694c4b1 100644 --- a/javascript/src/Pages/Users/index.js +++ b/javascript/src/Pages/Users/index.js @@ -1,4 +1,6 @@ import { useState, useContext, useEffect } from "react"; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; import Container from "react-bootstrap/Container"; import RegisteredUsersChart from "../../components/Users/registeredUsersChart"; import RegisteredUsersDataTable from "../../components/Users/registeredUsersDataTable"; @@ -7,15 +9,26 @@ import RegisteredUsersTiles from "../../components/Users/registeredUsersTiles"; const Users = () => { + const {project, environment } = useParams(); + const [tenantId, setTenantId] = useState(0); const [startDate, setStartDate] = useState(""); const [endDate, setEndDate] = useState(""); - return ( + + useEffect(() => { + client.get("tenant/" + project + "/" + environment). + then(response => { + setTenantId(response["data"][0]["id"]) + }) + }, []) + + if (tenantId == 0) return + else return (

              Users

              - - - - + + + +
              ) diff --git a/javascript/src/app.css b/javascript/src/app.css index d8e9d76..aefb002 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -89,7 +89,11 @@ button.reg-form { .react-datepicker__tab-loop { position: absolute!important; } -/* Map Style*/ +/* Datatable */ +.table-responsive { + overflow-x: unset!important; +} +/* Map Style */ .communityMembersByCountry { min-height: 20em; align-content: baseline; diff --git a/javascript/src/components/Common/utils.js b/javascript/src/components/Common/utils.js index 8e9f478..5907ab9 100644 --- a/javascript/src/components/Common/utils.js +++ b/javascript/src/components/Common/utils.js @@ -65,4 +65,77 @@ export function convertToList(data, seperator) { lis += '
            • ' + value.trim() + '
            • ' }) return lis +} + +// Calculate Legends Area for Map +export function calculateLegends(maxSum) { + // Set Number of Legends + var numLegends = maxSum < 5 ? maxSum : 5; + var spaces = Math.round(maxSum / numLegends); + var legends = []; + var fill = ["#09EBEE", "#19CEEB", "#28ACEA", "#388EE9", "#3D76E0"]; + for(var i = 0; i < numLegends; i++) { + var maxValue = ((i + 1) != numLegends ? ((i + 1) * spaces) : maxSum); + var legend = { + min: i * spaces, + max: maxValue, + attrs: { + fill: fill[i] + }, + label: i * spaces + "-" + maxValue + } + legends.push(legend) + } + return legends; +} + +export function setMapConfiguration() { + return { + name: "world_countries_mercator", + zoom: { + enabled: true, + maxLevel: 15, + init: { + latitude: 38.938048, + longitude: -2.924315, + level: 5 + } + }, + defaultArea: { + attrs: { + fill: "#ccc", // my function for color i want to define + stroke: "#5d5d5d", + "stroke-width": 0.2, + "stroke-linejoin": "round", + + }, + attrsHover: { + fill: "#E98300", + animDuration: 300 + }, + + }, + } +} + +export function setLegend (legendLabel, legends) { + return { + area: { + title: legendLabel, + titleAttrs: { "font": "unset", "font-size": "12px", "font-weight": "bold" }, + slices: legends + } + } +} + +// Find the min and max values at an Array +export function calculateMinMax(dataArray) { + let min = dataArray[0][0]['min'], max = dataArray[0][0]['max'] + for (let i = 1; i < dataArray.length; i++) { + let minValue = dataArray[i][0]['min'] + let maxValue = dataArray[i][0]['max'] + min = (minValue < min) ? minValue : min + max = (maxValue > max) ? maxValue : max + } + return [min, max] } \ No newline at end of file diff --git a/javascript/src/components/Communities/communitiesChart.js b/javascript/src/components/Communities/communitiesChart.js index 73bf7e3..6f836d8 100644 --- a/javascript/src/components/Communities/communitiesChart.js +++ b/javascript/src/components/Communities/communitiesChart.js @@ -1,19 +1,17 @@ import { useState, useContext, useEffect } from "react"; + import { Chart } from "react-google-charts"; import "../../app.css"; import { client } from '../../utils/api'; -import { communitiesGroupBy } from "../../utils/queryKeys"; -import { getCommunitiesGroupBy } from "../../utils/queries"; -import dateFormat from 'dateformat'; -import { useQuery } from "react-query"; import Select from 'react-select'; import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import 'bootstrap/dist/css/bootstrap.min.css'; -import ListCommunities from "../listCommunities"; +import ListCommunities from "./listCommunities"; import { convertDateByGroup, getWeekNumber } from "../Common/utils"; + export const options = { year: { title: "Number of Communities created per year", @@ -46,7 +44,7 @@ const options_group_by = [ { value: 'week', label: 'weekly' }, ]; -const CommunitiesChart = () => { +const CommunitiesChart = (parameters) => { const [selected, setSelected] = useState(options_group_by[0].value); const [communities, setCommunities] = useState(); @@ -54,16 +52,24 @@ const CommunitiesChart = () => { var communitiesArray = [["Date", "Communities"]]; var communitiesListArray = []; const [global_options, setGlobalOptions] = useState(); + useEffect(() => { - + console.log(parameters["tenantId"]) var hticksArray = []; var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] // Get data for the last 4 years // TODO: change it to last 1 year console.log(selected) console.log(options[selected]) - client.get("communities_groupby/" + selected, { params: { 'interval': selected, 'count_interval': options[selected]["count_interval"] } }). + client.get("communities_groupby/" + selected, + { + params: + { 'interval': selected, + 'count_interval': options[selected]["count_interval"], + 'tenant_id': parameters["tenantId"], + } + }). then(response => { console.log(response); @@ -141,7 +147,7 @@ const CommunitiesChart = () => { }) - }, [selected]) + }, [selected, parameters]) @@ -150,6 +156,7 @@ const CommunitiesChart = () => { setSelected(event.value); }; + return { +const CommunitiesDataTable = (parameters) => { const [communities, setCommunities] = useState(); var communitiesArray = []; + const [minDate, setMinDate] = useState(""); const [startDate, setStartDate] = useState(); const [endDate, setEndDate] = useState(); useEffect(() => { - client.get("communities_groupby/month"). - then(response => { - console.log(response); - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - - var range_date = new Date(element.range_date); - - var community = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Communities": element.count, "Names": element.names} - communitiesArray.push(community) + client.get("communities_groupby/month", + { + params: + { + 'tenant_id': parameters["tenantId"], + } + }).then(response => { + console.log(response); + var minDateFromData = "" + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + + var range_date = new Date(element.range_date); + if (minDateFromData == "") { + minDateFromData = new Date(element.min_date) + } + var community = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Communities": element.count, "Names": element.names } + communitiesArray.push(community) + + }); - }); - setCommunities(communitiesArray) - }) + setMinDate(minDateFromData) + setCommunities(communitiesArray) + }) // - + }, []) - + const handleChange = event => { console.log(event.value); communitiesArray = [] - if(!startDate || !endDate) { + if (!startDate || !endDate) { toast.error('You have to fill both startDate and endDate.', { position: "top-center", autoClose: 5000, @@ -61,52 +72,61 @@ const CommunitiesDataTable =() => { draggable: true, progress: undefined, theme: "dark", - }); + }); return } - client.get("communities_groupby/"+event.value, {params: {'startDate':startDate, 'endDate':endDate}}). - then(response => { - //console.log(response); - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - var range_date = new Date(element.range_date); - console.log(event.value) - var community = { "Date": convertDateByGroup(range_date, event.value), "Number of Communities": element.count, "Names": element.names} - communitiesArray.push(community) - - }); - if (communitiesArray.length==0) { - communitiesArray.push({"Data": "No data available."}) - - } - // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#table").DataTable().destroy() - setCommunities(communitiesArray) - }) + client.get("communities_groupby/" + event.value, + { + params: + { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': parameters["tenantId"] + } + }). + then(response => { + //console.log(response); + + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + var range_date = new Date(element.range_date); + + var community = { "Date": convertDateByGroup(range_date, event.value), "Number of Communities": element.count, "Names": element.names } + communitiesArray.push(community) + + }); + if (communitiesArray.length == 0) { + communitiesArray.push({ "Data": "No data available." }) + + } + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#table").DataTable().destroy() + setCommunities(communitiesArray) + }) //setSelected(event.value); }; return - {/* - - From: setStartDate(date)}> - To: setEndDate(date)}> - - - */} - - - - + + + From: setStartDate(date)}> + To: setEndDate(date)}> + + + + + + + } diff --git a/javascript/src/components/Communities/communitiesMap.js b/javascript/src/components/Communities/communitiesMap.js index 1759182..93994bc 100644 --- a/javascript/src/components/Communities/communitiesMap.js +++ b/javascript/src/components/Communities/communitiesMap.js @@ -6,9 +6,10 @@ import { client } from '../../utils/api'; import $, { map } from "jquery"; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; +import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; -const CommunitiesMap = () => { +const CommunitiesMap = (parameters) => { const StatusEnumeration = { 'A' : 'Active', 'GP': 'Grace Period', @@ -20,7 +21,13 @@ const CommunitiesMap = () => { const [membersStatus, setMembersStatus] = useState([]); var communitiesArray = []; useEffect(() => { - client.get("communities").then(response => { + client.get("communities", + { + params: + { + 'tenant_id': parameters["tenantId"], + } + }).then(response => { response["data"].forEach(element => { var community = { label: element.community_info.name, value: element.community_id } @@ -65,58 +72,12 @@ const CommunitiesMap = () => { } i++; }) - // Set Number of Legends - var numLegends = maxSum < 5 ? maxSum : 5; - var spaces = Math.round(maxSum / numLegends); - var legends = []; - var fill = ["#09EBEE", "#19CEEB", "#28ACEA", "#388EE9", "#3D76E0"]; - for(i = 0; i < numLegends; i++) { - var maxValue = ((i + 1) != numLegends ? ((i + 1) * spaces) : maxSum); - var legend = { - min: i * spaces, - max: maxValue, - attrs: { - fill: fill[i] - }, - label: i * spaces + "-" + maxValue - } - legends.push(legend) - } + // Calculate Legends + var legends = calculateLegends(maxSum) $(".areaLegend").show() $("#" + id).mapael({ - map: { - name: "world_countries_mercator", - zoom: { - enabled: true, - maxLevel: 15, - init: { - latitude: 40.717079, - longitude: -74.00116, - level: 5 - } - }, - defaultArea: { - attrs: { - fill: "#ccc", // my function for color i want to define - stroke: "#5d5d5d", - "stroke-width": 0.2, - "stroke-linejoin": "round", - - }, - attrsHover: { - fill: "#E98300", - animDuration: 300 - }, - - }, - }, - legend: { - area: { - title: legendLabel, - titleAttrs: { "font": "unset", "font-size": "12px", "font-weight": "bold" }, - slices: legends - } - }, + map: setMapConfiguration(), + legend: setLegend(legendLabel, legends), areas: areas }) @@ -127,7 +88,7 @@ const CommunitiesMap = () => { var community_id = event.value; console.log(community_id) - client.get("members_bystatus", { params: { 'community_id': community_id } }).then(response => { + client.get("members_bystatus", { params: { 'community_id': community_id, 'tenant_id': parameters['tenantId'] } }).then(response => { var statuses = { 'A': 0, 'GP': 0, 'O': 0 } //console.log(response["data"][0]) response["data"].forEach(function (memberStatus, index) { @@ -141,15 +102,24 @@ const CommunitiesMap = () => { }) setMembersStatus(statuses) }) - client.get("communities/" + community_id).then(result => { - //console.log(result) + client.get("communities/" + community_id, + { + params: { + 'tenant_id': parameters["tenantId"], + } + }).then(result => { + console.log(result) var community = result["data"] - setSelectedCommunity({ "name": community["community_info"]["name"], "description": community["community_info"]["description"] }) - - + setSelectedCommunity({ "name": community[0]["name"], "description": community[0]["description"] }) } ) - client.get("country_stats_by_vo/" + community_id).then(result => { + client.get("country_stats_by_vo/" + community_id, + { + params: + { + 'tenant_id': parameters["tenantId"], + } + }).then(result => { console.log(result) var stats = result["data"] createMap("communitiesMap", stats) diff --git a/javascript/src/components/Metrics/communitiesChart.js b/javascript/src/components/Metrics/communitiesChart.js deleted file mode 100644 index 8954b15..0000000 --- a/javascript/src/components/Metrics/communitiesChart.js +++ /dev/null @@ -1,224 +0,0 @@ -import { useState, useContext, useEffect } from "react"; -import { Chart } from "react-google-charts"; -import "../../app.css"; -import { client } from '../../utils/api'; -import { communitiesGroupBy } from "../../utils/queryKeys"; -import { getCommunitiesGroupBy } from "../../utils/queries"; -import dateFormat from 'dateformat'; -import { useQuery } from "react-query"; -import Select from 'react-select'; -import Container from 'react-bootstrap/Container'; -import Row from 'react-bootstrap/Row'; -import Col from 'react-bootstrap/Col'; -import 'bootstrap/dist/css/bootstrap.min.css'; -import ListCommunities from "../listCommunities"; - -export const options = { - year: { - title: "Number of Communities created per year", - hAxis: { - format: 'Y', - } - }, - month: { - title: "Number of Communities created per month", - hAxis: { - format: 'YYYY-MM', - } - }, - week: { - title: "Number of Communities created per week", - hAxis: { - format: '', - } - } -}; - - - -const options_group_by = [ - { value: 'year', label: 'yearly' }, - { value: 'month', label: 'monthly' }, - { value: 'week', label: 'weekly' }, -]; - -const CommunitiesChart = () => { - - const [selected, setSelected] = useState(options_group_by[0].value); - const [communities, setCommunities] = useState(); - const [communitiesList, setcommunitiesList] = useState([]); - var communitiesArray = [["Date", "Communities"]]; - var communitiesListArray = []; - const [global_options, setGlobalOptions] = useState(); - - useEffect(() => { - - console.log(options[selected]["hAxis"]["format"]) - var hticksArray = []; - var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] - // Get data for the last 4 years - // TODO: change it to last 1 year - client.get("communities_groupby/" + selected, { params: { 'interval': 'year', 'count_interval': '4' } }). - then(response => { - console.log(response); - - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - var range_date = new Date(element.range_date); - var community = [range_date, element.count] - communitiesArray.push(community) - - // Construct the list with COUs - var createdDate = element.created_date.split(", ") - var description = element.description.split("|| ") - element.names.split("|| ").forEach(function (name, index) { - communitiesListArray.push({ name: name, created: createdDate[index], description: description[index] + '
              ' + 'Created Date: ' + createdDate[index] }) - }) - - if (selected == "week") { - hticksArray.push({ v: range_date, f: getWeekNumber(range_date) }) - } - else { - hticksArray.push({ v: range_date, f: range_date }) - } - - // Construct element & tooltip - var temp = []; - temp.push(range_date); - temp.push(parseInt(element['count'])); - temp.push('
              ' - + convertDateByGroup(range_date, selected) - + "
              " + 'Communities' - + ": " + parseInt(element['count']) + '
              '); - fValues.push(temp); - }); - - // sort by value - communitiesListArray = communitiesListArray.sort(function (a, b) { - var nameA = a.name.toUpperCase(); // ignore upper and lowercase - var nameB = b.name.toUpperCase(); // ignore upper and lowercase - if (nameA < nameB) { - return -1; - } - if (nameA > nameB) { - return 1; - } - // names must be equal - return 0; - }); - //communitiesList.push({name:element.names, created: element.created_date, description: element.description}) - setcommunitiesList(communitiesListArray) - //console.log(communitiesArray) - setCommunities(fValues) - - - setGlobalOptions({ - title: options[selected]["title"], - backgroundColor: { fill: 'transparent' }, - vAxis: { - //title: vAxisTitle[tab], - format: '0' - }, - hAxis: { - format: options[selected]["hAxis"]["format"], - maxTextLines: 2, - //title: registeredUsersBy[type], // globar variable found at index.ctp - textStyle: { fontSize: 15 }, - ticks: hticksArray, - //showTextEvery: 5 - }, - tooltip: { isHtml: true }, - width: '100%', - height: '350', - bar: { groupWidth: "92%" }, - legend: { position: "none" }, - }) - - }) - - }, [selected]) - - function convertDateByGroup(jsDate, groupBy) { - var month = (jsDate.getMonth() + 1).toString() - if (month.length < 2) { - month = '0' + month; - } - var day = jsDate.getDate().toString() - if (day.length < 2) { - day = '0' + day; - } - if (groupBy == 'daily') { - var showDate = jsDate.getFullYear() + '-' + month + '-' + day; - } - else if (groupBy == 'week') { - var showDate = jsDate.getFullYear() + '-' + month + '-' + day; - var nextWeek = new Date(jsDate.setDate(jsDate.getDate() + 6)); - month = (nextWeek.getMonth() + 1).toString() - if (month.length < 2) { - month = '0' + month; - } - day = nextWeek.getDate().toString() - if (day.length < 2) { - day = '0' + day; - } - showDate += " to " + nextWeek.getFullYear() + '-' + month + '-' + day; - } - else if (groupBy == 'month') { - var showDate = jsDate.getFullYear() + '-' + month; - } - else if (groupBy == 'year') { - var showDate = jsDate.getFullYear(); - } - return showDate; - } - - function getWeekNumber(d) { - - d = new Date(Date.UTC(d.getFullYear(), d.getMonth(), d.getDate())); - // Set to nearest Thursday: current date + 4 - current day number - // Make Sunday's day number 7 - d.setUTCDate(d.getUTCDate() + 4 - (d.getUTCDay() || 7)); - // Get first day of year - var yearStart = new Date(Date.UTC(d.getUTCFullYear(), 0, 1)); - // Calculate full weeks to nearest Thursday - var weekNo = Math.ceil((((d - yearStart) / 86400000) + 1) / 7); - // Return array of year and week number - return weekNo + ' (' + d.getUTCFullYear() + ')'; - } - - const handleChange = event => { - console.log(event.value); - setSelected(event.value); - }; - - return - - - - - - - - - Select Period: - - - - - - - - - - - - - - - - - -} - -export default CommunitiesChart \ No newline at end of file diff --git a/javascript/src/components/Users/registeredUsersChart.js b/javascript/src/components/Users/registeredUsersChart.js index 7fef641..3a4f5cb 100644 --- a/javascript/src/components/Users/registeredUsersChart.js +++ b/javascript/src/components/Users/registeredUsersChart.js @@ -36,7 +36,7 @@ const options_group_by = [ { value: 'week', label: 'weekly' }, ]; -const RegisteredUsersChart = () => { +const RegisteredUsersChart = (parameters) => { const [selected, setSelected] = useState(options_group_by[0].value); const [registeredUsers, setRegisteredUsers] = useState(); var registeredUsersArray = [["Date", "Registered Users"]]; @@ -48,7 +48,14 @@ const RegisteredUsersChart = () => { var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] // Get data for the last 4 years // TODO: change it to last 1 year - client.get("registered_users_groupby/" + selected, { params: { 'interval': 'year', 'count_interval': '8' } }). + client.get("registered_users_groupby/" + selected, + { + params: { + 'interval': 'year', + 'count_interval': '8', + 'tenant_id': parameters['tenantId'] + } + }). then(response => { response["data"].forEach(element => { diff --git a/javascript/src/components/Users/registeredUsersDataTable.js b/javascript/src/components/Users/registeredUsersDataTable.js index 8a6b689..c9d81ea 100644 --- a/javascript/src/components/Users/registeredUsersDataTable.js +++ b/javascript/src/components/Users/registeredUsersDataTable.js @@ -23,24 +23,33 @@ const dropdownOptions = [ { value: 'year', label: 'Yearly Basis' }, ] -const RegisteredUsersDataTable =() => { +const RegisteredUsersDataTable =({startDateHandler, endDateHandler, tenantId}) => { const [usersPerCountryPerPeriod, setusersPerCountryPerPeriod] = useState(); var usersPerCountryPerPeriodArray = []; + const [minDate, setMinDate] = useState(""); const [startDate, setStartDate] = useState(); const [endDate, setEndDate] = useState(); useEffect(() => { - client.get("registered_users_country_group_by/month"). + client.get("registered_users_country_group_by/month", { + params: { + 'tenant_id': tenantId + } + }). then(response => { console.log(response); + var minDateFromData = "" response["data"].forEach(element => { //var community = {"created":element.created, "name":element.community_info.name} var range_date = new Date(element.range_date); - + if (minDateFromData == "") { + minDateFromData = new Date(element.min_date) + } var perPeriod = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Registered Users": element.count, "Registered Users per country": element.countries} usersPerCountryPerPeriodArray.push(perPeriod) }); + setMinDate(minDateFromData) setusersPerCountryPerPeriod(usersPerCountryPerPeriodArray) }) // @@ -63,7 +72,18 @@ const RegisteredUsersDataTable =() => { }); return } - client.get("registered_users_country_group_by/"+event.value, {params: {'startDate':startDate, 'endDate':endDate}}). + // set parent states + startDateHandler(startDate) + endDateHandler(endDate) + client.get("registered_users_country_group_by/" + event.value, + { + params: + { + 'startDate':startDate, + 'endDate':endDate, + 'tenant_id':tenantId + } + }). then(response => { //console.log(response); response["data"].forEach(element => { @@ -77,8 +97,7 @@ const RegisteredUsersDataTable =() => { // This is essential: We must destroy the datatable in order to be refreshed with the new data $("#table").DataTable().destroy() setusersPerCountryPerPeriod(usersPerCountryPerPeriodArray) - - + }) //setSelected(event.value); }; @@ -86,8 +105,8 @@ const RegisteredUsersDataTable =() => { return - From: setStartDate(date)}> - To: setEndDate(date)}> + From: setStartDate(date)}> + To: setEndDate(date)}> { theme="dark" /> - + diff --git a/javascript/src/components/Users/registeredUsersMap.js b/javascript/src/components/Users/registeredUsersMap.js index 58a522c..2c01384 100644 --- a/javascript/src/components/Users/registeredUsersMap.js +++ b/javascript/src/components/Users/registeredUsersMap.js @@ -9,10 +9,17 @@ import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; -const RegisteredUsersMap = ({startDate, endDate}) => { +const RegisteredUsersMap = ({startDate, endDate, tenantId}) => { useEffect(() => { - client.get("registered_users_country", {params: {'startDate':startDate, 'endDate':endDate}}).then(response => { + client.get("registered_users_country", + { + params: { + 'startDate':startDate, + 'endDate':endDate, + 'tenant_id':tenantId + } + }).then(response => { createMap("usersMap", response["data"]) }) }, [startDate, endDate]) diff --git a/javascript/src/components/Users/registeredUsersTiles.js b/javascript/src/components/Users/registeredUsersTiles.js index f2ea76e..208de2c 100644 --- a/javascript/src/components/Users/registeredUsersTiles.js +++ b/javascript/src/components/Users/registeredUsersTiles.js @@ -8,17 +8,18 @@ import Col from 'react-bootstrap/Col'; import { convertDateByGroup, getWeekNumber } from "../Common/utils"; import 'bootstrap/dist/css/bootstrap.min.css'; -const RegisteredUsersTiles = () => { +const RegisteredUsersTiles = (parameters) => { const [tiles, setTiles] = useState({}); useEffect(() => { Promise.all([ - client.get("registered_users_countby"), client.get("registered_users_countby", - { params: { 'interval': 'year', 'count_interval': '1' } }), + { params: { 'tenant_id': parameters['tenantId'] } }), client.get("registered_users_countby", - { params: { 'interval': 'days', 'count_interval': '30' } }), + { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'] } }), client.get("registered_users_countby", - { params: { 'interval': 'days', 'count_interval': '7' } }) + { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'] } }), + client.get("registered_users_countby", + { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'] } }) ]).then(function (responses) { // Get a JSON object from each of the responses return Promise.all(responses.map(function (response) { @@ -30,8 +31,8 @@ const RegisteredUsersTiles = () => { console.log(data); var tilesArray = {} data.forEach(element => { - - if (element["config"]["params"]) { + console.log(element) + if (element["config"]["params"]["interval"]) { var name = element["config"]["params"]["interval"] + "_" + element["config"]["params"]["count_interval"] tilesArray[[name]] = element["data"][0]["count"] } diff --git a/javascript/src/components/datatable.js b/javascript/src/components/datatable.js index 359475f..5bba1c7 100644 --- a/javascript/src/components/datatable.js +++ b/javascript/src/components/datatable.js @@ -20,14 +20,17 @@ class Datatable extends Component { componentDidUpdate(prevProps, prevState) { console.log(this.props.items) + var dataTableId = this.props.dataTableId if (prevProps.items !== this.props.items) { + this.setState({ - items: this.props.items + items: this.props.items, + dataTableId: this.props.dataTableId }) if (!$.fn.DataTable.isDataTable("#myTable")) { setTimeout(function () { - - table = $("#table").DataTable({ + console.log(dataTableId) + table = $("#" + dataTableId).DataTable({ pagingType: "full_numbers", pageLength: 10, //processing: true, @@ -160,7 +163,7 @@ class Datatable extends Component { } showTable = (items) => { - if(!items) return + if(!items || items.length==0) return (No data available in the table) // try { return items.map((item, index) => { @@ -194,10 +197,12 @@ class Datatable extends Component { S/N { - + items && items.length>0 ? Object.keys(items[0]).map((key, keyIndex) => ( {key} )) + : + Data } ) @@ -211,7 +216,7 @@ class Datatable extends Component { return (
              - +
              {this.showColumns(this.props.items)} diff --git a/javascript/src/components/listCommunities.js b/javascript/src/components/listCommunities.js deleted file mode 100644 index 747d6c7..0000000 --- a/javascript/src/components/listCommunities.js +++ /dev/null @@ -1,22 +0,0 @@ -import { useState, useContext, useEffect, Component } from "react"; -import ReactTooltip from "react-tooltip"; - -const ListCommunities = ({communitiesList}) => { - useEffect(() => { - ReactTooltip.rebuild(); - },[communitiesList]) - return
                - - { - - communitiesList.map((cou, index) => ( -
              • {cou["name"]}
              • - - )) - } - -
              - -} - -export default ListCommunities diff --git a/requirements.txt b/requirements.txt index 9d7e4d4..031be76 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,6 +4,7 @@ asyncpg==0.24.0 click==8.1.3 fastapi==0.68.1 greenlet==1.1.2 +gunicorn h11==0.13.0 importlib-resources==5.7.1 Mako==1.2.0 From 3b7ab908e052b9a1dfe4ea0e09feabb0520e4d2c Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:08:06 +0200 Subject: [PATCH 005/331] add github action for testing --- .github/workflows/releases.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/releases.yml diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml new file mode 100644 index 0000000..8a9c1ff --- /dev/null +++ b/.github/workflows/releases.yml @@ -0,0 +1,18 @@ +name: GitHub Actions Demo +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +on: [push] +jobs: + Explore-GitHub-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v3 + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file From 0cbdd50b9efb0765127d19a429733404412d6221 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:17:36 +0200 Subject: [PATCH 006/331] try to build react with github action --- .github/workflows/releases.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 8a9c1ff..f4af171 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -4,6 +4,9 @@ on: [push] jobs: Explore-GitHub-Actions: runs-on: ubuntu-latest + strategy: + matrix: + node-version: [16.x] steps: - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" @@ -15,4 +18,11 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }} + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: Build React application + run: | + cd ${{ github.workspace }}/javascript; npm run build - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file From beff677f8260562aa7583c40ff5dd8a393ecd2b1 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:24:03 +0200 Subject: [PATCH 007/331] try to build react with github, action change setup-node with v3 --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index f4af171..c73e07d 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -19,7 +19,7 @@ jobs: run: | ls ${{ github.workspace }} - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Build React application From 23256efaaa33d54de6645b73b91f1c79b1b52d6c Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:29:37 +0200 Subject: [PATCH 008/331] try to build react with github, add install dependencies for nodejs --- .github/workflows/releases.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index c73e07d..5c395e7 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -22,6 +22,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: npm install - name: Build React application run: | cd ${{ github.workspace }}/javascript; npm run build From 17710073e57aadaddd494df77b99980699f7b6cd Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:30:45 +0200 Subject: [PATCH 009/331] try to build react with github, change directory before npm install --- .github/workflows/releases.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 5c395e7..7b8e7a8 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -23,7 +23,8 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: npm install + run: | + cd ${{ github.workspace }}/javascript; npm install - name: Build React application run: | cd ${{ github.workspace }}/javascript; npm run build From 16227cb147f6a154a6358812f99aa0ae0b9dac0c Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:32:07 +0200 Subject: [PATCH 010/331] try to build react with github, fix syntax --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 7b8e7a8..c69ea65 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -24,7 +24,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install dependencies run: | - cd ${{ github.workspace }}/javascript; npm install + cd ${{ github.workspace }}/javascript; npm install - name: Build React application run: | cd ${{ github.workspace }}/javascript; npm run build From 55a92b67061e2272cb39c2e09901e0198477cdb7 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:36:28 +0200 Subject: [PATCH 011/331] add page for Dashboard --- javascript/src/Pages/Dashboard/index.js | 43 +++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 javascript/src/Pages/Dashboard/index.js diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js new file mode 100644 index 0000000..d686b00 --- /dev/null +++ b/javascript/src/Pages/Dashboard/index.js @@ -0,0 +1,43 @@ +import { useState, useContext, useEffect } from "react"; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; +import Container from "react-bootstrap/Container"; +import LoginDataTable from "../../components/Dashboard/loginDataTable"; +import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; +import LoginLineChart from "../../components/Dashboard/loginLineChart"; +import LoginsMap from "../../components/Dashboard/loginsMap"; +import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; +import LoginTiles from "../../components/Dashboard/loginTiles"; +import IdpModal from "../Idps/idpModal"; + +const Dashboard = () => { + const [startDate, setStartDate] = useState(""); + const [endDate, setEndDate] = useState(""); + const {project, environment } = useParams(); + const [tenantId, setTenantId] = useState(0); + const [showModal, setShowModal] = useState(false); + + useEffect(() => { + client.get("tenant/" + project + "/" + environment). + then(response => { + + setTenantId(response["data"][0]["id"]) + }) + }, []) + if(tenantId == 0) + return + else return ( + +

              Dashboard

              + + + {/* + + + */} + + +
              ) + +} +export default Dashboard; From e823f060b0705dcdec0e45482117bea852a1e031 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:39:51 +0200 Subject: [PATCH 012/331] remove some unfinished routes --- javascript/src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index f7ecb58..1bd977f 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -29,8 +29,8 @@ function App() { }/> }/> }/> - }/> - }/> + {/* }/> + }/> */} {/* */} From fe99416d705c10bb87a5165276d65bd1f01d65e7 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:42:28 +0200 Subject: [PATCH 013/331] remove some imports that causes problems --- javascript/src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index 1bd977f..0c67d6c 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -7,8 +7,8 @@ import {QueryClient, QueryClientProvider} from 'react-query' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; import Dashboard from "./Pages/Dashboard"; -import Idps from "./Pages/Idps"; -import Sps from "./Pages/Sps"; +// import Idps from "./Pages/Idps"; +// import Sps from "./Pages/Sps"; function App() { // const queryClient = new QueryClient() From 45a2bb94b43f694af361996de8c97629ad8748c6 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:45:59 +0200 Subject: [PATCH 014/331] remove some imports that causes problems --- javascript/src/Pages/Dashboard/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index d686b00..b6b4577 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -2,13 +2,13 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; import Container from "react-bootstrap/Container"; -import LoginDataTable from "../../components/Dashboard/loginDataTable"; -import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; +// import LoginDataTable from "../../components/Dashboard/loginDataTable"; +// import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; -import LoginsMap from "../../components/Dashboard/loginsMap"; -import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; +// import LoginsMap from "../../components/Dashboard/loginsMap"; +// import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; -import IdpModal from "../Idps/idpModal"; +// import IdpModal from "../Idps/idpModal"; const Dashboard = () => { const [startDate, setStartDate] = useState(""); @@ -36,7 +36,7 @@ const Dashboard = () => { */} - + {/* */} ) } From 13e17bef403fc24ca425bc1c255d9c5872ee79a6 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:49:00 +0200 Subject: [PATCH 015/331] add components for Dashboard --- .../components/Dashboard/loginLineChart.js | 133 ++++++++++++++++++ .../src/components/Dashboard/loginTiles.js | 96 +++++++++++++ 2 files changed, 229 insertions(+) create mode 100644 javascript/src/components/Dashboard/loginLineChart.js create mode 100644 javascript/src/components/Dashboard/loginTiles.js diff --git a/javascript/src/components/Dashboard/loginLineChart.js b/javascript/src/components/Dashboard/loginLineChart.js new file mode 100644 index 0000000..957c378 --- /dev/null +++ b/javascript/src/components/Dashboard/loginLineChart.js @@ -0,0 +1,133 @@ +import { useState, useContext, useEffect } from "react"; +import { Chart } from "react-google-charts"; +import "../../app.css"; +import { client } from '../../utils/api'; +import Select from 'react-select'; +import Container from 'react-bootstrap/Container'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import 'bootstrap/dist/css/bootstrap.min.css'; + + +export const options = { + title: "Overall number of logins per day", + //curveType: "function", + legend: 'none' +}; + + +const LoginLineChart = ({ type, identifier, tenantId }) => { + + const [managed, setManaged] = useState(false); + const [lineData, setLineData] = useState(["Date", "Logins"]) + useEffect(() => { + var params = null + console.log(type) + params = { params: { tenant_id: tenantId } } + if (type) { + params["params"][[type]]= identifier + } + console.log(params) + client.get("logins_groupby/day", params). + then(response => { + console.log(response) + var lineDataArray = [["Date", "Logins"]]; + response["data"].forEach(element => { + lineDataArray.push([new Date(element.date), element.count]) + }) + console.log(lineDataArray) + setLineData(lineDataArray) + }) + }, []) + + + // This is for Dates with no logins, we have to set 0 for these dates + function setZerosIfNoDate(dataTable, google) { + var lineDataArray = [["Date", "Logins"]] + var datePattern = 'd.M.yy'; + var formatDate = new google.visualization.DateFormat({ + pattern: datePattern + }); + var startDate = dataTable.getColumnRange(0).min; + console.log(startDate) + console.log(startDate.getTime()) + var endDate = dataTable.getColumnRange(0).max; + var oneDay = (1000 * 60 * 60 * 24); + for (var i = startDate.getTime(); i < endDate.getTime(); i = i + oneDay) { + var coffeeData = dataTable.getFilteredRows([{ + column: 0, + test: function (value, row, column, table) { + var coffeeDate = formatDate.formatValue(table.getValue(row, column)); + var testDate = formatDate.formatValue(new Date(i)); + return (coffeeDate === testDate); + } + }]); + if (coffeeData.length === 0) { + dataTable.addRow([ + new Date(i), + 0 + ]); + } + } + dataTable.sort({ + column: 0 + }); + for (var i = 0; i < dataTable.getNumberOfRows(); i++) { + var row = [dataTable.getValue(i, 0), dataTable.getValue(i, 1)] + + lineDataArray.push([row[0], row[1]]) + + } + console.log(lineDataArray) + setManaged(true); + setLineData(lineDataArray) + + return dataTable; + } + + + return ( + { + const chart = chartWrapper.getChart(); + if (!managed) { + console.log(managed) + setZerosIfNoDate(chartWrapper.getDataTable(), google) + } + google.visualization.events.addListener(chart, "click", (e) => { + console.log("CLICK"); + }); + } + } + ]} + controls={[ + { + + controlType: "ChartRangeFilter", + options: { + filterColumnIndex: 0, + ui: { + chartType: "LineChart", + chartOptions: { + chartArea: { width: "95%", height: "40%" }, + hAxis: { baselineColor: "none" }, + }, + }, + }, + controlPosition: "bottom", + + }, + ]} + /> + ); +} + +export default LoginLineChart \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginTiles.js b/javascript/src/components/Dashboard/loginTiles.js new file mode 100644 index 0000000..4f68465 --- /dev/null +++ b/javascript/src/components/Dashboard/loginTiles.js @@ -0,0 +1,96 @@ +import { useState, useContext, useEffect } from "react"; +import "../../app.css"; +import { client } from '../../utils/api'; +import Container from 'react-bootstrap/Container'; +import Select from 'react-select'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import 'bootstrap/dist/css/bootstrap.min.css'; + +const LoginTiles = (parameters) => { + const [tiles, setTiles] = useState({}); + useEffect(() => { + Promise.all([ + client.get("logins_countby", + { params: { 'tenant_id': parameters['tenantId'] }}), + client.get("logins_countby", + { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'] }}), + client.get("logins_countby", + { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'] }}), + client.get("logins_countby", + { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'] }}) + ]).then(function (responses) { + // Get a JSON object from each of the responses + return Promise.all(responses.map(function (response) { + return response; + })); + }).then(function (data) { + // Log the data to the console + // You would do something with both sets of data here + console.log(data); + var tilesArray = {} + data.forEach(element => { + + if (element["config"]["params"]["interval"] ) { + var name = element["config"]["params"]["interval"] + "_" + element["config"]["params"]["count_interval"] + tilesArray[[name]] = (element["data"][0]["count"] != null) ? element["data"][0]["count"] : 0 + } + else { + tilesArray["overall"] = (element["data"][0]["count"] != null) ? element["data"][0]["count"] : 0 + } + + }) + console.log(tilesArray) + setTiles(tilesArray) + + }).catch(function (error) { + // if there's an error, log it + console.log(error); + }); + + + }, []) + + return ( + + + {console.log(tiles)} +
              +
              +
              +

              {tiles["overall"]}

              +

              Total Logins

              +
              +
              + + +
              +
              +

              {tiles["year_1"]}

              +

              Last Year Logins

              +
              +
              + + +
              +
              +

              {tiles["days_30"]}

              +

              Last 30 days Logins

              +
              +
              + + +
              +
              +

              {tiles["days_7"]}

              +

              Last 7 days Logins

              +
              +
              + + + + ) +} + +export default LoginTiles \ No newline at end of file From 78a64ee96a81c96f7adc65040bc5b548fa0aab89 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 30 Jan 2023 09:51:42 +0200 Subject: [PATCH 016/331] put imports to top --- javascript/src/components/datatable.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/javascript/src/components/datatable.js b/javascript/src/components/datatable.js index 5bba1c7..fb976c1 100644 --- a/javascript/src/components/datatable.js +++ b/javascript/src/components/datatable.js @@ -10,9 +10,10 @@ import "datatables.net-buttons/js/buttons.html5.js"; import "datatables.net-buttons/js/buttons.print.js"; import pdfMake from "pdfmake/build/pdfmake"; import pdfFonts from "pdfmake/build/vfs_fonts"; +import $ from "jquery"; pdfMake.vfs = pdfFonts.pdfMake.vfs; -import $ from "jquery"; + var table; const title=''; From 67b06c59fa9b2f1fe35f1f7b52374bd9641184d5 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 08:49:27 +0200 Subject: [PATCH 017/331] add CI=false --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index c69ea65..ea28735 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -27,5 +27,5 @@ jobs: cd ${{ github.workspace }}/javascript; npm install - name: Build React application run: | - cd ${{ github.workspace }}/javascript; npm run build + cd ${{ github.workspace }}/javascript; CI=false npm run build - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file From 14349ca87b291eda24813f557f2b600526cec046 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 09:30:38 +0200 Subject: [PATCH 018/331] Add release job --- .github/workflows/releases.yml | 44 ++++++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index ea28735..3516e41 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -2,7 +2,7 @@ name: GitHub Actions Demo run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 on: [push] jobs: - Explore-GitHub-Actions: + deploy: runs-on: ubuntu-latest strategy: matrix: @@ -28,4 +28,44 @@ jobs: - name: Build React application run: | cd ${{ github.workspace }}/javascript; CI=false npm run build - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + # Share artifact inside workflow + - name: Share artifact inside workflow + uses: actions/upload-artifact@v1 + with: + name: react-github-actions-build + path: | + /home/runner/work/rciam-metrics-dev/rciam-metrics-dev/javascript/build + /home/runner/work/rciam-metrics-dev/rciam-metrics-dev/app + /home/runner/work/rciam-metrics-dev/rciam-metrics-dev/requirements.txt + - run: echo "🍏 This job's status is ${{ job.status }}." + release: + runs-on: ubuntu-latest + # We specify that deploys needs to + # finish before we create a release + needs: deploy + steps: + # Download previously shared build + - name: Get artifact + uses: actions/download-artifact@v1 + with: + name: react-github-actions-build + # Zip the build using external action + - name: Zip build + uses: thedoctor0/zip-release@master + with: + filename: react-github-actions-release-build.zip + path: react-github-actions-build + # Upload as an artifact of the current workflow + - name: Upload build zip artifact + uses: actions/upload-artifact@v1 + with: + name: react-github-actions-release-build.zip + path: react-github-actions-release-build.zip + # Make official GitHub release which will trigger + # sending the mail with link for access + - name: Release + uses: ncipollo/release-action@v1 + with: + artifacts: react-github-actions-release-build.zip + body: Test release action + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From 6153835ebca14e15dc9775a4f7485d4f8fb0f1f5 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 09:35:13 +0200 Subject: [PATCH 019/331] replace path with variable --- .github/workflows/releases.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 3516e41..795b880 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -34,9 +34,9 @@ jobs: with: name: react-github-actions-build path: | - /home/runner/work/rciam-metrics-dev/rciam-metrics-dev/javascript/build - /home/runner/work/rciam-metrics-dev/rciam-metrics-dev/app - /home/runner/work/rciam-metrics-dev/rciam-metrics-dev/requirements.txt + ${{ github.workspace }}/javascript/build + ${{ github.workspace }}/app + ${{ github.workspace }}/requirements.txt - run: echo "🍏 This job's status is ${{ job.status }}." release: runs-on: ubuntu-latest From d88b1e53692e49649e4ad0b641124ea693d45976 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 09:38:16 +0200 Subject: [PATCH 020/331] fix versions[github-actions] --- .github/workflows/releases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 795b880..9591546 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -30,7 +30,7 @@ jobs: cd ${{ github.workspace }}/javascript; CI=false npm run build # Share artifact inside workflow - name: Share artifact inside workflow - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 with: name: react-github-actions-build path: | @@ -46,7 +46,7 @@ jobs: steps: # Download previously shared build - name: Get artifact - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v3 with: name: react-github-actions-build # Zip the build using external action From b30030fd23fd7e77208a5b02c3a1de37487af47e Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 09:42:45 +0200 Subject: [PATCH 021/331] chech for paths [github-actions] --- .github/workflows/releases.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 9591546..b2c66eb 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -29,6 +29,12 @@ jobs: run: | cd ${{ github.workspace }}/javascript; CI=false npm run build # Share artifact inside workflow + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: List files in the repository + run: | + ls ${{ github.workspace }}/javascript - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: From 01401687d26372030cd20c807bf8973d02f443bd Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 09:59:58 +0200 Subject: [PATCH 022/331] change zip function [github-actions] --- .github/workflows/releases.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index b2c66eb..c413c5f 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -56,11 +56,9 @@ jobs: with: name: react-github-actions-build # Zip the build using external action - - name: Zip build - uses: thedoctor0/zip-release@master - with: - filename: react-github-actions-release-build.zip - path: react-github-actions-build + - name: Zip artifact for deployment + run: zip react-github-actions-release-build.zip react-github-actions-build -r + # Upload as an artifact of the current workflow - name: Upload build zip artifact uses: actions/upload-artifact@v1 From 109a134fa49c2747e56012d3b4b7170928d975fa Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 10:05:11 +0200 Subject: [PATCH 023/331] fix path for zip file [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index c413c5f..01d6591 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -57,7 +57,7 @@ jobs: name: react-github-actions-build # Zip the build using external action - name: Zip artifact for deployment - run: zip react-github-actions-release-build.zip react-github-actions-build -r + run: zip react-github-actions-release-build.zip ${{ github.workspace }}/rciam-metrics-dev/react-github-actions-build -r # Upload as an artifact of the current workflow - name: Upload build zip artifact From b1d3b148a3d517e8d4cce79820b855e5f8ebe44b Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 10:09:33 +0200 Subject: [PATCH 024/331] fix wrong path for zip file [github-actions] --- .github/workflows/releases.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 01d6591..f4905b8 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -56,8 +56,11 @@ jobs: with: name: react-github-actions-build # Zip the build using external action + - name: List files in the repository + run: | + ls ${{ github.workspace }}/rciam-metrics-dev - name: Zip artifact for deployment - run: zip react-github-actions-release-build.zip ${{ github.workspace }}/rciam-metrics-dev/react-github-actions-build -r + run: zip react-github-actions-release-build.zip ${{ github.workspace }}/rciam-metrics-dev -r # Upload as an artifact of the current workflow - name: Upload build zip artifact From 5dfc7ba0bb60a1167493a8dc6d1964ca51fbbe48 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 10:12:26 +0200 Subject: [PATCH 025/331] fix wrong path for zip file [github-actions] --- .github/workflows/releases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index f4905b8..cc5a98d 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -58,9 +58,9 @@ jobs: # Zip the build using external action - name: List files in the repository run: | - ls ${{ github.workspace }}/rciam-metrics-dev + ls ${{ github.workspace }} - name: Zip artifact for deployment - run: zip react-github-actions-release-build.zip ${{ github.workspace }}/rciam-metrics-dev -r + run: zip react-github-actions-release-build.zip ${{ github.workspace }} -r # Upload as an artifact of the current workflow - name: Upload build zip artifact From d2a68e37fdf8a8f41eb7adde9f3b6f1475f5ca2e Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 10:18:29 +0200 Subject: [PATCH 026/331] add tag and commit for release [github-actions] --- .github/workflows/releases.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index cc5a98d..d4aa473 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -75,4 +75,6 @@ jobs: with: artifacts: react-github-actions-release-build.zip body: Test release action - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }} + tag: v.1 + commit: devel \ No newline at end of file From 2e0ccf91a590205d09a1fe25220ebbcb3c6c52f2 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 31 Jan 2023 10:23:44 +0200 Subject: [PATCH 027/331] fix tag name [github-actions] --- .github/workflows/releases.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index d4aa473..b673968 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -74,7 +74,7 @@ jobs: uses: ncipollo/release-action@v1 with: artifacts: react-github-actions-release-build.zip - body: Test release action + body: Release ${{ github.ref }} token: ${{ secrets.GITHUB_TOKEN }} - tag: v.1 - commit: devel \ No newline at end of file + tag: ${{ github.ref }} + \ No newline at end of file From f81586083f20f966dde1058bd494e7eb3a9e7330 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 09:58:08 +0200 Subject: [PATCH 028/331] fix zip working-directory [github-actions] --- .github/workflows/releases.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index b673968..9aa7ebe 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -60,8 +60,9 @@ jobs: run: | ls ${{ github.workspace }} - name: Zip artifact for deployment - run: zip react-github-actions-release-build.zip ${{ github.workspace }} -r - + run: zip -r -qq react-github-actions-release-build.zip . + working-directory: ${{ github.workspace }} + # Upload as an artifact of the current workflow - name: Upload build zip artifact uses: actions/upload-artifact@v1 From d91fac4c7cc8506bb6a0fb076e253727de02f349 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 10:14:32 +0200 Subject: [PATCH 029/331] fix zip working-directory [github-actions] --- .github/workflows/releases.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 9aa7ebe..4ea5452 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -69,6 +69,9 @@ jobs: with: name: react-github-actions-release-build.zip path: react-github-actions-release-build.zip + - run: | + export GIT_TAG=$(git describe --tags --abbrev=0) + echo "GIT_TAG=$GIT_TAG" >> $GITHUB_ENV # Make official GitHub release which will trigger # sending the mail with link for access - name: Release @@ -77,5 +80,6 @@ jobs: artifacts: react-github-actions-release-build.zip body: Release ${{ github.ref }} token: ${{ secrets.GITHUB_TOKEN }} + name: devel tag: ${{ github.ref }} \ No newline at end of file From 7d1a2ce9bd9d1a39841e820fe1e1c68664c65c5b Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 10:15:38 +0200 Subject: [PATCH 030/331] fix syntax [github-actions] --- .github/workflows/releases.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 4ea5452..3831359 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -69,9 +69,7 @@ jobs: with: name: react-github-actions-release-build.zip path: react-github-actions-release-build.zip - - run: | - export GIT_TAG=$(git describe --tags --abbrev=0) - echo "GIT_TAG=$GIT_TAG" >> $GITHUB_ENV + # Make official GitHub release which will trigger # sending the mail with link for access - name: Release From dcffe15d16f134ba389068706dcc7d5e64f8897a Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 10:24:10 +0200 Subject: [PATCH 031/331] minor fix [github-actions] --- .github/workflows/releases.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 3831359..cb5ed95 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -69,7 +69,6 @@ jobs: with: name: react-github-actions-release-build.zip path: react-github-actions-release-build.zip - # Make official GitHub release which will trigger # sending the mail with link for access - name: Release From d7851f44f17c4ab52286b54ec208893904539fca Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 12:50:22 +0200 Subject: [PATCH 032/331] create branch [github-actions] --- .github/workflows/releases.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index cb5ed95..44359bb 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -35,6 +35,14 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }}/javascript + - name: Create release branch + run: git checkout -b devel-v1.1.0 + - name: Initialize mandatory git config + run: | + git config user.name "GitHub Actions" + git config user.email noreply@github.com + - name: Push new branch + run: git push origin devel-v1.1.0 - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: @@ -77,6 +85,5 @@ jobs: artifacts: react-github-actions-release-build.zip body: Release ${{ github.ref }} token: ${{ secrets.GITHUB_TOKEN }} - name: devel - tag: ${{ github.ref }} + tag: devel-v1.1.0 \ No newline at end of file From 1728dbc549ea39f3dc9d94ce88804cd280fd9660 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 13:41:25 +0200 Subject: [PATCH 033/331] test automatic releases [github-actions] --- .github/workflows/releases.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 44359bb..8ad3428 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -36,13 +36,13 @@ jobs: run: | ls ${{ github.workspace }}/javascript - name: Create release branch - run: git checkout -b devel-v1.1.0 + run: git checkout -b rc-v1.1.0 - name: Initialize mandatory git config run: | git config user.name "GitHub Actions" git config user.email noreply@github.com - name: Push new branch - run: git push origin devel-v1.1.0 + run: git push origin rc-v1.1.0 - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: @@ -79,11 +79,19 @@ jobs: path: react-github-actions-release-build.zip # Make official GitHub release which will trigger # sending the mail with link for access - - name: Release - uses: ncipollo/release-action@v1 + # - name: Release + # uses: ncipollo/release-action@v1 + # with: + # artifacts: react-github-actions-release-build.zip + # body: Release ${{ github.ref }} + # token: ${{ secrets.GITHUB_TOKEN }} + # tag: rc-v1.1.0 + - name: Create Release + uses: marvinpinto/action-automatic-releases@latest with: - artifacts: react-github-actions-release-build.zip - body: Release ${{ github.ref }} - token: ${{ secrets.GITHUB_TOKEN }} - tag: devel-v1.1.0 + repo_token: ${{ secrets.GITHUB_TOKEN }} + automatic_release_tag: "devel-latest" + prerelease: false + files: | + react-github-actions-release-build.zip \ No newline at end of file From dfef6cfcc5deec4d63046640e08fd00607cdf6b1 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 13:47:03 +0200 Subject: [PATCH 034/331] minor fix [github-actions] --- .github/workflows/releases.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 8ad3428..5d00937 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -70,7 +70,6 @@ jobs: - name: Zip artifact for deployment run: zip -r -qq react-github-actions-release-build.zip . working-directory: ${{ github.workspace }} - # Upload as an artifact of the current workflow - name: Upload build zip artifact uses: actions/upload-artifact@v1 From 3709a9d49c257b12d7e5f05d44d61cbc356ce3a6 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 14:32:18 +0200 Subject: [PATCH 035/331] use github_run_id for creating branch [github-actions] --- .github/workflows/releases.yml | 183 +++++++++++++++++---------------- 1 file changed, 92 insertions(+), 91 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 5d00937..5c23844 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -2,95 +2,96 @@ name: GitHub Actions Demo run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 on: [push] jobs: - deploy: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] - steps: - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v3 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install dependencies - run: | - cd ${{ github.workspace }}/javascript; npm install - - name: Build React application - run: | - cd ${{ github.workspace }}/javascript; CI=false npm run build - # Share artifact inside workflow - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: List files in the repository - run: | - ls ${{ github.workspace }}/javascript - - name: Create release branch - run: git checkout -b rc-v1.1.0 - - name: Initialize mandatory git config - run: | - git config user.name "GitHub Actions" - git config user.email noreply@github.com - - name: Push new branch - run: git push origin rc-v1.1.0 - - name: Share artifact inside workflow - uses: actions/upload-artifact@v3 - with: - name: react-github-actions-build - path: | - ${{ github.workspace }}/javascript/build - ${{ github.workspace }}/app - ${{ github.workspace }}/requirements.txt - - run: echo "🍏 This job's status is ${{ job.status }}." - release: - runs-on: ubuntu-latest - # We specify that deploys needs to - # finish before we create a release - needs: deploy - steps: - # Download previously shared build - - name: Get artifact - uses: actions/download-artifact@v3 - with: - name: react-github-actions-build - # Zip the build using external action - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: Zip artifact for deployment - run: zip -r -qq react-github-actions-release-build.zip . - working-directory: ${{ github.workspace }} - # Upload as an artifact of the current workflow - - name: Upload build zip artifact - uses: actions/upload-artifact@v1 - with: - name: react-github-actions-release-build.zip - path: react-github-actions-release-build.zip - # Make official GitHub release which will trigger - # sending the mail with link for access - # - name: Release - # uses: ncipollo/release-action@v1 - # with: - # artifacts: react-github-actions-release-build.zip - # body: Release ${{ github.ref }} - # token: ${{ secrets.GITHUB_TOKEN }} - # tag: rc-v1.1.0 - - name: Create Release - uses: marvinpinto/action-automatic-releases@latest - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: "devel-latest" - prerelease: false - files: | - react-github-actions-release-build.zip + if: "contains(github.event.head_commit.massage, '[deploy]')" + deploy: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [16.x] + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v3 + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: | + cd ${{ github.workspace }}/javascript; npm install + - name: Build React application + run: | + cd ${{ github.workspace }}/javascript; CI=false npm run build + # Share artifact inside workflow + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: List files in the repository + run: | + ls ${{ github.workspace }}/javascript + - name: Create release branch + run: git checkout -b rc-${GITHUB_RUN_ID} + - name: Initialize mandatory git config + run: | + git config user.name "GitHub Actions" + git config user.email noreply@github.com + - name: Push new branch + run: git push origin rc-${GITHUB_RUN_ID} + - name: Share artifact inside workflow + uses: actions/upload-artifact@v3 + with: + name: react-github-actions-build + path: | + ${{ github.workspace }}/javascript/build + ${{ github.workspace }}/app + ${{ github.workspace }}/requirements.txt + - run: echo "🍏 This job's status is ${{ job.status }}." + release: + runs-on: ubuntu-latest + # We specify that deploys needs to + # finish before we create a release + needs: deploy + steps: + # Download previously shared build + - name: Get artifact + uses: actions/download-artifact@v3 + with: + name: react-github-actions-build + # Zip the build using external action + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: Zip artifact for deployment + run: zip -r -qq react-github-actions-release-build.zip . + working-directory: ${{ github.workspace }} + # Upload as an artifact of the current workflow + - name: Upload build zip artifact + uses: actions/upload-artifact@v1 + with: + name: react-github-actions-release-build.zip + path: react-github-actions-release-build.zip + # Make official GitHub release which will trigger + # sending the mail with link for access + # - name: Release + # uses: ncipollo/release-action@v1 + # with: + # artifacts: react-github-actions-release-build.zip + # body: Release ${{ github.ref }} + # token: ${{ secrets.GITHUB_TOKEN }} + # tag: rc-v1.1.0 + - name: Create Release + uses: marvinpinto/action-automatic-releases@latest + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + automatic_release_tag: "rc-${GITHUB_RUN_ID}" + prerelease: false + files: | + react-github-actions-release-build.zip \ No newline at end of file From 96416a3bbcd84bb433b4bb8142ccda5c97c90471 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 14:38:24 +0200 Subject: [PATCH 036/331] fix syntax [github-actions] --- .github/workflows/releases.yml | 183 ++++++++++++++++----------------- 1 file changed, 91 insertions(+), 92 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 5c23844..28592b4 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -2,96 +2,95 @@ name: GitHub Actions Demo run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 on: [push] jobs: - if: "contains(github.event.head_commit.massage, '[deploy]')" - deploy: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] - steps: - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v3 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install dependencies - run: | - cd ${{ github.workspace }}/javascript; npm install - - name: Build React application - run: | - cd ${{ github.workspace }}/javascript; CI=false npm run build - # Share artifact inside workflow - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: List files in the repository - run: | - ls ${{ github.workspace }}/javascript - - name: Create release branch - run: git checkout -b rc-${GITHUB_RUN_ID} - - name: Initialize mandatory git config - run: | - git config user.name "GitHub Actions" - git config user.email noreply@github.com - - name: Push new branch - run: git push origin rc-${GITHUB_RUN_ID} - - name: Share artifact inside workflow - uses: actions/upload-artifact@v3 - with: - name: react-github-actions-build - path: | - ${{ github.workspace }}/javascript/build - ${{ github.workspace }}/app - ${{ github.workspace }}/requirements.txt - - run: echo "🍏 This job's status is ${{ job.status }}." - release: - runs-on: ubuntu-latest - # We specify that deploys needs to - # finish before we create a release - needs: deploy - steps: - # Download previously shared build - - name: Get artifact - uses: actions/download-artifact@v3 - with: - name: react-github-actions-build - # Zip the build using external action - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: Zip artifact for deployment - run: zip -r -qq react-github-actions-release-build.zip . - working-directory: ${{ github.workspace }} - # Upload as an artifact of the current workflow - - name: Upload build zip artifact - uses: actions/upload-artifact@v1 - with: - name: react-github-actions-release-build.zip - path: react-github-actions-release-build.zip - # Make official GitHub release which will trigger - # sending the mail with link for access - # - name: Release - # uses: ncipollo/release-action@v1 - # with: - # artifacts: react-github-actions-release-build.zip - # body: Release ${{ github.ref }} - # token: ${{ secrets.GITHUB_TOKEN }} - # tag: rc-v1.1.0 - - name: Create Release - uses: marvinpinto/action-automatic-releases@latest - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: "rc-${GITHUB_RUN_ID}" - prerelease: false - files: | - react-github-actions-release-build.zip + deploy: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [16.x] + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v3 + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: | + cd ${{ github.workspace }}/javascript; npm install + - name: Build React application + run: | + cd ${{ github.workspace }}/javascript; CI=false npm run build + # Share artifact inside workflow + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: List files in the repository + run: | + ls ${{ github.workspace }}/javascript + - name: Create release branch + run: git checkout -b rc-${GITHUB_RUN_ID} + - name: Initialize mandatory git config + run: | + git config user.name "GitHub Actions" + git config user.email noreply@github.com + - name: Push new branch + run: git push origin rc-${GITHUB_RUN_ID} + - name: Share artifact inside workflow + uses: actions/upload-artifact@v3 + with: + name: react-github-actions-build + path: | + ${{ github.workspace }}/javascript/build + ${{ github.workspace }}/app + ${{ github.workspace }}/requirements.txt + - run: echo "🍏 This job's status is ${{ job.status }}." + release: + runs-on: ubuntu-latest + # We specify that deploys needs to + # finish before we create a release + needs: deploy + steps: + # Download previously shared build + - name: Get artifact + uses: actions/download-artifact@v3 + with: + name: react-github-actions-build + # Zip the build using external action + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: Zip artifact for deployment + run: zip -r -qq react-github-actions-release-build.zip . + working-directory: ${{ github.workspace }} + # Upload as an artifact of the current workflow + - name: Upload build zip artifact + uses: actions/upload-artifact@v1 + with: + name: react-github-actions-release-build.zip + path: react-github-actions-release-build.zip + # Make official GitHub release which will trigger + # sending the mail with link for access + # - name: Release + # uses: ncipollo/release-action@v1 + # with: + # artifacts: react-github-actions-release-build.zip + # body: Release ${{ github.ref }} + # token: ${{ secrets.GITHUB_TOKEN }} + # tag: rc-v1.1.0 + - name: Create Release + uses: marvinpinto/action-automatic-releases@latest + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + automatic_release_tag: "rc-${GITHUB_RUN_ID}" + prerelease: false + files: | + react-github-actions-release-build.zip \ No newline at end of file From d916a39328d879c2811dae193497c856375715c3 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 14:42:30 +0200 Subject: [PATCH 037/331] minor fix [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 28592b4..a7bb8c0 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -89,7 +89,7 @@ jobs: uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: "rc-${GITHUB_RUN_ID}" + automatic_release_tag: rc-${GITHUB_RUN_ID} prerelease: false files: | react-github-actions-release-build.zip From dde98c70afb619b5bfde64de1620ceac32413c4e Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 15:23:03 +0200 Subject: [PATCH 038/331] minor fix [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index a7bb8c0..2426456 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -89,7 +89,7 @@ jobs: uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: rc-${GITHUB_RUN_ID} + automatic_release_tag: rc-${{ GITHUB_RUN_ID }} prerelease: false files: | react-github-actions-release-build.zip From 9490a0aff66d54153de393824b5f5496c76f879b Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 15:31:59 +0200 Subject: [PATCH 039/331] fix for github_run_id [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 2426456..e50fb86 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -89,7 +89,7 @@ jobs: uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: rc-${{ GITHUB_RUN_ID }} + automatic_release_tag: rc-${{ env.GITHUB_RUN_ID }} prerelease: false files: | react-github-actions-release-build.zip From 8a527c6ba930831df682ce93a81df38172e76293 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 15:36:35 +0200 Subject: [PATCH 040/331] fix for github_run_id [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index e50fb86..689de3b 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -89,7 +89,7 @@ jobs: uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: rc-${{ env.GITHUB_RUN_ID }} + automatic_release_tag: rc-${{ github.run.id }} prerelease: false files: | react-github-actions-release-build.zip From e491a9ec8793d6e6c9a1864a551e5c683755ebc6 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 15:44:30 +0200 Subject: [PATCH 041/331] fix for github_run_id [github-actions] --- .github/workflows/releases.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 689de3b..275d46f 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -1,6 +1,8 @@ name: GitHub Actions Demo run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 on: [push] +env: + RELEASE_ID: ${GITHUB_RUN_ID} jobs: deploy: runs-on: ubuntu-latest @@ -89,7 +91,7 @@ jobs: uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: rc-${{ github.run.id }} + automatic_release_tag: rc-$RELEASE_ID prerelease: false files: | react-github-actions-release-build.zip From 3da54992ce4c9aabf371daf2cab601c66427e8e8 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 15:50:51 +0200 Subject: [PATCH 042/331] fix for github_run_id [github-actions] --- .github/workflows/releases.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 275d46f..6644168 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -78,15 +78,15 @@ jobs: with: name: react-github-actions-release-build.zip path: react-github-actions-release-build.zip - # Make official GitHub release which will trigger - # sending the mail with link for access - # - name: Release - # uses: ncipollo/release-action@v1 - # with: - # artifacts: react-github-actions-release-build.zip - # body: Release ${{ github.ref }} - # token: ${{ secrets.GITHUB_TOKEN }} - # tag: rc-v1.1.0 + Make official GitHub release which will trigger + sending the mail with link for access + - name: Release + uses: ncipollo/release-action@v1 + with: + artifacts: react-github-actions-release-build.zip + body: Release for rc-$RELEASE_ID + token: ${{ secrets.GITHUB_TOKEN }} + tag: rc-$RELEASE_ID - name: Create Release uses: marvinpinto/action-automatic-releases@latest with: From a45bb5e1fa88588d7d221b3d53d570e2ec778338 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 15:52:01 +0200 Subject: [PATCH 043/331] fix for github_run_id [github-actions] --- .github/workflows/releases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 6644168..3ea98d1 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -78,8 +78,8 @@ jobs: with: name: react-github-actions-release-build.zip path: react-github-actions-release-build.zip - Make official GitHub release which will trigger - sending the mail with link for access + #Make official GitHub release which will trigger + #sending the mail with link for access - name: Release uses: ncipollo/release-action@v1 with: From abcada41758b4a524ab9d39969c62a129e50963c Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 15:59:37 +0200 Subject: [PATCH 044/331] fix for github_run_id [github-actions] --- .github/workflows/releases.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 3ea98d1..8da1081 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -2,7 +2,7 @@ name: GitHub Actions Demo run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 on: [push] env: - RELEASE_ID: ${GITHUB_RUN_ID} + RELEASE_ID: rc-${GITHUB_RUN_ID} jobs: deploy: runs-on: ubuntu-latest @@ -84,15 +84,16 @@ jobs: uses: ncipollo/release-action@v1 with: artifacts: react-github-actions-release-build.zip - body: Release for rc-$RELEASE_ID + body: Release for $RELEASE_ID token: ${{ secrets.GITHUB_TOKEN }} - tag: rc-$RELEASE_ID + tag: $RELEASE_ID - name: Create Release uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: rc-$RELEASE_ID + automatic_release_tag: $RELEASE_ID prerelease: false files: | react-github-actions-release-build.zip + \ No newline at end of file From b963be1b187c196232c560421affcafde6edd8cc Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 16:04:20 +0200 Subject: [PATCH 045/331] fix for github_run_id [github-actions] --- .github/workflows/releases.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 8da1081..e09a3b3 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -2,7 +2,7 @@ name: GitHub Actions Demo run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 on: [push] env: - RELEASE_ID: rc-${GITHUB_RUN_ID} + RELEASE_ID: rc-${{ github.run.id }} jobs: deploy: runs-on: ubuntu-latest @@ -84,14 +84,14 @@ jobs: uses: ncipollo/release-action@v1 with: artifacts: react-github-actions-release-build.zip - body: Release for $RELEASE_ID + body: Release for ${{ env.RELEASE_ID }} token: ${{ secrets.GITHUB_TOKEN }} - tag: $RELEASE_ID + tag: ${{ env.RELEASE_ID }} - name: Create Release uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: $RELEASE_ID + automatic_release_tag: ${{ env.RELEASE_ID }} prerelease: false files: | react-github-actions-release-build.zip From cfd0c3ad58b60feb7f0af9c0e22e22e12843a260 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 1 Feb 2023 16:08:07 +0200 Subject: [PATCH 046/331] fix for github_run_id [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index e09a3b3..cd6dc4f 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -2,7 +2,7 @@ name: GitHub Actions Demo run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 on: [push] env: - RELEASE_ID: rc-${{ github.run.id }} + RELEASE_ID: rc-${{ github.run_id }} jobs: deploy: runs-on: ubuntu-latest From 9fa109f170cd7c7a47a25df71e5de6980bfb34a6 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 2 Feb 2023 15:16:19 +0200 Subject: [PATCH 047/331] test checkout private repo [github-actions] --- .github/workflows/releases.yml | 193 ++++++++++++++++++--------------- 1 file changed, 107 insertions(+), 86 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index cd6dc4f..144aa1f 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -4,96 +4,117 @@ on: [push] env: RELEASE_ID: rc-${{ github.run_id }} jobs: - deploy: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] - steps: - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v3 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install dependencies - run: | - cd ${{ github.workspace }}/javascript; npm install - - name: Build React application - run: | - cd ${{ github.workspace }}/javascript; CI=false npm run build - # Share artifact inside workflow - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: List files in the repository - run: | - ls ${{ github.workspace }}/javascript - - name: Create release branch - run: git checkout -b rc-${GITHUB_RUN_ID} - - name: Initialize mandatory git config - run: | - git config user.name "GitHub Actions" - git config user.email noreply@github.com - - name: Push new branch - run: git push origin rc-${GITHUB_RUN_ID} - - name: Share artifact inside workflow - uses: actions/upload-artifact@v3 - with: - name: react-github-actions-build - path: | - ${{ github.workspace }}/javascript/build - ${{ github.workspace }}/app - ${{ github.workspace }}/requirements.txt - - run: echo "🍏 This job's status is ${{ job.status }}." - release: + # deploy: + # runs-on: ubuntu-latest + # strategy: + # matrix: + # node-version: [16.x] + # steps: + # - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + # - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + # - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + # - name: Check out repository code + # uses: actions/checkout@v3 + # - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + # - run: echo "🖥️ The workflow is now ready to test your code on the runner." + # - name: List files in the repository + # run: | + # ls ${{ github.workspace }} + # - name: Use Node.js ${{ matrix.node-version }} + # uses: actions/setup-node@v3 + # with: + # node-version: ${{ matrix.node-version }} + # - name: Install dependencies + # run: | + # cd ${{ github.workspace }}/javascript; npm install + # - name: Build React application + # run: | + # cd ${{ github.workspace }}/javascript; CI=false npm run build + # # Share artifact inside workflow + # - name: List files in the repository + # run: | + # ls ${{ github.workspace }} + # - name: List files in the repository + # run: | + # ls ${{ github.workspace }}/javascript + # - name: Create release branch + # run: git checkout -b rc-${GITHUB_RUN_ID} + # - name: Initialize mandatory git config + # run: | + # git config user.name "GitHub Actions" + # git config user.email noreply@github.com + # - name: Push new branch + # run: git push origin rc-${GITHUB_RUN_ID} + # - name: Share artifact inside workflow + # uses: actions/upload-artifact@v3 + # with: + # name: react-github-actions-build + # path: | + # ${{ github.workspace }}/javascript/build + # ${{ github.workspace }}/app + # ${{ github.workspace }}/requirements.txt + # - run: echo "🍏 This job's status is ${{ job.status }}." + # release: + # runs-on: ubuntu-latest + # # We specify that deploys needs to + # # finish before we create a release + # needs: deploy + # steps: + # # Download previously shared build + # - name: Get artifact + # uses: actions/download-artifact@v3 + # with: + # name: react-github-actions-build + # # Zip the build using external action + # - name: List files in the repository + # run: | + # ls ${{ github.workspace }} + # - name: Zip artifact for deployment + # run: zip -r -qq react-github-actions-release-build.zip . + # working-directory: ${{ github.workspace }} + # # Upload as an artifact of the current workflow + # - name: Upload build zip artifact + # uses: actions/upload-artifact@v1 + # with: + # name: react-github-actions-release-build.zip + # path: react-github-actions-release-build.zip + # #Make official GitHub release which will trigger + # #sending the mail with link for access + # - name: Release + # uses: ncipollo/release-action@v1 + # with: + # artifacts: react-github-actions-release-build.zip + # body: Release for ${{ env.RELEASE_ID }} + # token: ${{ secrets.GITHUB_TOKEN }} + # tag: ${{ env.RELEASE_ID }} + # - name: Create Release + # uses: marvinpinto/action-automatic-releases@latest + # with: + # repo_token: ${{ secrets.GITHUB_TOKEN }} + # automatic_release_tag: ${{ env.RELEASE_ID }} + # prerelease: false + # files: | + # react-github-actions-release-build.zip + playbook: runs-on: ubuntu-latest # We specify that deploys needs to # finish before we create a release - needs: deploy + #needs: release steps: - # Download previously shared build - - name: Get artifact - uses: actions/download-artifact@v3 - with: - name: react-github-actions-build - # Zip the build using external action - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: Zip artifact for deployment - run: zip -r -qq react-github-actions-release-build.zip . - working-directory: ${{ github.workspace }} - # Upload as an artifact of the current workflow - - name: Upload build zip artifact - uses: actions/upload-artifact@v1 - with: - name: react-github-actions-release-build.zip - path: react-github-actions-release-build.zip - #Make official GitHub release which will trigger - #sending the mail with link for access - - name: Release - uses: ncipollo/release-action@v1 + - name: Download playbook + uses: actions/checkout@v3 with: - artifacts: react-github-actions-release-build.zip - body: Release for ${{ env.RELEASE_ID }} - token: ${{ secrets.GITHUB_TOKEN }} - tag: ${{ env.RELEASE_ID }} - - name: Create Release - uses: marvinpinto/action-automatic-releases@latest + # Repository name with owner. For example, actions/checkout + # Default: ${{ github.repository }} + repository: 'lionick/rciam-deploy' + ref: 'rciam-metrics-role' + - name: Download inventory + uses: actions/checkout@v3 with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: ${{ env.RELEASE_ID }} - prerelease: false - files: | - react-github-actions-release-build.zip - + # Repository name with owner. For example, actions/checkout + # Default: ${{ github.repository }} + repository: 'lionick/rciam-deploy-inv' + ref: 'rciam-metrics-role' + ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} + \ No newline at end of file From 2a7b38b2593ae62cf97923c9d302857f8ab00576 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 2 Feb 2023 15:25:40 +0200 Subject: [PATCH 048/331] test checkout private repo [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 144aa1f..608ead3 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -114,7 +114,7 @@ jobs: # Repository name with owner. For example, actions/checkout # Default: ${{ github.repository }} repository: 'lionick/rciam-deploy-inv' - ref: 'rciam-metrics-role' + ref: 'add_metrics_inv' ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} \ No newline at end of file From 2e800050896c2528d983888fae50ddd91f9fc5b5 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 2 Feb 2023 15:30:10 +0200 Subject: [PATCH 049/331] test checkout private repo [github-actions] --- .github/workflows/releases.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 608ead3..233c3f5 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -108,6 +108,7 @@ jobs: # Default: ${{ github.repository }} repository: 'lionick/rciam-deploy' ref: 'rciam-metrics-role' + path: 'roles' - name: Download inventory uses: actions/checkout@v3 with: @@ -116,5 +117,6 @@ jobs: repository: 'lionick/rciam-deploy-inv' ref: 'add_metrics_inv' ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} + path: 'inventory' \ No newline at end of file From b6efe858461000c1859352ab7f2404a7a271b492 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 2 Feb 2023 15:32:37 +0200 Subject: [PATCH 050/331] test checkout private repo [github-actions] --- .github/workflows/releases.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 233c3f5..2ff2e46 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -112,8 +112,6 @@ jobs: - name: Download inventory uses: actions/checkout@v3 with: - # Repository name with owner. For example, actions/checkout - # Default: ${{ github.repository }} repository: 'lionick/rciam-deploy-inv' ref: 'add_metrics_inv' ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} From 15efea85fde938d28ce67e607adcf39f37b784dd Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 2 Feb 2023 21:32:29 +0200 Subject: [PATCH 051/331] test playbook [github-actions] --- .github/workflows/releases.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 2ff2e46..cf3a300 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -116,5 +116,17 @@ jobs: ref: 'add_metrics_inv' ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} path: 'inventory' + - name: Run playbook + uses: dawidd6/action-ansible-playbook@v2 + with: + # Required, playbook filepath + playbook: metricsservers.yml + # Optional, directory where playbooks live + directory: ./roles + # Optional, encrypted vault password + vault_password: ${{secrets.VAULT_PASSWORD}} + options: | + --inventory inventory/rciam-metrics-dev/hosts.ini + --tags rciam-metrics:config-local \ No newline at end of file From 915d9253c269ccf5708b28efba9815eb22163d8f Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 2 Feb 2023 21:35:42 +0200 Subject: [PATCH 052/331] test playbook [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index cf3a300..042d4cf 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -126,7 +126,7 @@ jobs: # Optional, encrypted vault password vault_password: ${{secrets.VAULT_PASSWORD}} options: | - --inventory inventory/rciam-metrics-dev/hosts.ini + --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini --tags rciam-metrics:config-local \ No newline at end of file From b7e9f4eb036c7ca65f8a3ee86c4c45714c3fd2cb Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 2 Feb 2023 21:45:28 +0200 Subject: [PATCH 053/331] test playbook [github-actions] --- .github/workflows/releases.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 042d4cf..35ebb3d 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -123,6 +123,7 @@ jobs: playbook: metricsservers.yml # Optional, directory where playbooks live directory: ./roles + key: ${{ secrets.DEPLOY_READ_SECRET }} # Optional, encrypted vault password vault_password: ${{secrets.VAULT_PASSWORD}} options: | From c5b9ac97c064d9d82cc29c34ba925d3fe0d36c67 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 2 Feb 2023 21:49:26 +0200 Subject: [PATCH 054/331] test playbook [github-actions] --- .github/workflows/releases.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 35ebb3d..f2ba847 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -129,5 +129,7 @@ jobs: options: | --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini --tags rciam-metrics:config-local + -u debian + \ No newline at end of file From 491168c871b22dee687a0008f5f2663794121f99 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 09:40:55 +0200 Subject: [PATCH 055/331] list folder for react_config [github-actions] --- .github/workflows/releases.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index f2ba847..e60493f 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -116,7 +116,7 @@ jobs: ref: 'add_metrics_inv' ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} path: 'inventory' - - name: Run playbook + - name: Run playbook (create react_config file) uses: dawidd6/action-ansible-playbook@v2 with: # Required, playbook filepath @@ -130,6 +130,9 @@ jobs: --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini --tags rciam-metrics:config-local -u debian - + - name: List files in the repository + run: | + ls ${{ github.workspace }}/inventory/rciam-metrics-dev/files + ls ${{ github.workspace }}/inventory/files \ No newline at end of file From 4249976dda99291b9046d3d8732b98fef21361dd Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 09:43:04 +0200 Subject: [PATCH 056/331] list folder for react_config [github-actions] --- .github/workflows/releases.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index e60493f..90f383b 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -130,9 +130,9 @@ jobs: --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini --tags rciam-metrics:config-local -u debian - - name: List files in the repository - run: | - ls ${{ github.workspace }}/inventory/rciam-metrics-dev/files - ls ${{ github.workspace }}/inventory/files + - name: List files in the repository + run: | + ls ${{ github.workspace }}/inventory/rciam-metrics-dev/files + ls ${{ github.workspace }}/inventory/files \ No newline at end of file From 43adbb6b75519c5d3100c9b5a1248fe989778f01 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 09:47:46 +0200 Subject: [PATCH 057/331] minor fix for react_config [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 90f383b..2706807 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -133,6 +133,6 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }}/inventory/rciam-metrics-dev/files - ls ${{ github.workspace }}/inventory/files + cat ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json \ No newline at end of file From b2dd9f36f799b83575353801d1d20d650de714c6 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 10:01:39 +0200 Subject: [PATCH 058/331] copy react_config.json to the metrics app [github-actions] --- .github/workflows/releases.yml | 38 ++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 2706807..007404a 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -4,22 +4,24 @@ on: [push] env: RELEASE_ID: rc-${{ github.run_id }} jobs: - # deploy: - # runs-on: ubuntu-latest - # strategy: - # matrix: - # node-version: [16.x] - # steps: - # - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - # - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - # - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - # - name: Check out repository code - # uses: actions/checkout@v3 - # - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - # - run: echo "🖥️ The workflow is now ready to test your code on the runner." - # - name: List files in the repository - # run: | - # ls ${{ github.workspace }} + deploy: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [16.x] + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v3 + with: + path: 'metrics-app' + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} # - name: Use Node.js ${{ matrix.node-version }} # uses: actions/setup-node@v3 # with: @@ -132,7 +134,7 @@ jobs: -u debian - name: List files in the repository run: | - ls ${{ github.workspace }}/inventory/rciam-metrics-dev/files - cat ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json + ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files + mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. \ No newline at end of file From 454ff4b176fa0bd94827b0dc455d55998acfb4bc Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 10:06:11 +0200 Subject: [PATCH 059/331] copy react_config.json to the metrics app [github-actions] --- .github/workflows/releases.yml | 79 +++++++++++++++++----------------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 007404a..0859e4f 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -22,6 +22,40 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }} + - name: Download playbook + uses: actions/checkout@v3 + with: + # Repository name with owner. For example, actions/checkout + # Default: ${{ github.repository }} + repository: 'lionick/rciam-deploy' + ref: 'rciam-metrics-role' + path: 'roles' + - name: Download inventory + uses: actions/checkout@v3 + with: + repository: 'lionick/rciam-deploy-inv' + ref: 'add_metrics_inv' + ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} + path: 'inventory' + - name: Run playbook (create react_config file) + uses: dawidd6/action-ansible-playbook@v2 + with: + # Required, playbook filepath + playbook: metricsservers.yml + # Optional, directory where playbooks live + directory: ./roles + key: ${{ secrets.DEPLOY_READ_SECRET }} + # Optional, encrypted vault password + vault_password: ${{secrets.VAULT_PASSWORD}} + options: | + --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini + --tags rciam-metrics:config-local + -u debian + - name: List files in the repository + run: | + ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files + mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. + # - name: Use Node.js ${{ matrix.node-version }} # uses: actions/setup-node@v3 # with: @@ -97,44 +131,11 @@ jobs: # prerelease: false # files: | # react-github-actions-release-build.zip - playbook: - runs-on: ubuntu-latest - # We specify that deploys needs to - # finish before we create a release - #needs: release - steps: - - name: Download playbook - uses: actions/checkout@v3 - with: - # Repository name with owner. For example, actions/checkout - # Default: ${{ github.repository }} - repository: 'lionick/rciam-deploy' - ref: 'rciam-metrics-role' - path: 'roles' - - name: Download inventory - uses: actions/checkout@v3 - with: - repository: 'lionick/rciam-deploy-inv' - ref: 'add_metrics_inv' - ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} - path: 'inventory' - - name: Run playbook (create react_config file) - uses: dawidd6/action-ansible-playbook@v2 - with: - # Required, playbook filepath - playbook: metricsservers.yml - # Optional, directory where playbooks live - directory: ./roles - key: ${{ secrets.DEPLOY_READ_SECRET }} - # Optional, encrypted vault password - vault_password: ${{secrets.VAULT_PASSWORD}} - options: | - --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini - --tags rciam-metrics:config-local - -u debian - - name: List files in the repository - run: | - ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files - mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. + # playbook: + # runs-on: ubuntu-latest + # # We specify that deploys needs to + # # finish before we create a release + # #needs: release + # steps: \ No newline at end of file From 99a1e31d386a8ac7054904a5ac2ddc7392ac66a0 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 10:10:51 +0200 Subject: [PATCH 060/331] test the 3 stages together [github-actions] --- .github/workflows/releases.yml | 157 +++++++++++++++++---------------- 1 file changed, 80 insertions(+), 77 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 0859e4f..8710e0f 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -4,7 +4,7 @@ on: [push] env: RELEASE_ID: rc-${{ github.run_id }} jobs: - deploy: + checkout: runs-on: ubuntu-latest strategy: matrix: @@ -55,82 +55,85 @@ jobs: run: | ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. - - # - name: Use Node.js ${{ matrix.node-version }} - # uses: actions/setup-node@v3 - # with: - # node-version: ${{ matrix.node-version }} - # - name: Install dependencies - # run: | - # cd ${{ github.workspace }}/javascript; npm install - # - name: Build React application - # run: | - # cd ${{ github.workspace }}/javascript; CI=false npm run build - # # Share artifact inside workflow - # - name: List files in the repository - # run: | - # ls ${{ github.workspace }} - # - name: List files in the repository - # run: | - # ls ${{ github.workspace }}/javascript - # - name: Create release branch - # run: git checkout -b rc-${GITHUB_RUN_ID} - # - name: Initialize mandatory git config - # run: | - # git config user.name "GitHub Actions" - # git config user.email noreply@github.com - # - name: Push new branch - # run: git push origin rc-${GITHUB_RUN_ID} - # - name: Share artifact inside workflow - # uses: actions/upload-artifact@v3 - # with: - # name: react-github-actions-build - # path: | - # ${{ github.workspace }}/javascript/build - # ${{ github.workspace }}/app - # ${{ github.workspace }}/requirements.txt - # - run: echo "🍏 This job's status is ${{ job.status }}." - # release: - # runs-on: ubuntu-latest - # # We specify that deploys needs to - # # finish before we create a release - # needs: deploy - # steps: - # # Download previously shared build - # - name: Get artifact - # uses: actions/download-artifact@v3 - # with: - # name: react-github-actions-build - # # Zip the build using external action - # - name: List files in the repository - # run: | - # ls ${{ github.workspace }} - # - name: Zip artifact for deployment - # run: zip -r -qq react-github-actions-release-build.zip . - # working-directory: ${{ github.workspace }} - # # Upload as an artifact of the current workflow - # - name: Upload build zip artifact - # uses: actions/upload-artifact@v1 - # with: - # name: react-github-actions-release-build.zip - # path: react-github-actions-release-build.zip - # #Make official GitHub release which will trigger - # #sending the mail with link for access - # - name: Release - # uses: ncipollo/release-action@v1 - # with: - # artifacts: react-github-actions-release-build.zip - # body: Release for ${{ env.RELEASE_ID }} - # token: ${{ secrets.GITHUB_TOKEN }} - # tag: ${{ env.RELEASE_ID }} - # - name: Create Release - # uses: marvinpinto/action-automatic-releases@latest - # with: - # repo_token: ${{ secrets.GITHUB_TOKEN }} - # automatic_release_tag: ${{ env.RELEASE_ID }} - # prerelease: false - # files: | - # react-github-actions-release-build.zip + build: + runs-on: ubuntu-latest + # We specify that deploys needs to + # finish before we create a release + needs: checkout + steps: + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: | + cd ${{ github.workspace }}/metrics-app/javascript; npm install + - name: Build React application + run: | + cd ${{ github.workspace }}/metrics-app/javascript; CI=false npm run build + # Share artifact inside workflow + - name: List files in the repository + run: | + ls ${{ github.workspace }}/metrics-app + ls ${{ github.workspace }}/metrics-app/javascript/src + - name: Create release branch + run: git checkout -b rc-${GITHUB_RUN_ID} + - name: Initialize mandatory git config + run: | + git config user.name "GitHub Actions" + git config user.email noreply@github.com + - name: Push new branch + run: git push origin rc-${GITHUB_RUN_ID} + - name: Share artifact inside workflow + uses: actions/upload-artifact@v3 + with: + name: react-github-actions-build + path: | + ${{ github.workspace }}/metrics-app/javascript/build + ${{ github.workspace }}/metrics-app/app + ${{ github.workspace }}/metrics-app/requirements.txt + - run: echo "🍏 This job's status is ${{ job.status }}." + release: + runs-on: ubuntu-latest + # We specify that deploys needs to + # finish before we create a release + needs: build + steps: + # Download previously shared build + - name: Get artifact + uses: actions/download-artifact@v3 + with: + name: react-github-actions-build + # Zip the build using external action + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: Zip artifact for deployment + run: zip -r -qq react-github-actions-release-build.zip . + working-directory: ${{ github.workspace }} + # Upload as an artifact of the current workflow + - name: Upload build zip artifact + uses: actions/upload-artifact@v1 + with: + name: react-github-actions-release-build.zip + path: react-github-actions-release-build.zip + #Make official GitHub release which will trigger + #sending the mail with link for access + - name: Release + uses: ncipollo/release-action@v1 + with: + artifacts: react-github-actions-release-build.zip + body: Release for ${{ env.RELEASE_ID }} + token: ${{ secrets.GITHUB_TOKEN }} + tag: ${{ env.RELEASE_ID }} + - name: Create Release + uses: marvinpinto/action-automatic-releases@latest + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + automatic_release_tag: ${{ env.RELEASE_ID }} + prerelease: false + files: | + react-github-actions-release-build.zip # playbook: # runs-on: ubuntu-latest # # We specify that deploys needs to From 9308bfb27017096a4802dd6eef4ea84e8b9b44c7 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 10:17:51 +0200 Subject: [PATCH 061/331] test the 3 stages together [github-actions] --- .github/workflows/releases.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 8710e0f..39883b5 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -55,12 +55,26 @@ jobs: run: | ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. + - name: Share artifact inside workflow + uses: actions/upload-artifact@v3 + with: + name: react-application + path: | + ${{ github.workspace }}/metrics-app build: runs-on: ubuntu-latest # We specify that deploys needs to # finish before we create a release needs: checkout steps: + # Download previously shared build + - name: Get artifact + uses: actions/download-artifact@v3 + with: + name: react-application + - name: List files in the repository + run: | + ls ${{ github.workspace }} - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: From cabc37bee499edb5fd85ce58f8bebda916521486 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 10:21:53 +0200 Subject: [PATCH 062/331] fix paths [github-actions] --- .github/workflows/releases.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 39883b5..db19193 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -81,15 +81,15 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install dependencies run: | - cd ${{ github.workspace }}/metrics-app/javascript; npm install + cd ${{ github.workspace }}/javascript; npm install - name: Build React application run: | - cd ${{ github.workspace }}/metrics-app/javascript; CI=false npm run build + cd ${{ github.workspace }}/javascript; CI=false npm run build # Share artifact inside workflow - name: List files in the repository run: | - ls ${{ github.workspace }}/metrics-app - ls ${{ github.workspace }}/metrics-app/javascript/src + ls ${{ github.workspace }} + ls ${{ github.workspace }}/javascript/src - name: Create release branch run: git checkout -b rc-${GITHUB_RUN_ID} - name: Initialize mandatory git config @@ -103,9 +103,9 @@ jobs: with: name: react-github-actions-build path: | - ${{ github.workspace }}/metrics-app/javascript/build - ${{ github.workspace }}/metrics-app/app - ${{ github.workspace }}/metrics-app/requirements.txt + ${{ github.workspace }}/javascript/build + ${{ github.workspace }}/app + ${{ github.workspace }}/requirements.txt - run: echo "🍏 This job's status is ${{ job.status }}." release: runs-on: ubuntu-latest From 35a50aeba330c1cbb26b26cec57aa51b98e62103 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 10:29:52 +0200 Subject: [PATCH 063/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index db19193..78d4e2e 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -91,13 +91,16 @@ jobs: ls ${{ github.workspace }} ls ${{ github.workspace }}/javascript/src - name: Create release branch - run: git checkout -b rc-${GITHUB_RUN_ID} + run: git checkout -b ${{ env.RELEASE_ID }} - name: Initialize mandatory git config run: | git config user.name "GitHub Actions" git config user.email noreply@github.com - - name: Push new branch - run: git push origin rc-${GITHUB_RUN_ID} + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ env.RELEASE_ID }} - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: From 00549ff3dd14a31e4d91489191734d7dcc3ad06e Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:15:25 +0200 Subject: [PATCH 064/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 78d4e2e..4798934 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -96,6 +96,7 @@ jobs: run: | git config user.name "GitHub Actions" git config user.email noreply@github.com + git push origin ${{ env.RELEASE_ID }} - name: Push changes uses: ad-m/github-push-action@master with: From 2f9b310c02dab306928c55c61f458ecc073aeefd Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:29:32 +0200 Subject: [PATCH 065/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 4798934..b15e313 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -67,8 +67,11 @@ jobs: # finish before we create a release needs: checkout steps: + - name: Checkout code + - uses: actions/checkout@v3 # Download previously shared build - name: Get artifact + id: download uses: actions/download-artifact@v3 with: name: react-application From 55dca3d5f105e20da15eb182808f5f110c8ad613 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:30:32 +0200 Subject: [PATCH 066/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index b15e313..f2920d5 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -155,6 +155,7 @@ jobs: prerelease: false files: | react-github-actions-release-build.zip + # playbook: # runs-on: ubuntu-latest # # We specify that deploys needs to From b69035b4e0dd9f18e22ef6f94c288d8f9242252a Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:31:24 +0200 Subject: [PATCH 067/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index f2920d5..b15e313 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -155,7 +155,6 @@ jobs: prerelease: false files: | react-github-actions-release-build.zip - # playbook: # runs-on: ubuntu-latest # # We specify that deploys needs to From 2be2899b7068a05262c253905367dce9865682ef Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:32:38 +0200 Subject: [PATCH 068/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index b15e313..641b80c 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -68,7 +68,7 @@ jobs: needs: checkout steps: - name: Checkout code - - uses: actions/checkout@v3 + uses: actions/checkout@v3 # Download previously shared build - name: Get artifact id: download From d1daff7c14dda445c6c0b861e91a2e4ef1aab026 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:39:24 +0200 Subject: [PATCH 069/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 641b80c..749fd15 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -55,6 +55,8 @@ jobs: run: | ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. + ls -la ${{ github.workspace }}/metrics-app/ + ls -la ${{ github.workspace }}/metrics-app/javascript/src/ - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: From ad3f095c2be4aba0023b70e821010944d164684b Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:43:47 +0200 Subject: [PATCH 070/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 749fd15..318945a 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -73,7 +73,6 @@ jobs: uses: actions/checkout@v3 # Download previously shared build - name: Get artifact - id: download uses: actions/download-artifact@v3 with: name: react-application From 8b9a0af78b3d843a899c82841fd0e758211b7858 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:51:22 +0200 Subject: [PATCH 071/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 318945a..75aa381 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -17,6 +17,7 @@ jobs: uses: actions/checkout@v3 with: path: 'metrics-app' + ref: 'deploy_changes' - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository @@ -71,6 +72,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 + with: + ref: 'deploy_changes' + - name: List files in the repository + run: | + ls ${{ github.workspace }} # Download previously shared build - name: Get artifact uses: actions/download-artifact@v3 From 31d9821488ddce97a9a2416c2177df0df5b5b90e Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 11:56:12 +0200 Subject: [PATCH 072/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 75aa381..18cd5df 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -52,12 +52,12 @@ jobs: --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini --tags rciam-metrics:config-local -u debian - - name: List files in the repository - run: | - ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files - mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. - ls -la ${{ github.workspace }}/metrics-app/ - ls -la ${{ github.workspace }}/metrics-app/javascript/src/ + # - name: List files in the repository + # run: | + # ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files + # mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. + # ls -la ${{ github.workspace }}/metrics-app/ + # ls -la ${{ github.workspace }}/metrics-app/javascript/src/ - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: From f89fb0e30e62b0f39804172515f081f9d5b07c76 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 12:00:38 +0200 Subject: [PATCH 073/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 175 +++++++++++++++++---------------- 1 file changed, 88 insertions(+), 87 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 18cd5df..fa7344c 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -52,39 +52,18 @@ jobs: --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini --tags rciam-metrics:config-local -u debian - # - name: List files in the repository - # run: | - # ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files - # mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. - # ls -la ${{ github.workspace }}/metrics-app/ - # ls -la ${{ github.workspace }}/metrics-app/javascript/src/ + - name: List files in the repository + run: | + ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files + mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. + ls -la ${{ github.workspace }}/metrics-app/ + ls -la ${{ github.workspace }}/metrics-app/javascript/src/ - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: name: react-application path: | ${{ github.workspace }}/metrics-app - build: - runs-on: ubuntu-latest - # We specify that deploys needs to - # finish before we create a release - needs: checkout - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - ref: 'deploy_changes' - - name: List files in the repository - run: | - ls ${{ github.workspace }} - # Download previously shared build - - name: Get artifact - uses: actions/download-artifact@v3 - with: - name: react-application - - name: List files in the repository - run: | - ls ${{ github.workspace }} - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: @@ -102,66 +81,88 @@ jobs: ls ${{ github.workspace }}/javascript/src - name: Create release branch run: git checkout -b ${{ env.RELEASE_ID }} - - name: Initialize mandatory git config - run: | - git config user.name "GitHub Actions" - git config user.email noreply@github.com - git push origin ${{ env.RELEASE_ID }} - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ env.RELEASE_ID }} - - name: Share artifact inside workflow - uses: actions/upload-artifact@v3 - with: - name: react-github-actions-build - path: | - ${{ github.workspace }}/javascript/build - ${{ github.workspace }}/app - ${{ github.workspace }}/requirements.txt - - run: echo "🍏 This job's status is ${{ job.status }}." - release: - runs-on: ubuntu-latest - # We specify that deploys needs to - # finish before we create a release - needs: build - steps: - # Download previously shared build - - name: Get artifact - uses: actions/download-artifact@v3 - with: - name: react-github-actions-build - # Zip the build using external action - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - name: Zip artifact for deployment - run: zip -r -qq react-github-actions-release-build.zip . - working-directory: ${{ github.workspace }} - # Upload as an artifact of the current workflow - - name: Upload build zip artifact - uses: actions/upload-artifact@v1 - with: - name: react-github-actions-release-build.zip - path: react-github-actions-release-build.zip - #Make official GitHub release which will trigger - #sending the mail with link for access - - name: Release - uses: ncipollo/release-action@v1 - with: - artifacts: react-github-actions-release-build.zip - body: Release for ${{ env.RELEASE_ID }} - token: ${{ secrets.GITHUB_TOKEN }} - tag: ${{ env.RELEASE_ID }} - - name: Create Release - uses: marvinpinto/action-automatic-releases@latest - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: ${{ env.RELEASE_ID }} - prerelease: false - files: | - react-github-actions-release-build.zip + # build: + # runs-on: ubuntu-latest + # # We specify that deploys needs to + # # finish before we create a release + # needs: checkout + # steps: + # - name: Checkout code + # uses: actions/checkout@v3 + # with: + # ref: 'deploy_changes' + # - name: List files in the repository + # run: | + # ls ${{ github.workspace }} + # # Download previously shared build + # - name: Get artifact + # uses: actions/download-artifact@v3 + # with: + # name: react-application + # - name: List files in the repository + # run: | + # ls ${{ github.workspace }} + + # - name: Initialize mandatory git config + # run: | + # git config user.name "GitHub Actions" + # git config user.email noreply@github.com + # git push origin ${{ env.RELEASE_ID }} + # - name: Push changes + # uses: ad-m/github-push-action@master + # with: + # github_token: ${{ secrets.GITHUB_TOKEN }} + # branch: ${{ env.RELEASE_ID }} + # - name: Share artifact inside workflow + # uses: actions/upload-artifact@v3 + # with: + # name: react-github-actions-build + # path: | + # ${{ github.workspace }}/javascript/build + # ${{ github.workspace }}/app + # ${{ github.workspace }}/requirements.txt + # - run: echo "🍏 This job's status is ${{ job.status }}." + # release: + # runs-on: ubuntu-latest + # # We specify that deploys needs to + # # finish before we create a release + # needs: build + # steps: + # # Download previously shared build + # - name: Get artifact + # uses: actions/download-artifact@v3 + # with: + # name: react-github-actions-build + # # Zip the build using external action + # - name: List files in the repository + # run: | + # ls ${{ github.workspace }} + # - name: Zip artifact for deployment + # run: zip -r -qq react-github-actions-release-build.zip . + # working-directory: ${{ github.workspace }} + # # Upload as an artifact of the current workflow + # - name: Upload build zip artifact + # uses: actions/upload-artifact@v1 + # with: + # name: react-github-actions-release-build.zip + # path: react-github-actions-release-build.zip + # #Make official GitHub release which will trigger + # #sending the mail with link for access + # - name: Release + # uses: ncipollo/release-action@v1 + # with: + # artifacts: react-github-actions-release-build.zip + # body: Release for ${{ env.RELEASE_ID }} + # token: ${{ secrets.GITHUB_TOKEN }} + # tag: ${{ env.RELEASE_ID }} + # - name: Create Release + # uses: marvinpinto/action-automatic-releases@latest + # with: + # repo_token: ${{ secrets.GITHUB_TOKEN }} + # automatic_release_tag: ${{ env.RELEASE_ID }} + # prerelease: false + # files: | + # react-github-actions-release-build.zip # playbook: # runs-on: ubuntu-latest # # We specify that deploys needs to From 8b76c35a587e2ae87d9a012357951b6cd3a922c1 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 12:01:57 +0200 Subject: [PATCH 074/331] fix push to branch [github-actions] --- .github/workflows/releases.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index fa7344c..eceb79d 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -70,15 +70,15 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install dependencies run: | - cd ${{ github.workspace }}/javascript; npm install + cd ${{ github.workspace }}/metrics-app/javascript; npm install - name: Build React application run: | - cd ${{ github.workspace }}/javascript; CI=false npm run build + cd ${{ github.workspace }}/metrics-app/javascript; CI=false npm run build # Share artifact inside workflow - name: List files in the repository run: | ls ${{ github.workspace }} - ls ${{ github.workspace }}/javascript/src + ls ${{ github.workspace }}/metrics-app/javascript/src - name: Create release branch run: git checkout -b ${{ env.RELEASE_ID }} # build: From e2cd3aec4ea3ea885c8490ee9e50d346ba7361e1 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 12:05:53 +0200 Subject: [PATCH 075/331] change directory before checkout to another branch [github-actions] --- .github/workflows/releases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index eceb79d..e357ba4 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -78,9 +78,9 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }} - ls ${{ github.workspace }}/metrics-app/javascript/src + - name: Create release branch - run: git checkout -b ${{ env.RELEASE_ID }} + run: cd ${{ github.workspace }}/metrics-app/; git checkout -b ${{ env.RELEASE_ID }} # build: # runs-on: ubuntu-latest # # We specify that deploys needs to From aa06a1aad29e15f5e5d9dd5eb7fe6206ca21f365 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 12:11:00 +0200 Subject: [PATCH 076/331] try to push branch to remote [github-actions] --- .github/workflows/releases.yml | 39 +++++++++++++++++----------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index e357ba4..b398adb 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -78,9 +78,26 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }} - - name: Create release branch run: cd ${{ github.workspace }}/metrics-app/; git checkout -b ${{ env.RELEASE_ID }} + - name: Initialize mandatory git config + run: | + git config user.name "GitHub Actions" + git config user.email noreply@github.com + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ env.RELEASE_ID }} + - name: Share artifact inside workflow + uses: actions/upload-artifact@v3 + with: + name: react-github-actions-build + path: | + ${{ github.workspace }}/javascript/build + ${{ github.workspace }}/app + ${{ github.workspace }}/requirements.txt + - run: echo "🍏 This job's status is ${{ job.status }}." # build: # runs-on: ubuntu-latest # # We specify that deploys needs to @@ -103,25 +120,7 @@ jobs: # run: | # ls ${{ github.workspace }} - # - name: Initialize mandatory git config - # run: | - # git config user.name "GitHub Actions" - # git config user.email noreply@github.com - # git push origin ${{ env.RELEASE_ID }} - # - name: Push changes - # uses: ad-m/github-push-action@master - # with: - # github_token: ${{ secrets.GITHUB_TOKEN }} - # branch: ${{ env.RELEASE_ID }} - # - name: Share artifact inside workflow - # uses: actions/upload-artifact@v3 - # with: - # name: react-github-actions-build - # path: | - # ${{ github.workspace }}/javascript/build - # ${{ github.workspace }}/app - # ${{ github.workspace }}/requirements.txt - # - run: echo "🍏 This job's status is ${{ job.status }}." + # release: # runs-on: ubuntu-latest # # We specify that deploys needs to From 37fcfd1205027ea9ab8398ff2134f54162ee33e6 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 12:16:06 +0200 Subject: [PATCH 077/331] try to push branch to remote [github-actions] --- .github/workflows/releases.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index b398adb..d49c8a0 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -81,11 +81,13 @@ jobs: - name: Create release branch run: cd ${{ github.workspace }}/metrics-app/; git checkout -b ${{ env.RELEASE_ID }} - name: Initialize mandatory git config + working-directory: ./metrics-app run: | git config user.name "GitHub Actions" git config user.email noreply@github.com - name: Push changes uses: ad-m/github-push-action@master + working-directory: ./metrics-app with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ env.RELEASE_ID }} @@ -94,9 +96,9 @@ jobs: with: name: react-github-actions-build path: | - ${{ github.workspace }}/javascript/build - ${{ github.workspace }}/app - ${{ github.workspace }}/requirements.txt + ${{ github.workspace }}/metrics-app/javascript/build + ${{ github.workspace }}/metrics-app/app + ${{ github.workspace }}/metrics-app/requirements.txt - run: echo "🍏 This job's status is ${{ job.status }}." # build: # runs-on: ubuntu-latest From 131803200c6b69c16e2fbcaa8bae318eb26140d2 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 12:19:04 +0200 Subject: [PATCH 078/331] try to push branch to remote [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index d49c8a0..8ad0fe1 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -87,10 +87,10 @@ jobs: git config user.email noreply@github.com - name: Push changes uses: ad-m/github-push-action@master - working-directory: ./metrics-app with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ env.RELEASE_ID }} + directory: ./metrics-app - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: From b671e72dc95dbc1940f8003afccb7c6ac4b1e5fb Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 12:24:36 +0200 Subject: [PATCH 079/331] try to create release from branch [github-actions] --- .github/workflows/releases.yml | 84 +++++++++++++++++----------------- 1 file changed, 41 insertions(+), 43 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 8ad0fe1..7f2ca9b 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -121,49 +121,47 @@ jobs: # - name: List files in the repository # run: | # ls ${{ github.workspace }} - - - # release: - # runs-on: ubuntu-latest - # # We specify that deploys needs to - # # finish before we create a release - # needs: build - # steps: - # # Download previously shared build - # - name: Get artifact - # uses: actions/download-artifact@v3 - # with: - # name: react-github-actions-build - # # Zip the build using external action - # - name: List files in the repository - # run: | - # ls ${{ github.workspace }} - # - name: Zip artifact for deployment - # run: zip -r -qq react-github-actions-release-build.zip . - # working-directory: ${{ github.workspace }} - # # Upload as an artifact of the current workflow - # - name: Upload build zip artifact - # uses: actions/upload-artifact@v1 - # with: - # name: react-github-actions-release-build.zip - # path: react-github-actions-release-build.zip - # #Make official GitHub release which will trigger - # #sending the mail with link for access - # - name: Release - # uses: ncipollo/release-action@v1 - # with: - # artifacts: react-github-actions-release-build.zip - # body: Release for ${{ env.RELEASE_ID }} - # token: ${{ secrets.GITHUB_TOKEN }} - # tag: ${{ env.RELEASE_ID }} - # - name: Create Release - # uses: marvinpinto/action-automatic-releases@latest - # with: - # repo_token: ${{ secrets.GITHUB_TOKEN }} - # automatic_release_tag: ${{ env.RELEASE_ID }} - # prerelease: false - # files: | - # react-github-actions-release-build.zip + release: + runs-on: ubuntu-latest + # We specify that deploys needs to + # finish before we create a release + needs: checkout + steps: + # Download previously shared build + - name: Get artifact + uses: actions/download-artifact@v3 + with: + name: react-github-actions-build + # Zip the build using external action + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - name: Zip artifact for deployment + run: zip -r -qq react-github-actions-release-build.zip . + working-directory: ${{ github.workspace }} + # Upload as an artifact of the current workflow + - name: Upload build zip artifact + uses: actions/upload-artifact@v1 + with: + name: react-github-actions-release-build.zip + path: react-github-actions-release-build.zip + #Make official GitHub release which will trigger + #sending the mail with link for access + # - name: Release + # uses: ncipollo/release-action@v1 + # with: + # artifacts: react-github-actions-release-build.zip + # body: Release for ${{ env.RELEASE_ID }} + # token: ${{ secrets.GITHUB_TOKEN }} + # tag: ${{ env.RELEASE_ID }} + - name: Create Release + uses: marvinpinto/action-automatic-releases@latest + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + automatic_release_tag: ${{ env.RELEASE_ID }} + prerelease: false + files: | + react-github-actions-release-build.zip # playbook: # runs-on: ubuntu-latest # # We specify that deploys needs to From f7becc0c3ca9f35814930783cc6876f9273637c0 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 13:41:24 +0200 Subject: [PATCH 080/331] try to create tar.gz release file asset [github-actions] --- .github/workflows/releases.yml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 7f2ca9b..9411ea0 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -136,15 +136,24 @@ jobs: - name: List files in the repository run: | ls ${{ github.workspace }} - - name: Zip artifact for deployment - run: zip -r -qq react-github-actions-release-build.zip . - working-directory: ${{ github.workspace }} + # - name: Zip artifact for deployment + # run: zip -r -qq react-github-actions-release-build.zip . + # working-directory: ${{ github.workspace }} + - name: Compress action step + uses: a7ul/tar-action@v1.1.0 + id: compress + with: + command: c + cwd: ${{ github.workspace }} + files: | + ./ + outPath: react-github-actions-release-build.tar.gz # Upload as an artifact of the current workflow - name: Upload build zip artifact uses: actions/upload-artifact@v1 with: - name: react-github-actions-release-build.zip - path: react-github-actions-release-build.zip + name: react-github-actions-release-build.tar.gz + path: react-github-actions-release-build.tar.gz #Make official GitHub release which will trigger #sending the mail with link for access # - name: Release From e334c3766c8dd1bcd6061076730aa71b9daa3571 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 13:47:28 +0200 Subject: [PATCH 081/331] try to create tar.gz release file asset [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 9411ea0..61d38f7 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -170,7 +170,7 @@ jobs: automatic_release_tag: ${{ env.RELEASE_ID }} prerelease: false files: | - react-github-actions-release-build.zip + react-github-actions-release-build.tar.gz # playbook: # runs-on: ubuntu-latest # # We specify that deploys needs to From 2263ec09bf9d9981a826cff5e5c35135e1f3bce2 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 13:54:41 +0200 Subject: [PATCH 082/331] try to create tar.gz release file asset [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 61d38f7..2e36951 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -146,7 +146,7 @@ jobs: command: c cwd: ${{ github.workspace }} files: | - ./ + ${{ github.workspace }} outPath: react-github-actions-release-build.tar.gz # Upload as an artifact of the current workflow - name: Upload build zip artifact From 00cf725217427962497557d622a8ea29eba449df Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 14:03:56 +0200 Subject: [PATCH 083/331] changes for fastapi --- app/main.py | 10 +++++++++- app/utils/configParser.py | 2 +- javascript/package.json | 3 ++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index 514a9de..d642fab 100644 --- a/app/main.py +++ b/app/main.py @@ -16,7 +16,15 @@ from app.models.idp_model import * from app.models.country_hashed_user_model import * -app = FastAPI(debug=True) +import os, sys +os.chdir("/srv/rciam-metrics-client/rciam-metrics") +sys.path.insert(0, "/srv/rciam-metrics-client/rciam-metrics") + +app = FastAPI(root_path="/api/v1", root_path_in_servers=False, servers= [ + { + "url": "/api/v1" + } +]) MembersReadWithCommunityInfo.update_forward_refs( Community_InfoRead=Community_InfoRead) diff --git a/app/utils/configParser.py b/app/utils/configParser.py index 2df7d19..aa2ac39 100644 --- a/app/utils/configParser.py +++ b/app/utils/configParser.py @@ -11,7 +11,7 @@ def getConfig(section='source_database'): print(sys.argv[0]) print(os.path.dirname(os.path.abspath(sys.argv[0]))) # read config file - parser.read(os.path.join('/app',CONFIG_FILE)) + parser.read(os.path.join('/srv/rciam-metrics-client/rciam-metrics', CONFIG_FILE)) # get section, default to source_database config = {} diff --git a/javascript/package.json b/javascript/package.json index 7df6243..251d72b 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -69,5 +69,6 @@ "last 1 firefox version", "last 1 safari version" ] - } + }, + "devDependencies": {} } From 457ecb49487d485837e32c0191c187ad4ee81597 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 14:12:52 +0200 Subject: [PATCH 084/331] try to create tar.gz release file asset [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 2e36951..b08be95 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -146,7 +146,7 @@ jobs: command: c cwd: ${{ github.workspace }} files: | - ${{ github.workspace }} + ${{ github.workspace }}/. outPath: react-github-actions-release-build.tar.gz # Upload as an artifact of the current workflow - name: Upload build zip artifact From ef329876c862ece9dbaa6fa32ba5bda60982e470 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 14:19:22 +0200 Subject: [PATCH 085/331] try to create tar.gz release file asset [github-actions] --- .github/workflows/releases.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index b08be95..bdfbd03 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -144,9 +144,11 @@ jobs: id: compress with: command: c - cwd: ${{ github.workspace }} + cwd: ./ files: | - ${{ github.workspace }}/. + ./app + ./javascript + ./requirements.txt outPath: react-github-actions-release-build.tar.gz # Upload as an artifact of the current workflow - name: Upload build zip artifact From 112239777c2cc3733d4e5e918b877ecaf3bd7860 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 14:25:08 +0200 Subject: [PATCH 086/331] try to create tar.gz release file asset [github-actions] --- .github/workflows/releases.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index bdfbd03..6997bab 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -146,9 +146,9 @@ jobs: command: c cwd: ./ files: | - ./app - ./javascript - ./requirements.txt + app/ + javascript/ + requirements.txt outPath: react-github-actions-release-build.tar.gz # Upload as an artifact of the current workflow - name: Upload build zip artifact From 04176bfead9689b005bf55cdb204c433da610981 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 15:27:07 +0200 Subject: [PATCH 087/331] try to deploy metrics [github-actions] --- .github/workflows/releases.yml | 44 +++++++++++++++++++++++++++------- 1 file changed, 36 insertions(+), 8 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 6997bab..7c7aef3 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -173,11 +173,39 @@ jobs: prerelease: false files: | react-github-actions-release-build.tar.gz - # playbook: - # runs-on: ubuntu-latest - # # We specify that deploys needs to - # # finish before we create a release - # #needs: release - # steps: - - \ No newline at end of file + deploy: + runs-on: ubuntu-latest + # We specify that deploys needs to + # finish before we create a release + needs: release + steps: + - name: Download playbook + uses: actions/checkout@v3 + with: + # Repository name with owner. For example, actions/checkout + # Default: ${{ github.repository }} + repository: 'lionick/rciam-deploy' + ref: 'rciam-metrics-role' + path: 'roles' + - name: Download inventory + uses: actions/checkout@v3 + with: + repository: 'lionick/rciam-deploy-inv' + ref: 'add_metrics_inv' + ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} + path: 'inventory' + - name: Run playbook (deploy rciam-metrics) + uses: dawidd6/action-ansible-playbook@v2 + with: + # Required, playbook filepath + playbook: metricsservers.yml + # Optional, directory where playbooks live + directory: ./roles + key: ${{ secrets.DEPLOY_READ_SECRET }} + # Optional, encrypted vault password + vault_password: ${{secrets.VAULT_PASSWORD}} + options: | + --inventory ${{ github.workspace }}/inventory/rciam-metrics-dev/hosts.ini + --tags rciam-metrics:config + -u debian + --extra-vars "metrics_latest_release=${{ env.RELEASE_ID }}" \ No newline at end of file From 5571691079c7f0bda9a6488755639a4d41a8a8ba Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Feb 2023 15:54:08 +0200 Subject: [PATCH 088/331] try to deploy metrics [github-actions] --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 7c7aef3..2958adf 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -194,7 +194,7 @@ jobs: ref: 'add_metrics_inv' ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} path: 'inventory' - - name: Run playbook (deploy rciam-metrics) + - name: Run playbook (deploy rciam-metrics) with release ${{ env.RELEASE_ID }} uses: dawidd6/action-ansible-playbook@v2 with: # Required, playbook filepath From 4c3a1115c959386deaa74dc910be7fa6aa9f2598 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 6 Feb 2023 09:37:07 +0200 Subject: [PATCH 089/331] add configuration for api url --- .github/workflows/releases.yml | 1 + javascript/src/utils/api/index.js | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 2958adf..ada0afc 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -55,6 +55,7 @@ jobs: - name: List files in the repository run: | ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files + cat ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. ls -la ${{ github.workspace }}/metrics-app/ ls -la ${{ github.workspace }}/metrics-app/javascript/src/ diff --git a/javascript/src/utils/api/index.js b/javascript/src/utils/api/index.js index 8802006..5a2ff87 100644 --- a/javascript/src/utils/api/index.js +++ b/javascript/src/utils/api/index.js @@ -1,7 +1,9 @@ import axios from "axios" - +import config from "./../../config_react.json"; +const getConfig = key => config["configReact"][key] +console.log(getConfig('apiUrl')) const client = axios.create({ - baseURL: "http://localhost:8004/", + baseURL: getConfig('apiUrl'), headers: { "Access-Control-Allow-Origin": "*", "Content-type": "application/json", @@ -20,4 +22,4 @@ const client = axios.create({ export { client -} \ No newline at end of file +} From 2888ef34db8b8d8e1cde790e9f9c0bf1e18c536b Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 6 Feb 2023 09:51:56 +0200 Subject: [PATCH 090/331] fix index.html --- javascript/public/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/javascript/public/index.html b/javascript/public/index.html index b018c6d..10b7a22 100644 --- a/javascript/public/index.html +++ b/javascript/public/index.html @@ -14,10 +14,9 @@ font-family: 'Roboto', sans-serif; } - Rciam Metrics 1222: + Rciam Metrics - asdasda
              From 9c20a54b32b416cc07d8272f038ef3e434cc7ce0 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 6 Feb 2023 10:28:58 +0200 Subject: [PATCH 091/331] minor fixes[github-actions] --- .github/workflows/releases.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index ada0afc..da90978 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -57,8 +57,6 @@ jobs: ls -la ${{ github.workspace }}/inventory/rciam-metrics-dev/files cat ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json mv ${{ github.workspace }}/inventory/rciam-metrics-dev/files/config_react.json ${{ github.workspace }}/metrics-app/javascript/src/. - ls -la ${{ github.workspace }}/metrics-app/ - ls -la ${{ github.workspace }}/metrics-app/javascript/src/ - name: Share artifact inside workflow uses: actions/upload-artifact@v3 with: From 3f1e38abb13d7a3614f4496ca686e92f9470514d Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 7 Feb 2023 09:26:20 +0200 Subject: [PATCH 092/331] run workflow only for devel --- .github/workflows/releases.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index da90978..1e5919d 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -1,6 +1,9 @@ -name: GitHub Actions Demo -run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 -on: [push] +name: CI at Devel Branch +run-name: ${{ github.actor }} is deploying at devel branch 🚀 +on: + push: + branches: + - devel env: RELEASE_ID: rc-${{ github.run_id }} jobs: From 71dc247e66b31969eadf9d0d5c2b8d5c5d9f523b Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 7 Feb 2023 10:21:26 +0200 Subject: [PATCH 093/331] make directories dynamic --- .github/workflows/releases.yml | 38 +--------------------------------- app/main.py | 36 +++++++++++++++++--------------- app/utils/configParser.py | 3 ++- 3 files changed, 22 insertions(+), 55 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 1e5919d..9ad4ba8 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -4,6 +4,7 @@ on: push: branches: - devel + - deploy_changes env: RELEASE_ID: rc-${{ github.run_id }} jobs: @@ -102,27 +103,6 @@ jobs: ${{ github.workspace }}/metrics-app/app ${{ github.workspace }}/metrics-app/requirements.txt - run: echo "🍏 This job's status is ${{ job.status }}." - # build: - # runs-on: ubuntu-latest - # # We specify that deploys needs to - # # finish before we create a release - # needs: checkout - # steps: - # - name: Checkout code - # uses: actions/checkout@v3 - # with: - # ref: 'deploy_changes' - # - name: List files in the repository - # run: | - # ls ${{ github.workspace }} - # # Download previously shared build - # - name: Get artifact - # uses: actions/download-artifact@v3 - # with: - # name: react-application - # - name: List files in the repository - # run: | - # ls ${{ github.workspace }} release: runs-on: ubuntu-latest # We specify that deploys needs to @@ -134,13 +114,6 @@ jobs: uses: actions/download-artifact@v3 with: name: react-github-actions-build - # Zip the build using external action - - name: List files in the repository - run: | - ls ${{ github.workspace }} - # - name: Zip artifact for deployment - # run: zip -r -qq react-github-actions-release-build.zip . - # working-directory: ${{ github.workspace }} - name: Compress action step uses: a7ul/tar-action@v1.1.0 id: compress @@ -158,15 +131,6 @@ jobs: with: name: react-github-actions-release-build.tar.gz path: react-github-actions-release-build.tar.gz - #Make official GitHub release which will trigger - #sending the mail with link for access - # - name: Release - # uses: ncipollo/release-action@v1 - # with: - # artifacts: react-github-actions-release-build.zip - # body: Release for ${{ env.RELEASE_ID }} - # token: ${{ secrets.GITHUB_TOKEN }} - # tag: ${{ env.RELEASE_ID }} - name: Create Release uses: marvinpinto/action-automatic-releases@latest with: diff --git a/app/main.py b/app/main.py index d642fab..c27ea22 100644 --- a/app/main.py +++ b/app/main.py @@ -17,15 +17,14 @@ from app.models.country_hashed_user_model import * import os, sys -os.chdir("/srv/rciam-metrics-client/rciam-metrics") -sys.path.insert(0, "/srv/rciam-metrics-client/rciam-metrics") +sys.path.insert(0, os.path.realpath('__file__')) app = FastAPI(root_path="/api/v1", root_path_in_servers=False, servers= [ { "url": "/api/v1" } ]) - +# app = FastAPI() MembersReadWithCommunityInfo.update_forward_refs( Community_InfoRead=Community_InfoRead) CommunityReadwithInfo.update_forward_refs( @@ -43,15 +42,15 @@ ) -@app.get("/communities/", response_model=List[CommunityReadwithInfo]) -def read_communities( - *, - session: Session = Depends(get_session), - offset: int = 0 -): +# @app.get("/communities/", response_model=List[CommunityReadwithInfo]) +# def read_communities( +# *, +# session: Session = Depends(get_session), +# offset: int = 0 +# ): - communities = session.exec(select(Community).offset(offset)).all() - return communities +# communities = session.exec(select(Community).offset(offset)).all() +# return communities @app.get("/communities_groupby/{group_by}") @@ -97,20 +96,23 @@ def read_communities( return communities -@app.get("/communities/{community_id}") +@app.get("/communities/") def read_community( *, session: Session = Depends(get_session), - community_id: int, + community_id: Union[None, int] = None, tenant_id: int): + sql_subquery = '' + if community_id: + sql_subquery = 'id={0} and'.format(community_id) community = session.exec(""" - SELECT * FROM community_info WHERE id={0} and tenant_id={1} - """.format(community_id,tenant_id)).all() + SELECT * FROM community_info WHERE {0} tenant_id={1} + """.format(sql_subquery,tenant_id)).all() # statement = select(Community).options(selectinload(Community.community_info)) # result = session.exec(statement) # community = result.one() - if not community: - raise HTTPException(status_code=404, detail="Community not found") + # if not community: + # raise HTTPException(status_code=404, detail="Community not found") return community @app.get("/communities_info/", response_model=List[Community_InfoRead]) diff --git a/app/utils/configParser.py b/app/utils/configParser.py index aa2ac39..9edfd3c 100644 --- a/app/utils/configParser.py +++ b/app/utils/configParser.py @@ -11,7 +11,8 @@ def getConfig(section='source_database'): print(sys.argv[0]) print(os.path.dirname(os.path.abspath(sys.argv[0]))) # read config file - parser.read(os.path.join('/srv/rciam-metrics-client/rciam-metrics', CONFIG_FILE)) + file_dir = os.path.dirname(os.path.realpath('__file__')) + parser.read(os.path.join(file_dir, CONFIG_FILE)) # get section, default to source_database config = {} From 36c117be0fc70394b8557a2075f3883070e3fa33 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 7 Feb 2023 10:28:40 +0200 Subject: [PATCH 094/331] minor fix --- javascript/src/components/Communities/communitiesMap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/src/components/Communities/communitiesMap.js b/javascript/src/components/Communities/communitiesMap.js index 93994bc..55b716a 100644 --- a/javascript/src/components/Communities/communitiesMap.js +++ b/javascript/src/components/Communities/communitiesMap.js @@ -30,7 +30,7 @@ const CommunitiesMap = (parameters) => { }).then(response => { response["data"].forEach(element => { - var community = { label: element.community_info.name, value: element.community_id } + var community = { label: element.name, value: element.id } communitiesArray.push(community) }) From 2179dbfe65aaeb5503422bdabb863dc51a6cda5c Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 9 Feb 2023 10:16:49 +0200 Subject: [PATCH 095/331] add header and footer at Dashboard page --- javascript/app/public/index.html | 6 - javascript/package.json | 1 + javascript/src/App.jsx | 10 +- javascript/src/Pages/Dashboard/index.js | 6 +- javascript/src/app.css | 323 +++++++++++++++++- javascript/src/components/Common/footer.js | 61 ++++ javascript/src/components/Common/header.js | 49 +++ .../components/Dashboard/loginLineChart.js | 4 +- javascript/src/config_react.json | 15 + javascript/src/utils/api/index.js | 2 +- 10 files changed, 458 insertions(+), 19 deletions(-) create mode 100644 javascript/src/components/Common/footer.js create mode 100644 javascript/src/components/Common/header.js create mode 100644 javascript/src/config_react.json diff --git a/javascript/app/public/index.html b/javascript/app/public/index.html index 10b7a22..961bae3 100644 --- a/javascript/app/public/index.html +++ b/javascript/app/public/index.html @@ -8,12 +8,6 @@ - Rciam Metrics diff --git a/javascript/package.json b/javascript/package.json index 251d72b..c5f5a93 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -25,6 +25,7 @@ "datatables.net-buttons-dt": "^2.3.3", "datatables.net-dt": "^1.13.1", "dateformat": "^5.0.3", + "html-react-parser": "^3.0.8", "jquery": "^3.6.1", "jquery-mapael": "^2.2.0", "moment": "^2.29.3", diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index 0c67d6c..2bb1573 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -1,4 +1,3 @@ -import "./app.css"; import {BrowserRouter as Router, Routes, Route} from "react-router-dom"; import Login from "./Pages/Login"; import Register from "./Pages/Register"; @@ -7,8 +6,9 @@ import {QueryClient, QueryClientProvider} from 'react-query' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; import Dashboard from "./Pages/Dashboard"; -// import Idps from "./Pages/Idps"; -// import Sps from "./Pages/Sps"; +import Idps from "./Pages/Idps"; +import Sps from "./Pages/Sps"; +import "./app.css"; function App() { // const queryClient = new QueryClient() @@ -29,8 +29,8 @@ function App() { }/> }/> }/> - {/* }/> - }/> */} + }/> + }/> {/* */} diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index b6b4577..37f845b 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -8,6 +8,8 @@ import LoginLineChart from "../../components/Dashboard/loginLineChart"; // import LoginsMap from "../../components/Dashboard/loginsMap"; // import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; +import Header from "../../components/Common/header"; +import Footer from "../../components/Common/footer"; // import IdpModal from "../Idps/idpModal"; const Dashboard = () => { @@ -28,7 +30,8 @@ const Dashboard = () => { return else return ( -

              Dashboard

              +
              +

              Dashboard

              {/* @@ -37,6 +40,7 @@ const Dashboard = () => { */} {/* */} +
              ) } diff --git a/javascript/src/app.css b/javascript/src/app.css index aefb002..430623d 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -1,8 +1,314 @@ -.app { - /* display: flex; */ +a { + text-decoration: none; +} +body { + color: #212529; + font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + text-align: left; +} + +body .nav-header { + color: #4b4b4b; + font-size: 15px; + font-weight: 300; +} + +.tenant_logo_container, .ssp-footer { + flex: none; +} + +.tenant_logo_container .ssp-logo { + margin-top: 10px; +} + +.tenant_logo_container .ssp-logo a { + display: inline-block; + padding: 10px; +} + +.tenant_logo_container .ssp-logo img { + max-height: 60px; +} + +.tenant_logo_container h1 { + font-family: 'Open Sans', sans-serif; + font-weight: 300; + font-size: 26px; + text-transform: none !important; + color: #5b5b5b; +} + +/* Development Banner */ + +.noty-top-global { + display: flex; + justify-content: space-between; + align-items: center; + width: 100%; + z-index: 2000; + padding: 0.5em; +} + +.noty-top-global svg { + margin-right: 0.5rem; +} + +.noty-top-info { + color: #00529B; + background-color: #BDE5F8; +} + +.noty-top-info, .noty-top-success, .noty-top-warning, .noty-top-error { + border-bottom: 1px solid; +} + +.noty-top-error { + color: #D8000C; + background-color: #FFBABA; +} + +.noty-top-warning { + color: #9F6000; + background-color: #FEEFB3; +} + +.link-button { + color: #774b08; + background-color: transparent; + border: none; + cursor: pointer; + text-decoration: underline; + display: inline; + margin: 0; + padding: 0; +} + +.link-button:hover { + opacity: 0.7; +} + +/* Navbar */ + +.navbar-fixed-top { + z-index: 30!important; +} + +.navbar-fixed-top, .navbar-fixed-bottom { + position: inherit; + right: 0; + left: 0; + z-index: 1030; + margin-bottom: 0; +} + +.navbar-fixed-top .navbar-inner { + border: 0 none; + box-shadow: none; + background: transparent; +} + +.drop-menu a { + font:300 13px / 23px 'Manrope' !important; + padding:0.2rem 1rem!important; + } + +.drop-menu a svg { + margin-left: 0.2rem; +} + +.drop-container-header .dropdown-menu { + font-size: 4rem!important; +} + +.drop-container-header .dropdown-menu a { + padding:0.3rem 1rem!important; + font-size:1rem!important; +} + +.log-button { + color: rgb(89, 154, 219)!important; + border-color: rgb(89, 154, 219)!important; + padding: .2rem .75rem!important; +} + +.log-button:hover { + color:white!important; +} + +/* General */ + +.text-center { + text-align: center; +} + +/* Footer */ + +.navbar .container { + width: 100%; + max-width: 100%; +} + +.ssp-footer--container { + padding: 12px 18px 0.5rem; +} + +.ssp-footer__item { + min-height: 60px; +} +.ssp-footer__item { + font-size: 12px; + letter-spacing: 1px; + display: table-cell; + vertical-align: bottom!important; +} + +#footer { + background: #fff; + color: #000; + font-family: "Helvetica Neue"; + font-weight: 300; + overflow: hidden; + padding: 0 30px 15px; + text-align: center; + min-height: 80px; +} + +#footer a { + color: #0a559c; + text-decoration: none; +} + +#footer a:hover { + text-decoration: underline; +} + +#footer .ssp-footer__item { + min-height: 40px; + font-size: 12px; + display: table-cell; + vertical-align: bottom!important; +} + +.ssp-footer__item { + display: table-cell; + vertical-align: bottom!important; +} + +#footer .ssp-footer__item__logo { + height: 40px; +} + +#footer .ssp-footer__item__powered { + display: table-cell; + vertical-align: bottom; +} + +.ssp-footer__item__powered { + margin-top: .5rem; + position: relative; +} + +#footer .powered { + display: table; +} + +#footer * { + font-size: 14px; +} + +#footer .row { + padding: 8px; +} + +.ssp-footer__item__logo { + height: 40px; +} + +.ssp-footer__item--links a{ + margin-right: 12px; + display: inline-block; + line-height: 50px; + vertical-align: baseline; +} + +.ssp-footer__item__logo--eu { + height: 30px; + margin-left: 12px; +} + +#footer .col-images a:hover { + text-decoration: none; +} + +@media screen and (max-width: 768px ) { + .ssp-footer__item--links { + text-align: center; + margin: 0 6px; + } +} + +.dropup .caret, .navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px dashed; + border-bottom: 4px solid \9; + content: ""; +} + +.ssp-footer__item__lang .dropdown-toggle::after { + content:none!important; +} +.ssp-footer__item__lang { + width:100%; + text-align: center; +} + +.ssp-btn { + letter-spacing: 1px; + font-size: 11px; + padding: 15px 18px; + line-height: 1.4; + border: 1px solid; + border-top-color: currentcolor; + border-right-color: currentcolor; + border-bottom-color: currentcolor; + border-left-color: currentcolor; + border-radius: 0; + margin: 6px 2px; + white-space: normal; +} + +.footer-logo-container{ + /* position:absolute; */ + bottom:0; + width:100%; + text-align:center; +} + +.footer_link_container { + height: 100%; + float:right; + text-align: center; + width:100%; +} + +.copyright-funding-footer { + text-align: center; + margin-top: 0.5rem; + letter-spacing:0.03rem; +} + +#dropdown-button-drop-up { + text-align: center; +} + +/* .app { + align-items: center; justify-content: center; - /* height: 100vh; */ + background: linear-gradient( rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3) @@ -10,7 +316,7 @@ url("https://images.pexels.com/photos/114979/pexels-photo-114979.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500"); background-size: cover; background-position: center; -} +} */ form { background-color: white; @@ -162,6 +468,15 @@ button.reg-form { padding-bottom: 24px; border-bottom: 1px solid #ccc; } +#reactgooglegraph-1 { + height:350px!important; +} +#googlechart-control-0-1 { + height:50px; +} +footer { + padding-top: 1em; +} @keyframes lds-dual-ring { 0% { transform: rotate(0deg); diff --git a/javascript/src/components/Common/footer.js b/javascript/src/components/Common/footer.js new file mode 100644 index 0000000..f4dbde2 --- /dev/null +++ b/javascript/src/components/Common/footer.js @@ -0,0 +1,61 @@ +import React, { useState, useEffect } from 'react'; +import { useParams } from "react-router-dom"; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import Image from 'react-bootstrap/Image'; +import Col from 'react-bootstrap/Col'; +import Row from 'react-bootstrap/Row'; +import Navbar from 'react-bootstrap/Navbar'; +import { faUser, faUserShield, faSignOutAlt } from '@fortawesome/free-solid-svg-icons'; +import DropdownButton from 'react-bootstrap/DropdownButton'; +import Dropdown from 'react-bootstrap/Dropdown'; +import parse from 'html-react-parser'; +import config from "./../../config_react.json"; + +const Footer = (props) => { + const { project, environment } = useParams(); + const getConfig = key => config[project + "_" + environment][key] + return ( +
              +
              + +
              +
              + + { props.changeLanguage(e) }} className="ssp-btn btn ssp-btn__footer dropdown-toggle" id='dropdown-button-drop-up' key="up" title={ {props.lang === 'en' ? 'English' : 'Greek'}} drop="up" variant="link"> + English + Greek + +
              + + +
              + + + +
              + Copyright ©2023
              +
              + + +
              + + +
              + + + +
              + {getConfig("config") && getConfig("config")["footer_description"] && parse(getConfig("config")["footer_description"])} | Powered by RCIAM +
              +
              + + + + ) +} + +export default Footer \ No newline at end of file diff --git a/javascript/src/components/Common/header.js b/javascript/src/components/Common/header.js new file mode 100644 index 0000000..8d9dab9 --- /dev/null +++ b/javascript/src/components/Common/header.js @@ -0,0 +1,49 @@ +import React, { useState, useEffect } from 'react'; +import { useParams } from "react-router-dom"; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import Image from 'react-bootstrap/Image'; +import NavbarTop from 'react-bootstrap/Navbar'; +import { faUser, faUserShield, faSignOutAlt } from '@fortawesome/free-solid-svg-icons'; +import config from "./../../config_react.json"; + +const Header = (props) => { + + const [bannerAlertInfo, setBannerAlertInfo] = useState([]); + const { project, environment } = useParams(); + console.log(project) + const getConfig = key => config[project + "_" + environment][key] + + console.log(getConfig("config")["logo_url"]) + useEffect(() => { + setBannerAlertInfo(props.bannerAlertInfo); + }, [props.bannerAlertInfo]) + + return ( +
              + {bannerAlertInfo && bannerAlertInfo[0] && +
              +
              + {parse(bannerAlertInfo[0].alert_message)} +
              + +
              + } + {/* { 0} />} */} + +
              +
              + + + +
              +

              + {getConfig("config")["home_page_title"]} +

              +
              +
              + ); +} + +export default Header \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginLineChart.js b/javascript/src/components/Dashboard/loginLineChart.js index 957c378..c7993f0 100644 --- a/javascript/src/components/Dashboard/loginLineChart.js +++ b/javascript/src/components/Dashboard/loginLineChart.js @@ -90,7 +90,7 @@ const LoginLineChart = ({ type, identifier, tenantId }) => { { ui: { chartType: "LineChart", chartOptions: { - chartArea: { width: "95%", height: "40%" }, + chartArea: { width: "95%", height: "100%" }, hAxis: { baselineColor: "none" }, }, }, diff --git a/javascript/src/config_react.json b/javascript/src/config_react.json new file mode 100644 index 0000000..8b6376e --- /dev/null +++ b/javascript/src/config_react.json @@ -0,0 +1,15 @@ +{ + "configReact": { + "apiUrl": "http://localhost:8004/" + }, + + "egi_devel": { + "config":{ + "website_url": "https://www.egi.eu/", + "logo_url": "https://aai-dev.egi.eu/proxy/module.php/themeegi/resources/images/logo.svg", + "home_page_title": "EGI Metrics (Development)", + "contact": "faai@grnet.gr", + "footer_description" : "Copyright ©2016-2022 | Check-in is an EGI service provided by GRNET, receiving funding from the EGI Foundation (EGI.eu) and the EGI-ACE project (Horizon 2020) under Grant number 101017567" + } + } +} \ No newline at end of file diff --git a/javascript/src/utils/api/index.js b/javascript/src/utils/api/index.js index 5a2ff87..98559fb 100644 --- a/javascript/src/utils/api/index.js +++ b/javascript/src/utils/api/index.js @@ -1,7 +1,7 @@ import axios from "axios" import config from "./../../config_react.json"; const getConfig = key => config["configReact"][key] -console.log(getConfig('apiUrl')) + const client = axios.create({ baseURL: getConfig('apiUrl'), headers: { From 705db3fcf985e4701d7b03a29f763b812a4c54b1 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 9 Feb 2023 10:21:07 +0200 Subject: [PATCH 096/331] minor fix --- javascript/src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index 2bb1573..810b7da 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -29,8 +29,8 @@ function App() { }/> }/> }/> - }/> - }/> + {/* }/> + }/> */} {/* */} From 27d9006f60be929eb819d7d5553d4ac31e6f26ce Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 9 Feb 2023 10:27:15 +0200 Subject: [PATCH 097/331] fix errors --- javascript/src/components/Common/footer.js | 2 +- javascript/src/components/Common/header.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/javascript/src/components/Common/footer.js b/javascript/src/components/Common/footer.js index f4dbde2..3c10c32 100644 --- a/javascript/src/components/Common/footer.js +++ b/javascript/src/components/Common/footer.js @@ -5,7 +5,7 @@ import Image from 'react-bootstrap/Image'; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; import Navbar from 'react-bootstrap/Navbar'; -import { faUser, faUserShield, faSignOutAlt } from '@fortawesome/free-solid-svg-icons'; + import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; import parse from 'html-react-parser'; diff --git a/javascript/src/components/Common/header.js b/javascript/src/components/Common/header.js index 8d9dab9..798fde3 100644 --- a/javascript/src/components/Common/header.js +++ b/javascript/src/components/Common/header.js @@ -4,6 +4,8 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Image from 'react-bootstrap/Image'; import NavbarTop from 'react-bootstrap/Navbar'; import { faUser, faUserShield, faSignOutAlt } from '@fortawesome/free-solid-svg-icons'; +import {faTimes} from '@fortawesome/free-solid-svg-icons'; +import parse from 'html-react-parser'; import config from "./../../config_react.json"; const Header = (props) => { From 96795f7a973f1323465b1887325cdae1effd176c Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 9 Feb 2023 10:30:42 +0200 Subject: [PATCH 098/331] minor fixes --- javascript/src/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index 810b7da..c816cea 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -6,8 +6,8 @@ import {QueryClient, QueryClientProvider} from 'react-query' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; import Dashboard from "./Pages/Dashboard"; -import Idps from "./Pages/Idps"; -import Sps from "./Pages/Sps"; +// import Idps from "./Pages/Idps"; +// import Sps from "./Pages/Sps"; import "./app.css"; function App() { From 79f07edddc974d0986e260972b8b64b8b37eb839 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 9 Feb 2023 10:43:48 +0200 Subject: [PATCH 099/331] minor fixes --- javascript/src/App.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index c816cea..5857ca8 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -12,7 +12,6 @@ import "./app.css"; function App() { // const queryClient = new QueryClient() - return ( {/* */} From 01cf48ac830012ead8a82b44a8331e95a637faf3 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 9 Feb 2023 14:05:41 +0200 Subject: [PATCH 100/331] formating file --- javascript/src/components/Common/footer.js | 5 +++-- javascript/src/public/index.html | 8 +------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/javascript/src/components/Common/footer.js b/javascript/src/components/Common/footer.js index 3c10c32..1a08718 100644 --- a/javascript/src/components/Common/footer.js +++ b/javascript/src/components/Common/footer.js @@ -33,13 +33,14 @@ const Footer = (props) => {
              - Copyright ©2023
              + Copyright ©2023 +
              Documentation diff --git a/javascript/src/public/index.html b/javascript/src/public/index.html index 05f3a03..961bae3 100644 --- a/javascript/src/public/index.html +++ b/javascript/src/public/index.html @@ -8,13 +8,7 @@ - - Rciam Metrics 1 + Rciam Metrics From 10fbd3be6f1c2bc432bc8b8333dca0dee550fc6a Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 13 Feb 2023 09:07:11 +0200 Subject: [PATCH 101/331] add footer, login button, translation functionality --- javascript/package.json | 5 ++ javascript/src/App.jsx | 46 ++++++------ javascript/src/Pages/Communities/index.js | 4 ++ javascript/src/Pages/Users/index.js | 5 +- javascript/src/app.css | 12 +++- javascript/src/components/Common/context.js | 4 ++ javascript/src/components/Common/footer.js | 20 ++++-- javascript/src/components/Common/header.js | 8 +-- javascript/src/components/Common/i18n.js | 32 +++++++++ javascript/src/components/Common/navbarTop.js | 71 +++++++++++++++++++ javascript/src/index.js | 2 +- 11 files changed, 177 insertions(+), 32 deletions(-) create mode 100644 javascript/src/components/Common/context.js create mode 100644 javascript/src/components/Common/i18n.js create mode 100644 javascript/src/components/Common/navbarTop.js diff --git a/javascript/package.json b/javascript/package.json index c5f5a93..9c67418 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -26,18 +26,23 @@ "datatables.net-dt": "^1.13.1", "dateformat": "^5.0.3", "html-react-parser": "^3.0.8", + "i18next": "^22.4.9", + "i18next-browser-languagedetector": "^7.0.1", + "i18next-http-backend": "^2.1.1", "jquery": "^3.6.1", "jquery-mapael": "^2.2.0", "moment": "^2.29.3", "pdfmake": "^0.2.6", "react": "^18.1.0", "react-bootstrap": "^2.6.0", + "react-cookie": "^4.1.1", "react-date-picker": "^8.4.0", "react-datepicker": "^4.8.0", "react-dom": "^18.1.0", "react-dropdown": "^1.11.0", "react-google-charts": "^4.0.0", "react-hook-form": "^7.31.1", + "react-i18next": "^12.1.5", "react-query": "^3.39.0", "react-router-dom": "^6.3.0", "react-scripts": "5.0.1", diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index 5857ca8..b3f0b1d 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -1,3 +1,4 @@ +import { useState, useContext, useEffect } from "react"; import {BrowserRouter as Router, Routes, Route} from "react-router-dom"; import Login from "./Pages/Login"; import Register from "./Pages/Register"; @@ -9,30 +10,35 @@ import Dashboard from "./Pages/Dashboard"; // import Idps from "./Pages/Idps"; // import Sps from "./Pages/Sps"; import "./app.css"; +import { languageContext } from "./components/Common/context"; function App() { // const queryClient = new QueryClient() + const [language,setLanguage]= useState('en'); + return ( - - {/* */} - - {/* }/> */} - {/* }/> */} - {/* }/> */} - {/* }/> */} - {/* }/> - }/> - }/> - - }/> */} - }/> - }/> - }/> - {/* }/> - }/> */} - - {/* */} - + + + {/* */} + + {/* }/> */} + {/* }/> */} + {/* }/> */} + {/* }/> */} + {/* }/> + }/> + }/> + + }/> */} + }/> + }/> + }/> + {/* }/> + }/> */} + + {/* */} + + ); } diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index 713550f..6a9ccd0 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -5,6 +5,8 @@ import Container from "react-bootstrap/Container"; import CommunitiesChart from "../../components/Communities/communitiesChart"; import CommunitiesDataTable from "../../components/Communities/communitiesDataTable"; import CommunitiesMap from "../../components/Communities/communitiesMap"; +import Header from "../../components/Common/header"; +import Footer from "../../components/Common/footer"; const Communities = () => { const {project, environment } = useParams(); @@ -21,10 +23,12 @@ const Communities = () => { if (tenantId == 0) return else return ( +

              Communities

              +
              ) } diff --git a/javascript/src/Pages/Users/index.js b/javascript/src/Pages/Users/index.js index 694c4b1..bd8b2f2 100644 --- a/javascript/src/Pages/Users/index.js +++ b/javascript/src/Pages/Users/index.js @@ -6,6 +6,8 @@ import RegisteredUsersChart from "../../components/Users/registeredUsersChart"; import RegisteredUsersDataTable from "../../components/Users/registeredUsersDataTable"; import RegisteredUsersMap from "../../components/Users/registeredUsersMap"; import RegisteredUsersTiles from "../../components/Users/registeredUsersTiles"; +import Header from "../../components/Common/header"; +import Footer from "../../components/Common/footer"; const Users = () => { @@ -24,12 +26,13 @@ const Users = () => { if (tenantId == 0) return else return ( +

              Users

              - +
              ) } diff --git a/javascript/src/app.css b/javascript/src/app.css index 430623d..757d0e9 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -253,10 +253,20 @@ body .nav-header { .dropup .caret, .navbar-fixed-bottom .dropdown .caret { border-top: 0; border-bottom: 4px dashed; - border-bottom: 4px solid \9; + content: ""; } +.caret { + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 4px dashed; + display: inline-block; + height: 0; + margin-left: 2px; + vertical-align: middle; + width: 0; +} .ssp-footer__item__lang .dropdown-toggle::after { content:none!important; } diff --git a/javascript/src/components/Common/context.js b/javascript/src/components/Common/context.js new file mode 100644 index 0000000..aa34ac6 --- /dev/null +++ b/javascript/src/components/Common/context.js @@ -0,0 +1,4 @@ +import React from 'react'; + +export const userContext = React.createContext(); +export const languageContext = React.createContext(); \ No newline at end of file diff --git a/javascript/src/components/Common/footer.js b/javascript/src/components/Common/footer.js index 1a08718..a3837ef 100644 --- a/javascript/src/components/Common/footer.js +++ b/javascript/src/components/Common/footer.js @@ -1,4 +1,4 @@ -import React, { useState, useEffect } from 'react'; +import React, { useState, useEffect, useContext } from 'react'; import { useParams } from "react-router-dom"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Image from 'react-bootstrap/Image'; @@ -10,19 +10,29 @@ import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; import parse from 'html-react-parser'; import config from "./../../config_react.json"; +import { languageContext } from './context'; +import { useTranslation } from 'react-i18next'; const Footer = (props) => { + const [language,setLanguage] = useContext(languageContext) const { project, environment } = useParams(); const getConfig = key => config[project + "_" + environment][key] + const { t, i18n } = useTranslation(); + console.log(language) return (
              - - { props.changeLanguage(e) }} className="ssp-btn btn ssp-btn__footer dropdown-toggle" id='dropdown-button-drop-up' key="up" title={ {props.lang === 'en' ? 'English' : 'Greek'}} drop="up" variant="link"> - English + { setLanguage(e); i18n.changeLanguage(e) }} + className="ssp-btn btn ssp-btn__footer dropdown-toggle" + id='dropdown-button-drop-up' key="up" + title={ + + {language === 'en' ? 'English' : 'Greek'} + } drop="up" variant="link"> + English Greek
              @@ -43,7 +53,7 @@ const Footer = (props) => { Contact us diff --git a/javascript/src/components/Common/header.js b/javascript/src/components/Common/header.js index 798fde3..ba43808 100644 --- a/javascript/src/components/Common/header.js +++ b/javascript/src/components/Common/header.js @@ -2,17 +2,17 @@ import React, { useState, useEffect } from 'react'; import { useParams } from "react-router-dom"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Image from 'react-bootstrap/Image'; -import NavbarTop from 'react-bootstrap/Navbar'; import { faUser, faUserShield, faSignOutAlt } from '@fortawesome/free-solid-svg-icons'; import {faTimes} from '@fortawesome/free-solid-svg-icons'; import parse from 'html-react-parser'; import config from "./../../config_react.json"; +import NavbarTop from './navbarTop'; + const Header = (props) => { const [bannerAlertInfo, setBannerAlertInfo] = useState([]); const { project, environment } = useParams(); - console.log(project) const getConfig = key => config[project + "_" + environment][key] console.log(getConfig("config")["logo_url"]) @@ -32,8 +32,8 @@ const Header = (props) => { } - {/* { 0} />} */} - + 0} /> +
              diff --git a/javascript/src/components/Common/i18n.js b/javascript/src/components/Common/i18n.js new file mode 100644 index 0000000..fa07b5b --- /dev/null +++ b/javascript/src/components/Common/i18n.js @@ -0,0 +1,32 @@ +import i18n from 'i18next'; +import { initReactI18next } from 'react-i18next'; + +import Backend from 'i18next-http-backend'; +import LanguageDetector from 'i18next-browser-languagedetector'; +// don't want to use this? +// have a look at the Quick start guide +// for passing in lng and translations on init + +i18n + // load translation using http -> see /public/locales (i.e. https://github.com/i18next/react-i18next/tree/master/example/react/public/locales) + // learn more: https://github.com/i18next/i18next-http-backend + // want your translations to be loaded from a professional CDN? => https://github.com/locize/react-tutorial#step-2---use-the-locize-cdn + .use(Backend) + // detect user language + // learn more: https://github.com/i18next/i18next-browser-languageDetector + .use(LanguageDetector) + // pass the i18n instance to react-i18next. + .use(initReactI18next) + // init i18next + // for all options read: https://www.i18next.com/overview/configuration-options + .init({ + fallbackLng: 'en', + debug: true, + + interpolation: { + escapeValue: false, // not needed for react as it escapes by default + } + }); + + +export default i18n; \ No newline at end of file diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js new file mode 100644 index 0000000..f9e6ed4 --- /dev/null +++ b/javascript/src/components/Common/navbarTop.js @@ -0,0 +1,71 @@ +import React,{useState,useEffect,useContext} from 'react'; +//import {useHistory} from "react-router-dom"; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import {faUser,faUserShield, faSignOutAlt} from '@fortawesome/free-solid-svg-icons'; +import Navbar from 'react-bootstrap/Navbar'; +import Button from 'react-bootstrap/Button'; +import { userContext } from './context'; +import { useTranslation } from 'react-i18next'; +import { useCookies } from 'react-cookie'; +import { useParams } from "react-router-dom"; +import config from "./../../config_react.json"; +const NavbarTop = (props)=>{ + //const history = useHistory(); + // eslint-disable-next-line + + const user = useContext(userContext); + // eslint-disable-next-line + const { t, i18n } = useTranslation(); + //const tenant = useContext(tenantContext); + const [cookies] = useCookies(['metrics_logoutkey']); + const { project, environment } = useParams(); + const getConfig = key => config[project + "_" + environment][key] + console.log(getConfig("config")["theme_color"]+project) + return ( + + {getConfig("config") && getConfig("config")["theme_color"]&& + + + {user? + + + {user?user.name:'login'} + {user&&' ('+user.role+')'} + + + } + id="dropdown-menu-align-right" + > + {user&& + + {user.sub} (sub) + + } + {history.push('/'+(getConfig("config")&&(getConfig("config")["name"]+'/userinfo')));}}> + {t('nav_link_userinfo')} + + { + window.location.assign(getConfig("config")["logout_uri"] + "&id_token_hint="+cookies.federation_logoutkey); + }}> + {t('logout')} + + + :( + + + + ) + } + + + } + + + ) + } + export default NavbarTop + \ No newline at end of file diff --git a/javascript/src/index.js b/javascript/src/index.js index 06d46f5..ac6c454 100644 --- a/javascript/src/index.js +++ b/javascript/src/index.js @@ -4,7 +4,7 @@ import App from './App'; import 'react-toastify/dist/ReactToastify.css'; import {ToastContainer} from 'react-toastify'; import {UserProvider} from "./Context/UserProvider"; - +import './components/Common/i18n'; import {BrowserRouter as Router, Route, Link, Routes} from "react-router-dom"; import Communities from './Pages/Communities'; From 78a2a184fa123a692904fd7576d1dc0df77f42e3 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 13 Feb 2023 09:16:37 +0200 Subject: [PATCH 102/331] minor fixes --- javascript/src/components/Common/navbarTop.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index f9e6ed4..8ec33b0 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -4,6 +4,8 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import {faUser,faUserShield, faSignOutAlt} from '@fortawesome/free-solid-svg-icons'; import Navbar from 'react-bootstrap/Navbar'; import Button from 'react-bootstrap/Button'; +import DropdownButton from 'react-bootstrap/DropdownButton'; +import Dropdown from 'react-bootstrap/Dropdown'; import { userContext } from './context'; import { useTranslation } from 'react-i18next'; import { useCookies } from 'react-cookie'; @@ -45,9 +47,9 @@ const NavbarTop = (props)=>{ {user.sub} (sub) } - {history.push('/'+(getConfig("config")&&(getConfig("config")["name"]+'/userinfo')));}}> + {/* {history.push('/'+(getConfig("config")&&(getConfig("config")["name"]+'/userinfo')));}}> {t('nav_link_userinfo')} - + */} { window.location.assign(getConfig("config")["logout_uri"] + "&id_token_hint="+cookies.federation_logoutkey); }}> From d898304da1d92d8a81de197c84e62541e6e1e85d Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 13 Feb 2023 09:35:56 +0200 Subject: [PATCH 103/331] minor fixes --- javascript/src/components/Common/navbarTop.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index 8ec33b0..7c6bf9e 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -65,8 +65,7 @@ const NavbarTop = (props)=>{ } - - + ) } export default NavbarTop From c863a3fa1eb1ebc56bf46fd41c10ad907525558e Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 24 Feb 2023 12:50:02 +0200 Subject: [PATCH 104/331] add menu and pie charts(dashboard) --- app/main.py | 21 ++- javascript/package.json | 2 + javascript/src/App.jsx | 12 ++ javascript/src/Pages/Dashboard/index.js | 67 +++++++--- javascript/src/Pages/Login/index.js | 1 - javascript/src/Pages/Register/index.js | 1 - javascript/src/app.css | 31 ++++- javascript/src/components/Common/layout.js | 3 + javascript/src/components/Common/main.js | 3 + javascript/src/components/Common/sideNav.js | 62 +++++++++ .../Communities/communitiesChart.js | 1 - .../Communities/communitiesDataTable.js | 1 - .../components/Dashboard/loginIdpPieChart.js | 117 +++++++++++++++++ .../components/Dashboard/loginLineChart.js | 83 ++++++------ .../components/Dashboard/loginSpPieChart.js | 122 ++++++++++++++++++ .../src/components/Dashboard/loginTiles.js | 11 +- .../components/Users/registeredUsersChart.js | 1 - .../Users/registeredUsersDataTable.js | 1 - .../components/Users/registeredUsersTiles.js | 3 +- javascript/src/style.scss | 94 ++++++++++++++ javascript/src/styles/_variables.scss | 3 + 21 files changed, 559 insertions(+), 81 deletions(-) create mode 100644 javascript/src/components/Common/layout.js create mode 100644 javascript/src/components/Common/main.js create mode 100644 javascript/src/components/Common/sideNav.js create mode 100644 javascript/src/components/Dashboard/loginIdpPieChart.js create mode 100644 javascript/src/components/Dashboard/loginSpPieChart.js create mode 100644 javascript/src/style.scss create mode 100644 javascript/src/styles/_variables.scss diff --git a/app/main.py b/app/main.py index c27ea22..6c0fe5b 100644 --- a/app/main.py +++ b/app/main.py @@ -1,4 +1,5 @@ from typing import List, Optional, Union +from xmlrpc.client import boolean from app.models.user_model import Users, UsersRead from fastapi import Depends, FastAPI, HTTPException, Query @@ -24,7 +25,7 @@ "url": "/api/v1" } ]) -# app = FastAPI() + MembersReadWithCommunityInfo.update_forward_refs( Community_InfoRead=Community_InfoRead) CommunityReadwithInfo.update_forward_refs( @@ -471,17 +472,23 @@ def read_logins_countby( offset: int = 0, interval: Union[str, None] = None, count_interval: int = None, - tenant_id: int + tenant_id: int, + unique_logins: Union[boolean, None] = False ): interval_subquery = "" if interval and count_interval: interval_subquery = """AND date > CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) - - logins = session.exec(""" - select sum(count) as count - from statistics_country_hashed WHERE tenant_id={0} - {1}""".format(tenant_id, interval_subquery)).all() + if unique_logins == False: + logins = session.exec(""" + select sum(count) as count + from statistics_country_hashed WHERE tenant_id={0} + {1}""".format(tenant_id, interval_subquery)).all() + else: + logins = session.exec(""" + select count(DISTINCT hasheduserid) as count + from statistics_country_hashed WHERE tenant_id={0} + {1}""".format(tenant_id, interval_subquery)).all() return logins diff --git a/javascript/package.json b/javascript/package.json index 9c67418..39f8d8b 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -35,6 +35,7 @@ "pdfmake": "^0.2.6", "react": "^18.1.0", "react-bootstrap": "^2.6.0", + "react-bootstrap-sidebar-menu": "^2.0.3", "react-cookie": "^4.1.1", "react-date-picker": "^8.4.0", "react-datepicker": "^4.8.0", @@ -49,6 +50,7 @@ "react-select": "^5.6.1", "react-toastify": "^9.1.1", "react-tooltip": "^4.5.0", + "sass": "^1.58.0", "web-vitals": "^2.1.4", "yup": "^0.32.11" }, diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index b3f0b1d..bb434ac 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -7,10 +7,17 @@ import {QueryClient, QueryClientProvider} from 'react-query' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; import Dashboard from "./Pages/Dashboard"; +import Col from 'react-bootstrap/Col'; +import Row from 'react-bootstrap/Row'; // import Idps from "./Pages/Idps"; // import Sps from "./Pages/Sps"; import "./app.css"; +import "./style.scss"; + import { languageContext } from "./components/Common/context"; +import Layout from "./components/Common/layout"; +import SideNav from "./components/Common/sideNav"; +import Main from "./components/Common/main"; function App() { // const queryClient = new QueryClient() @@ -18,6 +25,9 @@ function App() { return ( + + +
              {/* */} @@ -38,6 +48,8 @@ function App() { {/* */} +
              +
              ); } diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index 37f845b..8fe33ba 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -1,47 +1,74 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; +import Form from 'react-bootstrap/Form'; import Container from "react-bootstrap/Container"; // import LoginDataTable from "../../components/Dashboard/loginDataTable"; -// import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; +import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; // import LoginsMap from "../../components/Dashboard/loginsMap"; -// import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; +import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; +import SideNav from "../../components/Common/sideNav"; +import Col from 'react-bootstrap/Col'; +import Row from 'react-bootstrap/Row'; +import Layout from "../../components/Common/layout"; +import Main from "../../components/Common/main"; // import IdpModal from "../Idps/idpModal"; const Dashboard = () => { const [startDate, setStartDate] = useState(""); const [endDate, setEndDate] = useState(""); - const {project, environment } = useParams(); + const [uniqueLogins, setUniqueLogins] = useState(false); const [tenantId, setTenantId] = useState(0); const [showModal, setShowModal] = useState(false); - - useEffect(() => { + const { project, environment } = useParams(); + useEffect(() => { client.get("tenant/" + project + "/" + environment). then(response => { - + setTenantId(response["data"][0]["id"]) - }) + }) }, []) - if(tenantId == 0) + + const handleChange = event => { + setUniqueLogins(event.target.checked); + console.log(uniqueLogins) + } + if (tenantId == 0) return else return ( - -
              -

              Dashboard

              - - - {/* - - - */} - {/* */} -
              -
              ) + <> +
              + + +

              Dashboard

              + {/* + + + + */} + + + + + + {/* + */} + + {/* */} + +
              + + ) } export default Dashboard; diff --git a/javascript/src/Pages/Login/index.js b/javascript/src/Pages/Login/index.js index 27315bf..960139d 100644 --- a/javascript/src/Pages/Login/index.js +++ b/javascript/src/Pages/Login/index.js @@ -1,5 +1,4 @@ import {useState, useContext, useEffect} from "react"; -import "../../app.css"; import {Link, useNavigate} from "react-router-dom"; import {useForm} from 'react-hook-form'; import {useMutation} from 'react-query'; diff --git a/javascript/src/Pages/Register/index.js b/javascript/src/Pages/Register/index.js index 03f26bb..99262a1 100644 --- a/javascript/src/Pages/Register/index.js +++ b/javascript/src/Pages/Register/index.js @@ -1,5 +1,4 @@ import {useState, useContext} from "react"; -import "../../app.css"; import "../../components/Common/Style/formInput.css"; import {Link, useNavigate} from "react-router-dom"; import {useForm} from "react-hook-form"; diff --git a/javascript/src/app.css b/javascript/src/app.css index 757d0e9..9433f1e 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -6,7 +6,7 @@ body { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji; font-size: 1rem; font-weight: 400; - line-height: 1.5; + line-height: 10.5; text-align: left; } @@ -494,4 +494,33 @@ footer { 100% { transform: rotate(360deg); } +} +/*Sidebar*/ +.sidebar { + position: fixed; + top: 0; + bottom: 0; + left: 0; + min-height: 100vh !important; + z-index: 100; + padding: 48px 0 0; + box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); +} +#sidebar-wrapper{ + min-height: 100vh !important; + width: 100vw; + margin-left: -1rem; + -webkit-transition: margin .25s ease-out; + -moz-transition: margin .25s ease-out; + -o-transition: margin .25s ease-out; + transition: margin .25s ease-out; +} +#sidebar-wrapper .sidebar-heading { + padding: 0.875rem 1.25rem; + font-size: 1.2rem; +} + +#page-content-wrapper { + min-width: 0; + width: 100%; } \ No newline at end of file diff --git a/javascript/src/components/Common/layout.js b/javascript/src/components/Common/layout.js new file mode 100644 index 0000000..6c69f23 --- /dev/null +++ b/javascript/src/components/Common/layout.js @@ -0,0 +1,3 @@ +export default function Layout({ children }) { + return
              {children}
              ; + } \ No newline at end of file diff --git a/javascript/src/components/Common/main.js b/javascript/src/components/Common/main.js new file mode 100644 index 0000000..3a766c5 --- /dev/null +++ b/javascript/src/components/Common/main.js @@ -0,0 +1,3 @@ +export default function Main({ children }) { + return
              {children}
              ; + } \ No newline at end of file diff --git a/javascript/src/components/Common/sideNav.js b/javascript/src/components/Common/sideNav.js new file mode 100644 index 0000000..62c6720 --- /dev/null +++ b/javascript/src/components/Common/sideNav.js @@ -0,0 +1,62 @@ +import React, { useContext } from 'react'; +import { Navbar, Container } from "react-bootstrap"; +import Nav from 'react-bootstrap/Nav'; +import { Link } from "react-router-dom"; +import { useTranslation } from 'react-i18next'; +// import {userContext,tenantContext} from '../context.js'; +import Sidebar from "react-bootstrap-sidebar-menu"; +import Layout from './layout'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faHome, faObjectGroup, faShield, faUsers } from '@fortawesome/free-solid-svg-icons'; + +const SideNav = (props) => { + // eslint-disable-next-line + // const tenant = useContext(tenantContext); + // const user = useContext(userContext); + // eslint-disable-next-line + const { t, i18n } = useTranslation(); + + return ( + + + + + {/* Logo */} + + + + + + + + Home + + + + Users + + + + Communities + + {/* + + + Submenu + + + + + 1.1 + Sub menu item + + + + */} + + + + + ) +} +export default SideNav \ No newline at end of file diff --git a/javascript/src/components/Communities/communitiesChart.js b/javascript/src/components/Communities/communitiesChart.js index 6f836d8..abf5981 100644 --- a/javascript/src/components/Communities/communitiesChart.js +++ b/javascript/src/components/Communities/communitiesChart.js @@ -1,7 +1,6 @@ import { useState, useContext, useEffect } from "react"; import { Chart } from "react-google-charts"; -import "../../app.css"; import { client } from '../../utils/api'; import Select from 'react-select'; import Container from 'react-bootstrap/Container'; diff --git a/javascript/src/components/Communities/communitiesDataTable.js b/javascript/src/components/Communities/communitiesDataTable.js index 82bd972..c9c1949 100644 --- a/javascript/src/components/Communities/communitiesDataTable.js +++ b/javascript/src/components/Communities/communitiesDataTable.js @@ -1,5 +1,4 @@ import { useState, useContext, useEffect } from "react"; -import "../../app.css"; import { client } from '../../utils/api'; import { communitiesGroupBy } from "../../utils/queryKeys"; import "jquery/dist/jquery.min.js"; diff --git a/javascript/src/components/Dashboard/loginIdpPieChart.js b/javascript/src/components/Dashboard/loginIdpPieChart.js new file mode 100644 index 0000000..5f3f188 --- /dev/null +++ b/javascript/src/components/Dashboard/loginIdpPieChart.js @@ -0,0 +1,117 @@ +import { useState, useContext, useEffect } from "react"; +import { Chart } from "react-google-charts"; +import { client } from '../../utils/api'; +import Select from 'react-select'; +import Container from 'react-bootstrap/Container'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import 'bootstrap/dist/css/bootstrap.min.css'; +import "jquery/dist/jquery.min.js"; +import $ from "jquery"; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; + +export const data = [ + ["Task", "Hours per Day"], + ["Work", 11], + ["Eat", 2], + ["Commute", 2], + ["Watch TV", 2], + ["Sleep", 7], +]; + +export const options = { + pieSliceText: 'value', + width: '100%', + height: '350', + chartArea: { + left: "3%", + top: "3%", + height: "94%", + width: "94%" + }, + sliceVisibilityThreshold: .005, + tooltip: { isHtml: true, trigger: "selection" } +}; +var idpsArray = []; +const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId }) => { + const [idps, setIdps] = useState([["Identity Provider", "Identifier", "Logins"]]); + var idpsChartArray = [["Identity Provider", "Logins"]]; + + useEffect(() => { + var params = { params: { tenant_id: tenantId } } + if (spIdentifier) { + params["params"]["sp"] = spIdentifier + } + client.get("logins_per_idp/", params). + then(response => { + console.log(response) + response["data"].forEach(element => { + idpsChartArray.push([element.name, element.count]) + idpsArray.push([element.name, element.entityid]) + }) + setIdps(idpsChartArray) + console.log(idpsChartArray) + }) + + }, []) + return ( + +
              +
              +

              Overall number of logins per IdP

              +
              + { + const chart = chartWrapper.getChart(); + // if(!managed){ + // console.log(managed) + // setZerosIfNoDate(chartWrapper.getDataTable(), google) + // } + + google.visualization.events.addListener(chart, 'click', selectHandler); + google.visualization.events.addListener(chart, 'onmouseover', showTooltip); + google.visualization.events.addListener(chart, 'onmouseout', hideTooltip); + + function showTooltip(entry) { + + chart.setSelection([{ row: entry.row }]); + $('.pieChart').css('cursor', 'pointer') + } + function hideTooltip() { + + chart.setSelection([]); + $('.pieChart').css('cursor', 'default') + } + function selectHandler() { + + var selection = chart.getSelection(); + if (selection.length) { + var identifier = idpsArray[selection[0].row]; + //var legend = data.getValue(selection[0].row, 0); + console.log(selection[0]) + console.log(identifier) + // Show Modal + setShowModalHandler(true) + // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); + // unique_logins = $("#myModal").is(':visible') ? $("#unique-logins-modal").is(":checked") : $("#unique-logins-"+activeTab).is(":checked"); + // goToSpecificProvider(identifier, legend, type, unique_logins); + } + } + } + } + ]} + /> + + ); +} + +export default LoginIdpPieChart \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginLineChart.js b/javascript/src/components/Dashboard/loginLineChart.js index c7993f0..c4f72ec 100644 --- a/javascript/src/components/Dashboard/loginLineChart.js +++ b/javascript/src/components/Dashboard/loginLineChart.js @@ -1,6 +1,5 @@ import { useState, useContext, useEffect } from "react"; import { Chart } from "react-google-charts"; -import "../../app.css"; import { client } from '../../utils/api'; import Select from 'react-select'; import Container from 'react-bootstrap/Container'; @@ -10,7 +9,7 @@ import 'bootstrap/dist/css/bootstrap.min.css'; export const options = { - title: "Overall number of logins per day", + // title: "Overall number of logins per day", //curveType: "function", legend: 'none' }; @@ -25,7 +24,7 @@ const LoginLineChart = ({ type, identifier, tenantId }) => { console.log(type) params = { params: { tenant_id: tenantId } } if (type) { - params["params"][[type]]= identifier + params["params"][[type]] = identifier } console.log(params) client.get("logins_groupby/day", params). @@ -87,46 +86,52 @@ const LoginLineChart = ({ type, identifier, tenantId }) => { return ( - { - const chart = chartWrapper.getChart(); - if (!managed) { - console.log(managed) - setZerosIfNoDate(chartWrapper.getDataTable(), google) + + +
              +

              Overall number of logins per day

              +
              + { + const chart = chartWrapper.getChart(); + if (!managed) { + console.log(managed) + setZerosIfNoDate(chartWrapper.getDataTable(), google) + } + google.visualization.events.addListener(chart, "click", (e) => { + console.log("CLICK"); + }); + } } - google.visualization.events.addListener(chart, "click", (e) => { - console.log("CLICK"); - }); - } - } - ]} - controls={[ - { + ]} + controls={[ + { - controlType: "ChartRangeFilter", - options: { - filterColumnIndex: 0, - ui: { - chartType: "LineChart", - chartOptions: { - chartArea: { width: "95%", height: "100%" }, - hAxis: { baselineColor: "none" }, + controlType: "ChartRangeFilter", + options: { + filterColumnIndex: 0, + ui: { + chartType: "LineChart", + chartOptions: { + chartArea: { width: "80%", height: "100%" }, + hAxis: { baselineColor: "none" }, + }, + }, }, - }, - }, - controlPosition: "bottom", + controlPosition: "bottom", - }, - ]} - /> + }, + ]} + /> + + ); } diff --git a/javascript/src/components/Dashboard/loginSpPieChart.js b/javascript/src/components/Dashboard/loginSpPieChart.js new file mode 100644 index 0000000..21b9acc --- /dev/null +++ b/javascript/src/components/Dashboard/loginSpPieChart.js @@ -0,0 +1,122 @@ +import { useState, useContext, useEffect } from "react"; +import { Chart } from "react-google-charts"; +import { client } from '../../utils/api'; +import Select from 'react-select'; +import Container from 'react-bootstrap/Container'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import 'bootstrap/dist/css/bootstrap.min.css'; +import "jquery/dist/jquery.min.js"; +import $ from "jquery"; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; + +export const data = [ + ["Task", "Hours per Day"], + ["Work", 11], + ["Eat", 2], + ["Commute", 2], + ["Watch TV", 2], + ["Sleep", 7], +]; + +export const options = { + pieSliceText: 'value', + width: '100%', + height: '350', + chartArea: { + left: "3%", + top: "3%", + height: "94%", + width: "94%" + }, + sliceVisibilityThreshold: .005, + tooltip: { isHtml: true, trigger: "selection" } +}; +var spsArray = []; +const LoginSpPieChart = ({ setShowModalHandler, idpEntityId, tenantId }) => { + const [sps, setSps] = useState([["Service Provider", "Logins"]]); + var spsChartArray = [["Service Provider", "Logins"]]; + + + useEffect(() => { + var params = null + console.log(idpEntityId) + params = { params: { tenant_id: tenantId } } + if (idpEntityId) { + params["params"]["idp"] = idpEntityId + } + + client.get("logins_per_sp/", params). + then(response => { + console.log(response) + response["data"].forEach(element => { + spsChartArray.push([element.name, element.count]) + spsArray.push([element.name, element.identifier]) + }) + + setSps(spsChartArray) + console.log(spsChartArray) + }) + + }, []) + return ( + + +
              +

              Overall number of logins per SP

              +
              + { + const chart = chartWrapper.getChart(); + // if(!managed){ + // console.log(managed) + // setZerosIfNoDate(chartWrapper.getDataTable(), google) + // } + + google.visualization.events.addListener(chart, 'click', selectHandler); + google.visualization.events.addListener(chart, 'onmouseover', showTooltip); + google.visualization.events.addListener(chart, 'onmouseout', hideTooltip); + + function showTooltip(entry) { + + chart.setSelection([{ row: entry.row }]); + $('.pieChart').css('cursor', 'pointer') + } + function hideTooltip() { + + chart.setSelection([]); + $('.pieChart').css('cursor', 'default') + } + function selectHandler() { + var selection = chart.getSelection(); + if (selection.length) { + var identifier = spsArray[selection[0].row]; + //var legend = data.getValue(selection[0].row, 0); + console.log(selection[0]) + console.log(identifier) + // Show Modal + setShowModalHandler(true) + // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); + // unique_logins = $("#myModal").is(':visible') ? $("#unique-logins-modal").is(":checked") : $("#unique-logins-"+activeTab).is(":checked"); + // goToSpecificProvider(identifier, legend, type, unique_logins); + } + } + } + } + ]} + /> + + + ); +} + +export default LoginSpPieChart \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginTiles.js b/javascript/src/components/Dashboard/loginTiles.js index 4f68465..da7d0f6 100644 --- a/javascript/src/components/Dashboard/loginTiles.js +++ b/javascript/src/components/Dashboard/loginTiles.js @@ -1,5 +1,4 @@ import { useState, useContext, useEffect } from "react"; -import "../../app.css"; import { client } from '../../utils/api'; import Container from 'react-bootstrap/Container'; import Select from 'react-select'; @@ -13,13 +12,13 @@ const LoginTiles = (parameters) => { useEffect(() => { Promise.all([ client.get("logins_countby", - { params: { 'tenant_id': parameters['tenantId'] }}), + { params: { 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] }}), client.get("logins_countby", - { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'] }}), + { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] }}), client.get("logins_countby", - { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'] }}), + { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] }}), client.get("logins_countby", - { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'] }}) + { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] }}) ]).then(function (responses) { // Get a JSON object from each of the responses return Promise.all(responses.map(function (response) { @@ -50,7 +49,7 @@ const LoginTiles = (parameters) => { }); - }, []) + }, [parameters["uniqueLogins"]]) return ( diff --git a/javascript/src/components/Users/registeredUsersChart.js b/javascript/src/components/Users/registeredUsersChart.js index 3a4f5cb..30111ed 100644 --- a/javascript/src/components/Users/registeredUsersChart.js +++ b/javascript/src/components/Users/registeredUsersChart.js @@ -1,6 +1,5 @@ import { useState, useContext, useEffect } from "react"; import { Chart } from "react-google-charts"; -import "../../app.css"; import { client } from '../../utils/api'; import Container from 'react-bootstrap/Container'; import Select from 'react-select'; diff --git a/javascript/src/components/Users/registeredUsersDataTable.js b/javascript/src/components/Users/registeredUsersDataTable.js index c9d81ea..7b131da 100644 --- a/javascript/src/components/Users/registeredUsersDataTable.js +++ b/javascript/src/components/Users/registeredUsersDataTable.js @@ -1,5 +1,4 @@ import {useState, useContext, useEffect} from "react"; -import "../../app.css"; import {client} from '../../utils/api'; import "jquery/dist/jquery.min.js"; import $ from "jquery"; diff --git a/javascript/src/components/Users/registeredUsersTiles.js b/javascript/src/components/Users/registeredUsersTiles.js index 208de2c..289fd26 100644 --- a/javascript/src/components/Users/registeredUsersTiles.js +++ b/javascript/src/components/Users/registeredUsersTiles.js @@ -1,12 +1,11 @@ import { useState, useContext, useEffect } from "react"; -import "../../app.css"; import { client } from '../../utils/api'; import Container from 'react-bootstrap/Container'; import Select from 'react-select'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import { convertDateByGroup, getWeekNumber } from "../Common/utils"; -import 'bootstrap/dist/css/bootstrap.min.css'; +//import 'bootstrap/dist/css/bootstrap.min.css'; const RegisteredUsersTiles = (parameters) => { const [tiles, setTiles] = useState({}); diff --git a/javascript/src/style.scss b/javascript/src/style.scss new file mode 100644 index 0000000..75ffcf0 --- /dev/null +++ b/javascript/src/style.scss @@ -0,0 +1,94 @@ +// +@import "./styles/variables"; +@import "~bootstrap/scss/bootstrap"; +@import "~react-bootstrap-sidebar-menu/dist/sidebar-menu.scss"; + +.main-wrapper { + width: 100%; + height: 100%; + position: relative; + display: grid; + grid-template-columns: auto 1fr; + grid-template-rows: auto 1fr; + grid-template-areas: + "sidebar header" + "sidebar main"; +} + +.main-header { + grid-area: header; + padding: 0.5rem; +} + +.main-container { + grid-area: main; + box-shadow: inset 2px 1px 9px 1px rgba($dark, 0.1); + overflow: auto; + padding-top: 1rem; +} + +.sidebar-menu { + padding-top: 0; + flex-direction: column; + grid-area: sidebar; + overflow-y: auto; +} + +.sidebar-menu-collapse.show { + width: auto; +} + +.navbar-fixed-top { + float: right; +} + +.sidebar-menu-toggle:focus { + box-shadow: none; + background-color: #eee; +} + +.unique-logins { + justify-content: right; + display: flex; + form{ + background-color: #027dd5; + padding:5px 10px; + border-radius: 5px; + height: 36px; + input { + padding: 0.1em; + } + label { + color:#fff; + } + } + +} + +.box { + position: relative; + border-radius: 3px; + background: #ffffff; + border-top: 3px solid #d2d6de; + margin-bottom: 20px; + width: 97%; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); + margin: 2%; + + .box-header { + &.with-border { + border-bottom: 1px solid #f4f4f4; + } + .box-title { + display: inline-block; + font-size: 18px; + margin: 0; + line-height: 1; + } + + color: #444; + display: block; + padding: 10px; + position: relative; + } +} diff --git a/javascript/src/styles/_variables.scss b/javascript/src/styles/_variables.scss new file mode 100644 index 0000000..2584a77 --- /dev/null +++ b/javascript/src/styles/_variables.scss @@ -0,0 +1,3 @@ +$navbar-brand-font-size: 1rem; +$nav-link-height: 2.5rem; +$navbar-brand-height: 1.5rem; From e736ed5c04939983ac4f86c6bbf302bfa463a049 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Mar 2023 09:47:35 +0200 Subject: [PATCH 105/331] add datatable and map to dashboard --- app/main.py | 135 +++++++++++++----- javascript/src/Pages/Dashboard/index.js | 20 ++- .../components/Dashboard/loginDataTable.js | 132 +++++++++++++++++ .../components/Dashboard/loginIdpPieChart.js | 6 +- .../components/Dashboard/loginLineChart.js | 6 +- .../components/Dashboard/loginSpPieChart.js | 6 +- .../src/components/Dashboard/loginTiles.js | 10 +- .../src/components/Dashboard/loginsMap.js | 79 ++++++++++ javascript/src/style.scss | 41 +++++- 9 files changed, 365 insertions(+), 70 deletions(-) create mode 100644 javascript/src/components/Dashboard/loginDataTable.js create mode 100644 javascript/src/components/Dashboard/loginsMap.js diff --git a/app/main.py b/app/main.py index 6c0fe5b..edd0d75 100644 --- a/app/main.py +++ b/app/main.py @@ -17,7 +17,8 @@ from app.models.idp_model import * from app.models.country_hashed_user_model import * -import os, sys +import os +import sys sys.path.insert(0, os.path.realpath('__file__')) app = FastAPI(root_path="/api/v1", root_path_in_servers=False, servers= [ @@ -25,7 +26,7 @@ "url": "/api/v1" } ]) - +# app = FastAPI() MembersReadWithCommunityInfo.update_forward_refs( Community_InfoRead=Community_InfoRead) CommunityReadwithInfo.update_forward_refs( @@ -75,12 +76,12 @@ def read_communities( interval_subquery = """ WHERE created BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) - if interval_subquery=="": - interval_subquery=""" + if interval_subquery == "": + interval_subquery = """ WHERE community.tenant_id={0} """.format(tenant_id) else: - interval_subquery+=""" AND community.tenant_id={0} + interval_subquery += """ AND community.tenant_id={0} """.format(tenant_id) communities = session.exec(""" @@ -99,16 +100,16 @@ def read_communities( @app.get("/communities/") def read_community( - *, - session: Session = Depends(get_session), + *, + session: Session = Depends(get_session), community_id: Union[None, int] = None, - tenant_id: int): + tenant_id: int): sql_subquery = '' if community_id: sql_subquery = 'id={0} and'.format(community_id) community = session.exec(""" SELECT * FROM community_info WHERE {0} tenant_id={1} - """.format(sql_subquery,tenant_id)).all() + """.format(sql_subquery, tenant_id)).all() # statement = select(Community).options(selectinload(Community.community_info)) # result = session.exec(statement) # community = result.one() @@ -116,6 +117,7 @@ def read_community( # raise HTTPException(status_code=404, detail="Community not found") return community + @app.get("/communities_info/", response_model=List[Community_InfoRead]) def read_communities_info( *, @@ -160,6 +162,7 @@ def read_members_bystatus( # members = session.exec(""" SELECT community_id FROM members """) return members + @app.get("/tenant/{project_name}/{environment_name}") def read_tenant_byname( *, @@ -179,6 +182,7 @@ def read_tenant_byname( """.format(project_name, environment_name)).all() return tenant + @app.get("/environment_byname/{environment_name}") def read_environment_byname( *, @@ -194,6 +198,7 @@ def read_environment_byname( """.format(environment_name)).all() return environment + @app.get("/services/", response_model=List[Serviceprovidersmap]) def read_services( *, @@ -465,6 +470,7 @@ def read_users_countby( # Dashboard Page + @app.get("/logins_countby") def read_logins_countby( *, @@ -500,7 +506,8 @@ def read_logins_groupby( group_by: str, idp: str = None, sp: str = None, - tenant_id: int + tenant_id: int, + unique_logins: Union[boolean, None] = False ): interval_subquery = "" if idp != None: @@ -510,23 +517,33 @@ def read_logins_groupby( WHERE entityid = '{0}' """.format(idp) elif sp != None: - interval_subquery = """ + interval_subquery = """ JOIN serviceprovidersmap ON serviceid=serviceprovidersmap.id AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id WHERE identifier = '{0}' """.format(sp) if interval_subquery == "": - interval_subquery = """WHERE statistics_country_hashed.tenant_id = {0}""".format(tenant_id) + interval_subquery = """WHERE statistics_country_hashed.tenant_id = {0}""".format( + tenant_id) else: - interval_subquery += """ AND statistics_country_hashed.tenant_id = {0} """.format(tenant_id) - - logins = session.exec(""" + interval_subquery += """ AND statistics_country_hashed.tenant_id = {0} """.format( + tenant_id) + if unique_logins == False: + logins = session.exec(""" select sum(count) as count, date_trunc('{0}', date) as date from statistics_country_hashed {1} GROUP BY date_trunc('{0}', date) ORDER BY date_trunc('{0}', date) ASC """.format(group_by, interval_subquery)).all() + else: + logins = session.exec(""" + select count(DISTINCT hasheduserid) as count, date_trunc('{0}', date) as date + from statistics_country_hashed + {1} + GROUP BY date_trunc('{0}', date) + ORDER BY date_trunc('{0}', date) ASC + """.format(group_by, interval_subquery)).all() return logins @@ -538,7 +555,8 @@ def read_logins_per_idp( sp: str = None, startDate: str = None, endDate: str = None, - tenant_id: int + tenant_id: int, + unique_logins: Union[boolean, None] = False ): interval_subquery = "" sp_subquery_join = "" @@ -554,19 +572,26 @@ def read_logins_per_idp( interval_subquery = """ AND date BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) - + if unique_logins == False: + sub_select = """ + sum(count) as count + """ + else: + sub_select = """ + count(DISTINCT hasheduserid) as count + """ logins = session.exec(""" - select identityprovidersmap.name, entityid, sourceidpid, sum(count) as count + select identityprovidersmap.name, entityid, sourceidpid, {0} from statistics_country_hashed join identityprovidersmap ON identityprovidersmap.id=sourceidpid AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id - {0} - WHERE statistics_country_hashed.tenant_id = {1} - {2} + {1} + WHERE statistics_country_hashed.tenant_id = {2} + {3} GROUP BY sourceidpid, identityprovidersmap.name, entityid ORDER BY count DESC - """.format(sp_subquery_join, tenant_id, interval_subquery)).all() - + """.format(sub_select, sp_subquery_join, tenant_id, interval_subquery)).all() + return logins @@ -578,7 +603,8 @@ def read_logins_per_sp( idp: str = None, startDate: str = None, endDate: str = None, - tenant_id: int + tenant_id: int, + unique_logins: Union[boolean, None] = False ): interval_subquery = "" idp_subquery_join = "" @@ -594,17 +620,27 @@ def read_logins_per_sp( interval_subquery = """ AND date BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) + + if unique_logins == False: + sub_select = """ + sum(count) as count + """ + else: + sub_select = """ + count(DISTINCT hasheduserid) as count + """ + logins = session.exec(""" - select serviceprovidersmap.name, identifier, serviceid, sum(count) as count + select serviceprovidersmap.name, identifier, serviceid, {0} from statistics_country_hashed join serviceprovidersmap ON serviceprovidersmap.id=serviceid AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id - {0} - WHERE statistics_country_hashed.tenant_id = {1} - {2} + {1} + WHERE statistics_country_hashed.tenant_id = {2} + {3} GROUP BY serviceid, serviceprovidersmap.name, identifier ORDER BY count DESC - """.format(idp_subquery_join, tenant_id, interval_subquery)).all() + """.format(sub_select, idp_subquery_join, tenant_id, interval_subquery)).all() return logins @@ -616,39 +652,60 @@ def read_logins_per_country( group_by: Union[str, None] = None, startDate: str = None, endDate: str = None, - tenant_id: int + tenant_id: int, + unique_logins: Union[boolean, None] = False ): interval_subquery = "" + if group_by: if startDate and endDate: interval_subquery = """ AND date BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) + if unique_logins == False: + sub_select = """ + sum(count) as count_country + """ + sum = "sum(count)" + else: + sub_select = """ + count(DISTINCT hasheduserid) as count_country + """ + sum = "count(DISTINCT hasheduserid)" logins = session.exec(""" SELECT range_date, sum(count_country) as count, min(min_login_date) as min_date, STRING_AGG(country, '|| ') as countries FROM ( - SELECT date_trunc('{0}', date) as range_date, min(date) as min_login_date, sum(count) as count_country, CONCAT(country,': ',sum(count)) as country + SELECT date_trunc('{0}', date) as range_date, min(date) as min_login_date, {1}, CONCAT(country,': ',{2}) as country from statistics_country_hashed JOIN country_codes ON countryid=country_codes.id - WHERE tenant_id = {1} - {2} + WHERE tenant_id = {3} + {4} GROUP BY range_date, country ORDER BY range_date,country ASC ) country_logins GROUP BY range_date - """.format(group_by, tenant_id, interval_subquery)).all() + """.format(group_by, sub_select, sum, tenant_id, interval_subquery)).all() else: if startDate and endDate: interval_subquery = """ AND date BETWEEN '{0}' AND '{1}' """.format(startDate, endDate) + + if unique_logins == False: + sub_select = """ + sum(count) as sum + """ + else: + sub_select = """ + count(DISTINCT hasheduserid) as sum + """ logins = session.exec(""" - SELECT country, countrycode,sum(count) as sum - from statistics_country_hashed + SELECT country, countrycode, {0} + FROM statistics_country_hashed JOIN country_codes ON countryid=country_codes.id - WHERE tenant_id = {0} - {1} + WHERE tenant_id = {1} + {2} GROUP BY country,countrycode - """.format(tenant_id, interval_subquery)).all() + """.format(sub_select, tenant_id, interval_subquery)).all() return logins diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index 8fe33ba..868b656 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -1,21 +1,17 @@ -import { useState, useContext, useEffect } from "react"; +import { useState, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; import Form from 'react-bootstrap/Form'; -import Container from "react-bootstrap/Container"; -// import LoginDataTable from "../../components/Dashboard/loginDataTable"; +import LoginDataTable from "../../components/Dashboard/loginDataTable"; import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; -// import LoginsMap from "../../components/Dashboard/loginsMap"; +import LoginsMap from "../../components/Dashboard/loginsMap"; import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; -import SideNav from "../../components/Common/sideNav"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; -import Layout from "../../components/Common/layout"; -import Main from "../../components/Common/main"; // import IdpModal from "../Idps/idpModal"; const Dashboard = () => { @@ -58,11 +54,11 @@ const Dashboard = () => { */} - - - - {/* - */} + + + + + {/* */} diff --git a/javascript/src/components/Dashboard/loginDataTable.js b/javascript/src/components/Dashboard/loginDataTable.js new file mode 100644 index 0000000..cd2c538 --- /dev/null +++ b/javascript/src/components/Dashboard/loginDataTable.js @@ -0,0 +1,132 @@ +import {useState, useContext, useEffect} from "react"; +import {client} from '../../utils/api'; +import "jquery/dist/jquery.min.js"; +import $ from "jquery"; +import Datatable from "../datatable"; +import dateFormat from 'dateformat'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import DatePicker from "react-datepicker"; +import Dropdown from 'react-dropdown'; +import { ToastContainer, toast } from 'react-toastify'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import 'react-toastify/dist/ReactToastify.css'; +import 'react-dropdown/style.css'; +import "react-datepicker/dist/react-datepicker.css"; + +const dropdownOptions = [ + + { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, + { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, + { value: 'month', label: 'Monthly Basis' }, + { value: 'year', label: 'Yearly Basis' }, +] + +const LoginDataTable =({startDateHandler, endDateHandler, tenantId, uniqueLogins}) => { + const [loginsPerCountryPerPeriod, setLoginsPerCountryPerPeriod] = useState(); + var loginsPerCountryPerPeriodArray = []; + const [minDate, setMinDate] = useState(""); + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + useEffect(() => { + client.get("logins_per_country/", {params: {'group_by':'month', 'tenant_id': tenantId, 'unique_logins': uniqueLogins}}). + then(response => { + console.log(response); + var minDateFromData = "" + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + + var range_date = new Date(element.range_date); + if (minDateFromData == "") { + minDateFromData = new Date(element.min_date) + } + var perPeriod = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Logins": element.count, "Number of Logins per Country": element.countries} + loginsPerCountryPerPeriodArray.push(perPeriod) + + }); + setMinDate(minDateFromData) + $("#table").DataTable().destroy() + setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) + }) + // + + }, [uniqueLogins]) + + const handleChange = event => { + console.log(event.value); + loginsPerCountryPerPeriodArray = [] + if(!startDate || !endDate) { + toast.error('You have to fill both startDate and endDate.', { + position: "top-center", + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: true, + draggable: true, + progress: undefined, + theme: "dark", + }); + return + } + // set parent states + startDateHandler(startDate) + endDateHandler(endDate) + client.get("logins_per_country/", + { + params: { + 'group_by': event.value, + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + }). + then(response => { + //console.log(response); + response["data"].forEach(element => { + + var range_date = new Date(element.range_date); + + var perPeriod = { "Date": convertDateByGroup(range_date, event.value), "Number of Logins": element.count, "Number of Logins per Country": element.countries} + loginsPerCountryPerPeriodArray.push(perPeriod) + + }); + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#table").DataTable().destroy() + setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) + + }) + //setSelected(event.value); + }; + + return + +
              +

              Number of logins

              +
              + + + + From: setStartDate(date)}> + To: setEndDate(date)}> + + + + + + + + + +} + +export default LoginDataTable \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginIdpPieChart.js b/javascript/src/components/Dashboard/loginIdpPieChart.js index 5f3f188..5dd0a91 100644 --- a/javascript/src/components/Dashboard/loginIdpPieChart.js +++ b/javascript/src/components/Dashboard/loginIdpPieChart.js @@ -33,12 +33,12 @@ export const options = { tooltip: { isHtml: true, trigger: "selection" } }; var idpsArray = []; -const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId }) => { +const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId, uniqueLogins }) => { const [idps, setIdps] = useState([["Identity Provider", "Identifier", "Logins"]]); var idpsChartArray = [["Identity Provider", "Logins"]]; useEffect(() => { - var params = { params: { tenant_id: tenantId } } + var params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } if (spIdentifier) { params["params"]["sp"] = spIdentifier } @@ -53,7 +53,7 @@ const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId }) => { console.log(idpsChartArray) }) - }, []) + }, [uniqueLogins]) return ( diff --git a/javascript/src/components/Dashboard/loginLineChart.js b/javascript/src/components/Dashboard/loginLineChart.js index c4f72ec..a20aacc 100644 --- a/javascript/src/components/Dashboard/loginLineChart.js +++ b/javascript/src/components/Dashboard/loginLineChart.js @@ -15,14 +15,14 @@ export const options = { }; -const LoginLineChart = ({ type, identifier, tenantId }) => { +const LoginLineChart = ({ type, identifier, tenantId, uniqueLogins }) => { const [managed, setManaged] = useState(false); const [lineData, setLineData] = useState(["Date", "Logins"]) useEffect(() => { var params = null console.log(type) - params = { params: { tenant_id: tenantId } } + params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } if (type) { params["params"][[type]] = identifier } @@ -37,7 +37,7 @@ const LoginLineChart = ({ type, identifier, tenantId }) => { console.log(lineDataArray) setLineData(lineDataArray) }) - }, []) + }, [uniqueLogins]) // This is for Dates with no logins, we have to set 0 for these dates diff --git a/javascript/src/components/Dashboard/loginSpPieChart.js b/javascript/src/components/Dashboard/loginSpPieChart.js index 21b9acc..1155388 100644 --- a/javascript/src/components/Dashboard/loginSpPieChart.js +++ b/javascript/src/components/Dashboard/loginSpPieChart.js @@ -33,7 +33,7 @@ export const options = { tooltip: { isHtml: true, trigger: "selection" } }; var spsArray = []; -const LoginSpPieChart = ({ setShowModalHandler, idpEntityId, tenantId }) => { +const LoginSpPieChart = ({ setShowModalHandler, idpEntityId, tenantId, uniqueLogins }) => { const [sps, setSps] = useState([["Service Provider", "Logins"]]); var spsChartArray = [["Service Provider", "Logins"]]; @@ -41,7 +41,7 @@ const LoginSpPieChart = ({ setShowModalHandler, idpEntityId, tenantId }) => { useEffect(() => { var params = null console.log(idpEntityId) - params = { params: { tenant_id: tenantId } } + params = { params: { tenant_id: tenantId, unique_logins: uniqueLogins } } if (idpEntityId) { params["params"]["idp"] = idpEntityId } @@ -58,7 +58,7 @@ const LoginSpPieChart = ({ setShowModalHandler, idpEntityId, tenantId }) => { console.log(spsChartArray) }) - }, []) + }, [uniqueLogins]) return ( diff --git a/javascript/src/components/Dashboard/loginTiles.js b/javascript/src/components/Dashboard/loginTiles.js index da7d0f6..843812e 100644 --- a/javascript/src/components/Dashboard/loginTiles.js +++ b/javascript/src/components/Dashboard/loginTiles.js @@ -53,10 +53,10 @@ const LoginTiles = (parameters) => { return ( - + {console.log(tiles)} -
              +

              {tiles["overall"]}

              Total Logins

              @@ -64,7 +64,7 @@ const LoginTiles = (parameters) => {
              -
              +

              {tiles["year_1"]}

              Last Year Logins

              @@ -72,7 +72,7 @@ const LoginTiles = (parameters) => {
              -
              +

              {tiles["days_30"]}

              Last 30 days Logins

              @@ -80,7 +80,7 @@ const LoginTiles = (parameters) => {
              -
              +

              {tiles["days_7"]}

              Last 7 days Logins

              diff --git a/javascript/src/components/Dashboard/loginsMap.js b/javascript/src/components/Dashboard/loginsMap.js new file mode 100644 index 0000000..0888a62 --- /dev/null +++ b/javascript/src/components/Dashboard/loginsMap.js @@ -0,0 +1,79 @@ +import { useState, useContext, useEffect } from "react"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Select from 'react-select'; +import { client } from '../../utils/api'; +import $, { map } from "jquery"; +import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import 'jquery-mapael'; +import 'jquery-mapael/js/maps/world_countries_mercator.js'; + + +const LoginsMap = ({startDate, endDate, tenantId, uniqueLogins}) => { + + useEffect(() => { + client.get("logins_per_country", + { + params: { + 'startDate':startDate, + 'endDate':endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + }).then(response => { + console.log("MAP????") + console.log(response["data"]) + createMap("loginsMap", response["data"]) + }) + }, [startDate, endDate, uniqueLogins]) + + const createMap = (id, mapData, tooltipLabel = "Logins", legendLabel = 'Logins per country') => { + var areas = {}; + var i = 1; + var maxSum = 0; + mapData.forEach(function (mapRow) { + + var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + + //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; + areas[mapRow.countrycode] = { + value: mapRow.sum, + tooltip: { content: contentTooltip } + } + if (mapRow.sum > maxSum) { + maxSum = mapRow.sum; + } + i++; + }) + // Calculate Legends + var legends = calculateLegends(maxSum) + $(".areaLegend").show() + $("#" + id).mapael({ + map: setMapConfiguration(), + legend: setLegend(legendLabel, legends), + areas: areas + }) + + } + + return ( + + +
              +
              +

              Logins Per Country

              +
              + + + +
              +
              +
              +
              + + + + ) +} + +export default LoginsMap; \ No newline at end of file diff --git a/javascript/src/style.scss b/javascript/src/style.scss index 75ffcf0..c78e4cf 100644 --- a/javascript/src/style.scss +++ b/javascript/src/style.scss @@ -50,21 +50,46 @@ .unique-logins { justify-content: right; display: flex; - form{ + form { background-color: #027dd5; - padding:5px 10px; + padding: 5px 10px; border-radius: 5px; height: 36px; input { padding: 0.1em; } label { - color:#fff; + color: #fff; } } - } - +.tiles-container { + margin: 0px; +} +.small-box { + border-radius: 2px; + position: relative; + display: block; + margin-bottom: 20px; + box-shadow: 0 1px 1px rgb(0 0 0 / 10%); + padding: 10px; + color: #fff; +} +.bg-aqua { + background-color: #00c0ef !important; +} +.bg-green, +.modal-success .modal-body { + background-color: #00a65a !important; +} +.bg-yellow, +.modal-warning .modal-body { + background-color: #f39c12 !important; +} +.bg-red, +.modal-danger .modal-body { + background-color: #dd4b39 !important; +} .box { position: relative; border-radius: 3px; @@ -92,3 +117,9 @@ position: relative; } } +.range_inputs { + padding: 30px 30px 20px 30px; +} +.react-datepicker-wrapper { + padding: 0px 10px; +} From 5aabde1696483467a58c1f0efe43916b8c222ada Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Mar 2023 10:14:41 +0200 Subject: [PATCH 106/331] minor css fixes --- .../src/components/Dashboard/loginTiles.js | 72 +++++++++---------- javascript/src/style.scss | 13 +++- 2 files changed, 46 insertions(+), 39 deletions(-) diff --git a/javascript/src/components/Dashboard/loginTiles.js b/javascript/src/components/Dashboard/loginTiles.js index 843812e..cf8eef9 100644 --- a/javascript/src/components/Dashboard/loginTiles.js +++ b/javascript/src/components/Dashboard/loginTiles.js @@ -12,13 +12,13 @@ const LoginTiles = (parameters) => { useEffect(() => { Promise.all([ client.get("logins_countby", - { params: { 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] }}), + { params: { 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }), client.get("logins_countby", - { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] }}), + { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }), client.get("logins_countby", - { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] }}), + { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }), client.get("logins_countby", - { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] }}) + { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }) ]).then(function (responses) { // Get a JSON object from each of the responses return Promise.all(responses.map(function (response) { @@ -31,12 +31,12 @@ const LoginTiles = (parameters) => { var tilesArray = {} data.forEach(element => { - if (element["config"]["params"]["interval"] ) { + if (element["config"]["params"]["interval"]) { var name = element["config"]["params"]["interval"] + "_" + element["config"]["params"]["count_interval"] tilesArray[[name]] = (element["data"][0]["count"] != null) ? element["data"][0]["count"] : 0 } else { - tilesArray["overall"] = (element["data"][0]["count"] != null) ? element["data"][0]["count"] : 0 + tilesArray["overall"] = (element["data"][0]["count"] != null) ? element["data"][0]["count"] : 0 } }) @@ -53,41 +53,41 @@ const LoginTiles = (parameters) => { return ( - - {console.log(tiles)} - -
              -
              -

              {tiles["overall"]}

              -

              Total Logins

              + +
              + +
              +
              +

              {tiles["overall"]}

              +

              Total Logins

              +
              - - - -
              -
              -

              {tiles["year_1"]}

              -

              Last Year Logins

              + +
              +
              +
              +

              {tiles["year_1"]}

              +

              Last Year Logins

              +
              - - - -
              -
              -

              {tiles["days_30"]}

              -

              Last 30 days Logins

              + +
              +
              +
              +

              {tiles["days_30"]}

              +

              Last 30 days Logins

              +
              - - - -
              -
              -

              {tiles["days_7"]}

              -

              Last 7 days Logins

              + +
              +
              +
              +

              {tiles["days_7"]}

              +

              Last 7 days Logins

              +
              - + - ) } diff --git a/javascript/src/style.scss b/javascript/src/style.scss index c78e4cf..1453fa8 100644 --- a/javascript/src/style.scss +++ b/javascript/src/style.scss @@ -3,6 +3,9 @@ @import "~bootstrap/scss/bootstrap"; @import "~react-bootstrap-sidebar-menu/dist/sidebar-menu.scss"; +.container { + max-width: none !important; +} .main-wrapper { width: 100%; height: 100%; @@ -64,7 +67,10 @@ } } .tiles-container { - margin: 0px; + display: flex; + justify-content: space-around; + width: 97%; + margin: 2%; } .small-box { border-radius: 2px; @@ -74,6 +80,7 @@ box-shadow: 0 1px 1px rgb(0 0 0 / 10%); padding: 10px; color: #fff; + margin: 1%; } .bg-aqua { background-color: #00c0ef !important; @@ -118,8 +125,8 @@ } } .range_inputs { - padding: 30px 30px 20px 30px; + padding: 30px 30px 20px 30px; } .react-datepicker-wrapper { - padding: 0px 10px; + padding: 0px 10px; } From e40a9f639c6114514001c49a27d740a03c4234eb Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 3 Mar 2023 12:15:55 +0200 Subject: [PATCH 107/331] minor className fix --- javascript/src/components/Users/registeredUsersTiles.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/javascript/src/components/Users/registeredUsersTiles.js b/javascript/src/components/Users/registeredUsersTiles.js index 289fd26..0a30bde 100644 --- a/javascript/src/components/Users/registeredUsersTiles.js +++ b/javascript/src/components/Users/registeredUsersTiles.js @@ -54,9 +54,8 @@ const RegisteredUsersTiles = (parameters) => { return ( - {console.log(tiles)} -
              +

              {tiles["overall"]}

              Total Registered Users

              From a80e1151f0fc3e3c0769ac1f22811dc2973260cb Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 3 Mar 2023 13:33:34 +0200 Subject: [PATCH 108/331] Improve development environment configuration --- .gitignore | 1 + Dockerfile | 4 ++++ app/main.py | 13 +++++----- docker-compose.yml | 2 +- javascript/package.json | 6 ++--- javascript/src/components/Common/header.js | 1 - javascript/src/components/Common/navbarTop.js | 1 - javascript/src/config_react.json | 24 +++++++++---------- 8 files changed, 27 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index bc2c358..9144cab 100644 --- a/.gitignore +++ b/.gitignore @@ -134,6 +134,7 @@ dmypy.json /node_modules .npm/** javascript/.npm/** +javascript/.bash_history .gnupg/** .idea/** .yarn/** diff --git a/Dockerfile b/Dockerfile index 4e53163..5e95868 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,8 @@ RUN apt-get -qq --allow-releaseinfo-change update \ # Create working directory ENV APP_HOME /app +ENV API_ENVIRONMENT dev + RUN mkdir -p $APP_HOME WORKDIR $APP_HOME @@ -26,8 +28,10 @@ ARG APP_GID=1000 RUN groupadd -g ${APP_GID} app RUN useradd -u ${APP_UID} -g ${APP_GID} -d $APP_HOME app +RUN echo $(python3 -m site --user-base) # set environment variables +ENV PATH $APP_HOME/.local/bin:${PATH} ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 ENV ENVIRONMENT dev diff --git a/app/main.py b/app/main.py index edd0d75..a9c73db 100644 --- a/app/main.py +++ b/app/main.py @@ -1,4 +1,5 @@ from typing import List, Optional, Union +import os from xmlrpc.client import boolean from app.models.user_model import Users, UsersRead @@ -20,13 +21,11 @@ import os import sys sys.path.insert(0, os.path.realpath('__file__')) +# Development Environment: dev +environment = os.getenv('API_ENVIRONMENT') +# Instantiate app according to the environment configuration +app = FastAPI() if environment == "dev" else FastAPI(root_path="/api/v1", root_path_in_servers=False, servers= [{"url": "/api/v1"}]) -app = FastAPI(root_path="/api/v1", root_path_in_servers=False, servers= [ - { - "url": "/api/v1" - } -]) -# app = FastAPI() MembersReadWithCommunityInfo.update_forward_refs( Community_InfoRead=Community_InfoRead) CommunityReadwithInfo.update_forward_refs( @@ -656,7 +655,7 @@ def read_logins_per_country( unique_logins: Union[boolean, None] = False ): interval_subquery = "" - + if group_by: if startDate and endDate: interval_subquery = """ diff --git a/docker-compose.yml b/docker-compose.yml index f4dc5e6..a67e721 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,8 +26,8 @@ services: image: metricsrciam:latest container_name: metrcis.rciam.fastapi environment: - - PATH=$PATH:.local/bin - DATABASE_URL=postgresql+psycopg2://rciam:secret@db/metrics_dev + - API_ENVIRONMENT=dev command: uvicorn app.main:app --reload --workers 1 --host 0.0.0.0 --port 8000 ports: - "8004:8000" diff --git a/javascript/package.json b/javascript/package.json index 39f8d8b..a6b14ea 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -6,9 +6,9 @@ "@date-io/moment": "^2.14.0", "@emotion/react": "^11.9.0", "@emotion/styled": "^11.8.1", - "@fortawesome/fontawesome-svg-core": "^6.1.1", - "@fortawesome/free-solid-svg-icons": "^6.1.1", - "@fortawesome/react-fontawesome": "^0.1.18", + "@fortawesome/fontawesome-svg-core": "^6.3.0", + "@fortawesome/free-solid-svg-icons": "^6.3.0", + "@fortawesome/react-fontawesome": "^0.2.0", "@hookform/error-message": "^2.0.0", "@hookform/resolvers": "^2.8.10", "@mui/icons-material": "^5.8.0", diff --git a/javascript/src/components/Common/header.js b/javascript/src/components/Common/header.js index ba43808..7d8e2d7 100644 --- a/javascript/src/components/Common/header.js +++ b/javascript/src/components/Common/header.js @@ -2,7 +2,6 @@ import React, { useState, useEffect } from 'react'; import { useParams } from "react-router-dom"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Image from 'react-bootstrap/Image'; -import { faUser, faUserShield, faSignOutAlt } from '@fortawesome/free-solid-svg-icons'; import {faTimes} from '@fortawesome/free-solid-svg-icons'; import parse from 'html-react-parser'; import config from "./../../config_react.json"; diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index 7c6bf9e..15ad047 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -1,5 +1,4 @@ import React,{useState,useEffect,useContext} from 'react'; -//import {useHistory} from "react-router-dom"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import {faUser,faUserShield, faSignOutAlt} from '@fortawesome/free-solid-svg-icons'; import Navbar from 'react-bootstrap/Navbar'; diff --git a/javascript/src/config_react.json b/javascript/src/config_react.json index 8b6376e..d360b53 100644 --- a/javascript/src/config_react.json +++ b/javascript/src/config_react.json @@ -1,15 +1,15 @@ { - "configReact": { - "apiUrl": "http://localhost:8004/" - }, - - "egi_devel": { - "config":{ - "website_url": "https://www.egi.eu/", - "logo_url": "https://aai-dev.egi.eu/proxy/module.php/themeegi/resources/images/logo.svg", - "home_page_title": "EGI Metrics (Development)", - "contact": "faai@grnet.gr", - "footer_description" : "Copyright ©2016-2022 | Check-in is an EGI service provided by GRNET, receiving funding from the EGI Foundation (EGI.eu) and the EGI-ACE project (Horizon 2020) under Grant number 101017567" - } + "configReact": { + "apiUrl": "http://localhost:8004/" + }, + "egi_devel": { + "config": { + "website_url": "https://www.egi.eu/", + "logo_url": "https://aai-dev.egi.eu/proxy/module.php/themeegi/resources/images/logo.svg", + "home_page_title": "EGI Metrics (Development)", + "contact": "faai@grnet.gr", + "footer_description": "Copyright ©2016-2022 | Check-in is an EGI service provided by GRNET, receiving funding from the EGI Foundation (EGI.eu) and the EGI-ACE project (Horizon 2020) under Grant number 101017567", + "theme_color": "#0A559C" } + } } \ No newline at end of file From 5bf650c8cd4af7d423dd30e927f7eae15d425463 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Sun, 12 Mar 2023 14:57:23 +0200 Subject: [PATCH 109/331] add unique logins at dashboard page --- app/main.py | 18 +++++++------ javascript/src/App.jsx | 7 +++--- javascript/src/Pages/Dashboard/index.js | 4 +-- .../components/Dashboard/loginIdpPieChart.js | 19 ++++++-------- .../components/Dashboard/loginLineChart.js | 4 +-- .../components/Dashboard/loginSpPieChart.js | 25 +++++-------------- 6 files changed, 31 insertions(+), 46 deletions(-) diff --git a/app/main.py b/app/main.py index a9c73db..b29adfb 100644 --- a/app/main.py +++ b/app/main.py @@ -478,7 +478,9 @@ def read_logins_countby( interval: Union[str, None] = None, count_interval: int = None, tenant_id: int, - unique_logins: Union[boolean, None] = False + unique_logins: Union[boolean, None] = False, + idp: str = None, + sp: str = None ): interval_subquery = "" if interval and count_interval: @@ -513,13 +515,13 @@ def read_logins_groupby( interval_subquery = """ JOIN identityprovidersmap ON sourceidpid=identityprovidersmap.id AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id - WHERE entityid = '{0}' + WHERE identityprovidersmap.id = '{0}' """.format(idp) elif sp != None: interval_subquery = """ JOIN serviceprovidersmap ON serviceid=serviceprovidersmap.id AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id - WHERE identifier = '{0}' + WHERE serviceprovidersmap.id = '{0}' """.format(sp) if interval_subquery == "": interval_subquery = """WHERE statistics_country_hashed.tenant_id = {0}""".format( @@ -580,14 +582,14 @@ def read_logins_per_idp( count(DISTINCT hasheduserid) as count """ logins = session.exec(""" - select identityprovidersmap.name, entityid, sourceidpid, {0} + select identityprovidersmap.id, identityprovidersmap.name, entityid, sourceidpid, {0} from statistics_country_hashed join identityprovidersmap ON identityprovidersmap.id=sourceidpid AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id {1} WHERE statistics_country_hashed.tenant_id = {2} {3} - GROUP BY sourceidpid, identityprovidersmap.name, entityid + GROUP BY identityprovidersmap.id, sourceidpid, identityprovidersmap.name, entityid ORDER BY count DESC """.format(sub_select, sp_subquery_join, tenant_id, interval_subquery)).all() @@ -612,7 +614,7 @@ def read_logins_per_sp( JOIN identityprovidersmap ON identityprovidersmap.id=sourceidpid AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id AND identityprovidersmap.tenant_id={1} - AND entityid = '{0}' + AND identityprovidersmap.id = '{0}' """.format(idp, tenant_id) if startDate and endDate: @@ -630,14 +632,14 @@ def read_logins_per_sp( """ logins = session.exec(""" - select serviceprovidersmap.name, identifier, serviceid, {0} + select serviceprovidersmap.id, serviceprovidersmap.name, identifier, serviceid, {0} from statistics_country_hashed join serviceprovidersmap ON serviceprovidersmap.id=serviceid AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id {1} WHERE statistics_country_hashed.tenant_id = {2} {3} - GROUP BY serviceid, serviceprovidersmap.name, identifier + GROUP BY serviceprovidersmap.id, serviceid, serviceprovidersmap.name, identifier ORDER BY count DESC """.format(sub_select, idp_subquery_join, tenant_id, interval_subquery)).all() return logins diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index bb434ac..30e2b94 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -11,6 +11,7 @@ import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; // import Idps from "./Pages/Idps"; // import Sps from "./Pages/Sps"; +// import Idp from "./Pages/Idps/idp"; import "./app.css"; import "./style.scss"; @@ -38,13 +39,13 @@ function App() { {/* }/> }/> }/> - - }/> */} + */} }/> }/> }/> {/* }/> - }/> */} + }/> + }/> */} {/* */} diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index 868b656..0940d7d 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -42,7 +42,7 @@ const Dashboard = () => {

              Dashboard

              - {/* + { onChange={handleChange} /> - */} + diff --git a/javascript/src/components/Dashboard/loginIdpPieChart.js b/javascript/src/components/Dashboard/loginIdpPieChart.js index 5dd0a91..2952d69 100644 --- a/javascript/src/components/Dashboard/loginIdpPieChart.js +++ b/javascript/src/components/Dashboard/loginIdpPieChart.js @@ -1,6 +1,7 @@ import { useState, useContext, useEffect } from "react"; import { Chart } from "react-google-charts"; import { client } from '../../utils/api'; + import Select from 'react-select'; import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; @@ -10,14 +11,6 @@ import "jquery/dist/jquery.min.js"; import $ from "jquery"; import { convertDateByGroup, getWeekNumber } from "../Common/utils"; -export const data = [ - ["Task", "Hours per Day"], - ["Work", 11], - ["Eat", 2], - ["Commute", 2], - ["Watch TV", 2], - ["Sleep", 7], -]; export const options = { pieSliceText: 'value', @@ -33,7 +26,7 @@ export const options = { tooltip: { isHtml: true, trigger: "selection" } }; var idpsArray = []; -const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId, uniqueLogins }) => { +const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId, uniqueLogins, goToSpecificProviderHandler }) => { const [idps, setIdps] = useState([["Identity Provider", "Identifier", "Logins"]]); var idpsChartArray = [["Identity Provider", "Logins"]]; @@ -47,13 +40,14 @@ const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId, uniqueL console.log(response) response["data"].forEach(element => { idpsChartArray.push([element.name, element.count]) - idpsArray.push([element.name, element.entityid]) + idpsArray.push([element.id, element.name, element.entityid]) }) setIdps(idpsChartArray) console.log(idpsChartArray) }) }, [uniqueLogins]) + return ( @@ -98,9 +92,10 @@ const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId, uniqueL var identifier = idpsArray[selection[0].row]; //var legend = data.getValue(selection[0].row, 0); console.log(selection[0]) - console.log(identifier) + console.log(identifier[0]+"??????") // Show Modal - setShowModalHandler(true) + //setShowModalHandler(true) + goToSpecificProviderHandler(identifier[0]) // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); // unique_logins = $("#myModal").is(':visible') ? $("#unique-logins-modal").is(":checked") : $("#unique-logins-"+activeTab).is(":checked"); // goToSpecificProvider(identifier, legend, type, unique_logins); diff --git a/javascript/src/components/Dashboard/loginLineChart.js b/javascript/src/components/Dashboard/loginLineChart.js index a20aacc..337ffea 100644 --- a/javascript/src/components/Dashboard/loginLineChart.js +++ b/javascript/src/components/Dashboard/loginLineChart.js @@ -15,7 +15,7 @@ export const options = { }; -const LoginLineChart = ({ type, identifier, tenantId, uniqueLogins }) => { +const LoginLineChart = ({ type, id, tenantId, uniqueLogins }) => { const [managed, setManaged] = useState(false); const [lineData, setLineData] = useState(["Date", "Logins"]) @@ -24,7 +24,7 @@ const LoginLineChart = ({ type, identifier, tenantId, uniqueLogins }) => { console.log(type) params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } if (type) { - params["params"][[type]] = identifier + params["params"][[type]] = id } console.log(params) client.get("logins_groupby/day", params). diff --git a/javascript/src/components/Dashboard/loginSpPieChart.js b/javascript/src/components/Dashboard/loginSpPieChart.js index 1155388..9325653 100644 --- a/javascript/src/components/Dashboard/loginSpPieChart.js +++ b/javascript/src/components/Dashboard/loginSpPieChart.js @@ -10,15 +10,6 @@ import "jquery/dist/jquery.min.js"; import $ from "jquery"; import { convertDateByGroup, getWeekNumber } from "../Common/utils"; -export const data = [ - ["Task", "Hours per Day"], - ["Work", 11], - ["Eat", 2], - ["Commute", 2], - ["Watch TV", 2], - ["Sleep", 7], -]; - export const options = { pieSliceText: 'value', width: '100%', @@ -33,17 +24,17 @@ export const options = { tooltip: { isHtml: true, trigger: "selection" } }; var spsArray = []; -const LoginSpPieChart = ({ setShowModalHandler, idpEntityId, tenantId, uniqueLogins }) => { +const LoginSpPieChart = ({ setShowModalHandler, idpId, tenantId, uniqueLogins }) => { const [sps, setSps] = useState([["Service Provider", "Logins"]]); var spsChartArray = [["Service Provider", "Logins"]]; useEffect(() => { var params = null - console.log(idpEntityId) + console.log(idpId) params = { params: { tenant_id: tenantId, unique_logins: uniqueLogins } } - if (idpEntityId) { - params["params"]["idp"] = idpEntityId + if (idpId) { + params["params"]["idp"] = idpId } client.get("logins_per_sp/", params). @@ -51,7 +42,7 @@ const LoginSpPieChart = ({ setShowModalHandler, idpEntityId, tenantId, uniqueLog console.log(response) response["data"].forEach(element => { spsChartArray.push([element.name, element.count]) - spsArray.push([element.name, element.identifier]) + spsArray.push([element.id, element.name, element.identifier]) }) setSps(spsChartArray) @@ -77,11 +68,7 @@ const LoginSpPieChart = ({ setShowModalHandler, idpEntityId, tenantId, uniqueLog eventName: "ready", callback: ({ chartWrapper, google }) => { const chart = chartWrapper.getChart(); - // if(!managed){ - // console.log(managed) - // setZerosIfNoDate(chartWrapper.getDataTable(), google) - // } - + google.visualization.events.addListener(chart, 'click', selectHandler); google.visualization.events.addListener(chart, 'onmouseover', showTooltip); google.visualization.events.addListener(chart, 'onmouseout', hideTooltip); From f8e718eb04a6d3d843da1b52bea345f93d9d8532 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 20 Mar 2023 08:57:03 +0200 Subject: [PATCH 110/331] add Idps Page, and Idp page --- app/main.py | 51 ++++--- javascript/package.json | 3 +- javascript/src/App.jsx | 10 +- javascript/src/Pages/Idps/idp.js | 79 +++++++++++ javascript/src/Pages/Idps/idpModal.js | 36 +++++ javascript/src/Pages/Idps/index.js | 64 +++++++++ javascript/src/Pages/Sps/index.js | 54 ++++++++ javascript/src/Pages/Sps/spModal.js | 36 +++++ .../src/components/Common/entityInfo.js | 28 ++++ javascript/src/components/Common/sideNav.js | 6 +- .../src/components/Dashboard/loginTiles.js | 2 +- javascript/src/components/Idps/idpMap.js | 77 +++++++++++ .../src/components/Idps/idpMapToDataTable.js | 60 ++++++++ .../src/components/Idps/idpsDataTable.js | 128 +++++++++++++++++ javascript/src/components/Sps/spsDataTable.js | 129 ++++++++++++++++++ javascript/src/components/datatable.js | 24 ++-- 16 files changed, 753 insertions(+), 34 deletions(-) create mode 100644 javascript/src/Pages/Idps/idp.js create mode 100644 javascript/src/Pages/Idps/idpModal.js create mode 100644 javascript/src/Pages/Idps/index.js create mode 100644 javascript/src/Pages/Sps/index.js create mode 100644 javascript/src/Pages/Sps/spModal.js create mode 100644 javascript/src/components/Common/entityInfo.js create mode 100644 javascript/src/components/Idps/idpMap.js create mode 100644 javascript/src/components/Idps/idpMapToDataTable.js create mode 100644 javascript/src/components/Idps/idpsDataTable.js create mode 100644 javascript/src/components/Sps/spsDataTable.js diff --git a/app/main.py b/app/main.py index b29adfb..5c8942a 100644 --- a/app/main.py +++ b/app/main.py @@ -24,7 +24,8 @@ # Development Environment: dev environment = os.getenv('API_ENVIRONMENT') # Instantiate app according to the environment configuration -app = FastAPI() if environment == "dev" else FastAPI(root_path="/api/v1", root_path_in_servers=False, servers= [{"url": "/api/v1"}]) +app = FastAPI() if environment == "dev" else FastAPI(root_path="/api/v1", + root_path_in_servers=False, servers=[{"url": "/api/v1"}]) MembersReadWithCommunityInfo.update_forward_refs( Community_InfoRead=Community_InfoRead) @@ -209,14 +210,22 @@ def read_services( return services -@app.get("/idps/", response_model=List[Identityprovidersmap]) -def read_services( +@app.get("/idps") +def read_idps( *, session: Session = Depends(get_session), - offset: int = 0 + tenant_id: int, + idpId: int = None ): - - idps = session.exec(select(Identityprovidersmap).offset(offset)).all() + idpId_subquery = "" + if idpId: + idpId_subquery = """ + AND id = {0} + """.format(idpId) + idps = session.exec(""" + SELECT * FROM identityprovidersmap + WHERE tenant_id='{0}' {1} + """.format(tenant_id, idpId_subquery)).all() return idps @@ -479,23 +488,28 @@ def read_logins_countby( count_interval: int = None, tenant_id: int, unique_logins: Union[boolean, None] = False, - idp: str = None, - sp: str = None + idpId: Union[int, None] = None, + spId: Union[int, None] = None, ): interval_subquery = "" + idp_subquery = "" if interval and count_interval: interval_subquery = """AND date > CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) + if idpId: + idp_subquery = """ + AND sourceidpid = '{0}' + """.format(idpId) if unique_logins == False: logins = session.exec(""" select sum(count) as count from statistics_country_hashed WHERE tenant_id={0} - {1}""".format(tenant_id, interval_subquery)).all() + {1} {2}""".format(tenant_id, interval_subquery, idp_subquery)).all() else: logins = session.exec(""" select count(DISTINCT hasheduserid) as count from statistics_country_hashed WHERE tenant_id={0} - {1}""".format(tenant_id, interval_subquery)).all() + {1} {2}""".format(tenant_id, interval_subquery, idp_subquery)).all() return logins @@ -654,10 +668,15 @@ def read_logins_per_country( startDate: str = None, endDate: str = None, tenant_id: int, - unique_logins: Union[boolean, None] = False + unique_logins: Union[boolean, None] = False, + idpId: Union[int, None] = None, ): interval_subquery = "" - + entity_subquery = "" + if idpId: + entity_subquery = """ + AND sourceidpid = {0} + """.format(idpId) if group_by: if startDate and endDate: interval_subquery = """ @@ -681,12 +700,12 @@ def read_logins_per_country( from statistics_country_hashed JOIN country_codes ON countryid=country_codes.id WHERE tenant_id = {3} - {4} + {4} {5} GROUP BY range_date, country ORDER BY range_date,country ASC ) country_logins GROUP BY range_date - """.format(group_by, sub_select, sum, tenant_id, interval_subquery)).all() + """.format(group_by, sub_select, sum, tenant_id, interval_subquery, entity_subquery)).all() else: if startDate and endDate: interval_subquery = """ @@ -706,7 +725,7 @@ def read_logins_per_country( FROM statistics_country_hashed JOIN country_codes ON countryid=country_codes.id WHERE tenant_id = {1} - {2} + {2} {3} GROUP BY country,countrycode - """.format(sub_select, tenant_id, interval_subquery)).all() + """.format(sub_select, tenant_id, interval_subquery, entity_subquery)).all() return logins diff --git a/javascript/package.json b/javascript/package.json index a6b14ea..a197eb2 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -34,7 +34,7 @@ "moment": "^2.29.3", "pdfmake": "^0.2.6", "react": "^18.1.0", - "react-bootstrap": "^2.6.0", + "react-bootstrap": "^2.7.2", "react-bootstrap-sidebar-menu": "^2.0.3", "react-cookie": "^4.1.1", "react-date-picker": "^8.4.0", @@ -48,6 +48,7 @@ "react-router-dom": "^6.3.0", "react-scripts": "5.0.1", "react-select": "^5.6.1", + "react-tabs": "^6.0.0", "react-toastify": "^9.1.1", "react-tooltip": "^4.5.0", "sass": "^1.58.0", diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index 30e2b94..ad397a1 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -9,9 +9,9 @@ import Users from "./Pages/Users"; import Dashboard from "./Pages/Dashboard"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; -// import Idps from "./Pages/Idps"; +import Idps from "./Pages/Idps"; // import Sps from "./Pages/Sps"; -// import Idp from "./Pages/Idps/idp"; +import Idp from "./Pages/Idps/idp"; import "./app.css"; import "./style.scss"; @@ -43,9 +43,9 @@ function App() { }/> }/> }/> - {/* }/> - }/> - }/> */} + }/> + {/* }/> */} + }/> {/* */} diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js new file mode 100644 index 0000000..904d9cf --- /dev/null +++ b/javascript/src/Pages/Idps/idp.js @@ -0,0 +1,79 @@ +import { useState, useContext, useEffect } from "react"; +import Button from 'react-bootstrap/Button'; +import LoginLineChart from "../../components/Dashboard/loginLineChart"; +import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; +import LoginTiles from "../../components/Dashboard/loginTiles"; +import SpsDataTable from "../../components/Sps/spsDataTable"; +import Form from 'react-bootstrap/Form'; +import Container from "react-bootstrap/Container"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; +import EntityInfo from "../../components/Common/entityInfo"; +import IdpMap from "../../components/Idps/idpMap"; +import IdpMapToDataTable from "../../components/Idps/idpMapToDataTable"; +import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; +import 'react-tabs/style/react-tabs.css'; + +const Idp = () => { + const { project, environment, id } = useParams(); + const [tenantId, setTenantId] = useState(0); + const [uniqueLogins, setUniqueLogins] = useState(false); + + //const [identifier, setIdentifier] = useState(""); + useEffect(() => { + console.log(id + "-----") + client.get("tenant/" + project + "/" + environment). + then(response => { + setTenantId(response["data"][0]["id"]) + console.log(tenantId) + + }) + + }, []) + const handleChange = event => { + setUniqueLogins(event.target.checked); + console.log(uniqueLogins) + } + if (tenantId == 0) return; + else + return ( + + + + + + + + + + + + {/* + + + + Map + Datatable + + + + + + + + + + */} + + + ) +} + +export default Idp \ No newline at end of file diff --git a/javascript/src/Pages/Idps/idpModal.js b/javascript/src/Pages/Idps/idpModal.js new file mode 100644 index 0000000..0ff33a9 --- /dev/null +++ b/javascript/src/Pages/Idps/idpModal.js @@ -0,0 +1,36 @@ +import { useState, useContext, useEffect } from "react"; +import Button from 'react-bootstrap/Button'; +import Modal from "react-bootstrap/Modal"; +import LoginLineChart from "../../components/Dashboard/loginLineChart"; +import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; +import LoginTiles from "../../components/Dashboard/loginTiles"; +import SpsDataTable from "../../components/Sps/spsDataTable"; + +const IdpModal = ({showModal, setShowModalHandler, tenantId}) => { + + + const handleClose = () => setShowModalHandler(false); + //const handleShow = () => setShow(true); + + return ( + + + Modal heading + + + + + + + Woohoo, you're reading this text in a modal! + + + + + + ) +} + +export default IdpModal \ No newline at end of file diff --git a/javascript/src/Pages/Idps/index.js b/javascript/src/Pages/Idps/index.js new file mode 100644 index 0000000..b563674 --- /dev/null +++ b/javascript/src/Pages/Idps/index.js @@ -0,0 +1,64 @@ +import { useState, useContext, useEffect } from "react"; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; +import Container from "react-bootstrap/Container"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Form from 'react-bootstrap/Form'; +import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; +import LoginTiles from "../../components/Dashboard/loginTiles"; +import IdpsDataTable from "../../components/Idps/idpsDataTable"; +import IdpModal from "./idpModal"; +import { useNavigate } from "react-router-dom"; + + +const Idps = () => { + const [startDate, setStartDate] = useState(""); + const [endDate, setEndDate] = useState(""); + const [uniqueLogins, setUniqueLogins] = useState(false); + const { project, environment } = useParams(); + const [tenantId, setTenantId] = useState(0); + const [showModal, setShowModal] = useState(false); + useEffect(() => { + client.get("tenant/" + project + "/" + environment). + then(response => { + + setTenantId(response["data"][0]["id"]) + }) + }, []) + const handleChange = event => { + setUniqueLogins(event.target.checked); + console.log(uniqueLogins) + } + let navigate = useNavigate(); + const goToSpecificProvider = id => { + let path = "/"+project+"/"+environment+"/idps/"+id; + navigate(path); + } + + if (tenantId == 0) + return + else return ( + + +

              Identity Providers Logins

              + + + + + + + + + + + + ) + +} +export default Idps; diff --git a/javascript/src/Pages/Sps/index.js b/javascript/src/Pages/Sps/index.js new file mode 100644 index 0000000..b5a1d89 --- /dev/null +++ b/javascript/src/Pages/Sps/index.js @@ -0,0 +1,54 @@ +import { useState, useContext, useEffect } from "react"; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; +import Container from "react-bootstrap/Container"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Form from 'react-bootstrap/Form'; +import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; +import LoginTiles from "../../components/Dashboard/loginTiles"; +import SpsDataTable from "../../components/Sps/spsDataTable"; +import SpModal from "./spModal"; + +const Sps = () => { + const [startDate, setStartDate] = useState(""); + const [endDate, setEndDate] = useState(""); + const [uniqueLogins, setUniqueLogins] = useState(false); + const { project, environment } = useParams(); + const [tenantId, setTenantId] = useState(0); + const [showModal, setShowModal] = useState(false); + useEffect(() => { + client.get("tenant/" + project + "/" + environment). + then(response => { + setTenantId(response["data"][0]["id"]) + }) + }, []) + const handleChange = event => { + setUniqueLogins(event.target.checked); + console.log(uniqueLogins) + } + if (tenantId == 0) + return + else return ( + + +

              Service Providers Logins

              + + + + + + + + + + + ) + +} +export default Sps; diff --git a/javascript/src/Pages/Sps/spModal.js b/javascript/src/Pages/Sps/spModal.js new file mode 100644 index 0000000..96fc4e1 --- /dev/null +++ b/javascript/src/Pages/Sps/spModal.js @@ -0,0 +1,36 @@ +import { useState, useContext, useEffect } from "react"; +import Button from 'react-bootstrap/Button'; +import Modal from "react-bootstrap/Modal"; +import LoginLineChart from "../../components/Dashboard/loginLineChart"; +import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; +import LoginTiles from "../../components/Dashboard/loginTiles"; +import IdpsDataTable from "../../components/Idps/idpsDataTable"; +import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; +const SpModal = ({showModal, setShowModalHandler, tenantId}) => { + + + const handleClose = () => setShowModalHandler(false); + //const handleShow = () => setShow(true); + + return ( + + + Modal heading + + + + + + + Woohoo, you're reading this text in a modal! + + + + + + ) +} + +export default SpModal \ No newline at end of file diff --git a/javascript/src/components/Common/entityInfo.js b/javascript/src/components/Common/entityInfo.js new file mode 100644 index 0000000..7d9732c --- /dev/null +++ b/javascript/src/components/Common/entityInfo.js @@ -0,0 +1,28 @@ + +import { useState, useContext, useEffect } from "react"; +import { client } from '../../utils/api'; +import Container from 'react-bootstrap/Container'; +import Select from 'react-select'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import 'bootstrap/dist/css/bootstrap.min.css'; + +const EntityInfo = (parameters) => { + const [idp, setIdp] = useState([]) + useEffect(() => { + if (parameters['idpId']) { + client.get("idps", { params: { 'tenant_id': parameters['tenantId'], 'idpId': parameters['idpId']} }). + then(idp_response => { + setIdp(idp_response["data"][0]) + console.log(idp_response) + }) + } + }, []) + + return ( +

              {idp.name} ({idp.entityid})

              + ) +} + +export default EntityInfo \ No newline at end of file diff --git a/javascript/src/components/Common/sideNav.js b/javascript/src/components/Common/sideNav.js index 62c6720..30ac905 100644 --- a/javascript/src/components/Common/sideNav.js +++ b/javascript/src/components/Common/sideNav.js @@ -7,7 +7,7 @@ import { useTranslation } from 'react-i18next'; import Sidebar from "react-bootstrap-sidebar-menu"; import Layout from './layout'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faHome, faObjectGroup, faShield, faUsers } from '@fortawesome/free-solid-svg-icons'; +import { faHome, faObjectGroup, faShield, faUsers, faWarehouse } from '@fortawesome/free-solid-svg-icons'; const SideNav = (props) => { // eslint-disable-next-line @@ -31,6 +31,10 @@ const SideNav = (props) => { Home + + + Idps + Users diff --git a/javascript/src/components/Dashboard/loginTiles.js b/javascript/src/components/Dashboard/loginTiles.js index cf8eef9..76021a7 100644 --- a/javascript/src/components/Dashboard/loginTiles.js +++ b/javascript/src/components/Dashboard/loginTiles.js @@ -12,7 +12,7 @@ const LoginTiles = (parameters) => { useEffect(() => { Promise.all([ client.get("logins_countby", - { params: { 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }), + { params: { 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], 'idpId': parameters['idpId']!== undefined ? parameters['idpId'] : null } }), client.get("logins_countby", { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }), client.get("logins_countby", diff --git a/javascript/src/components/Idps/idpMap.js b/javascript/src/components/Idps/idpMap.js new file mode 100644 index 0000000..31d9734 --- /dev/null +++ b/javascript/src/components/Idps/idpMap.js @@ -0,0 +1,77 @@ +import { useState, useContext, useEffect } from "react"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Select from 'react-select'; +import { client } from '../../utils/api'; +import $, { map } from "jquery"; +import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import 'jquery-mapael'; +import 'jquery-mapael/js/maps/world_countries_mercator.js'; + + +const IdpMap = ({startDate, endDate, tenantId, uniqueLogins, idpId}) => { + + useEffect(() => { + client.get("logins_per_country", + { + params: { + 'startDate':startDate, + 'endDate':endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'idpId': idpId + } + }).then(response => { + console.log("MAP????") + console.log(response["data"]) + createMap("idpMapDraw", response["data"]) + }) + }, [startDate, endDate, uniqueLogins]) + + const createMap = (id, mapData, tooltipLabel = "Logins", legendLabel = 'Logins per country') => { + var areas = {}; + var i = 1; + var maxSum = 0; + mapData.forEach(function (mapRow) { + + var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + + //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; + areas[mapRow.countrycode] = { + value: mapRow.sum, + tooltip: { content: contentTooltip } + } + if (mapRow.sum > maxSum) { + maxSum = mapRow.sum; + } + i++; + }) + // Calculate Legends + var legends = calculateLegends(maxSum) + $(".areaLegend").show() + $("#" + id).mapael({ + map: setMapConfiguration(), + legend: setLegend(legendLabel, legends), + areas: areas + }) + + } + + return ( + + +
              +
              +

              Logins Per Country

              +
              +
              +
              +
              +
              + + + + ) +} + +export default IdpMap; \ No newline at end of file diff --git a/javascript/src/components/Idps/idpMapToDataTable.js b/javascript/src/components/Idps/idpMapToDataTable.js new file mode 100644 index 0000000..35099bb --- /dev/null +++ b/javascript/src/components/Idps/idpMapToDataTable.js @@ -0,0 +1,60 @@ +import { useState, useContext, useEffect } from "react"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Select from 'react-select'; +import { client } from '../../utils/api'; +import $, { map } from "jquery"; +import "jquery/dist/jquery.min.js"; +import Datatable from "../datatable"; +import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import 'jquery-mapael'; +import 'jquery-mapael/js/maps/world_countries_mercator.js'; + + +const IdpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, idpId}) => { + const [loginsPerCountry, setLoginsPerCountry] = useState(); + var loginsPerCountryArray = []; + useEffect(() => { + client.get("logins_per_country", + { + params: { + 'startDate':startDate, + 'endDate':endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'idpId': idpId + } + }).then(response => { + //var community = {"created":element.created, "name":element.community_info.name} + console.log(response); + var minDateFromData = "" + response["data"].forEach(element => { + //var range_date = new Date(element.range_date); + // if (minDateFromData == "") { + // minDateFromData = new Date(element.min_date) + // } + var perPeriod = { "Countries": element.country, "Number of Logins": element.sum} + loginsPerCountryArray.push(perPeriod) + + }); + // setMinDate(minDateFromData) + $("#table").DataTable().destroy() + setLoginsPerCountry(loginsPerCountryArray) + }) + }, [uniqueLogins]) + + return ( + + + +
              +

              Logins Per Country

              +
              + + + + + ) +} + +export default IdpMapToDataTable; \ No newline at end of file diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js new file mode 100644 index 0000000..ba68d75 --- /dev/null +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -0,0 +1,128 @@ +import { useState, useEffect } from "react"; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; +import "jquery/dist/jquery.min.js"; +import $ from "jquery"; +import Datatable from "../datatable"; +import dateFormat from 'dateformat'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Button from 'react-bootstrap/Button'; +import DatePicker from "react-datepicker"; +import Dropdown from 'react-dropdown'; +import { ToastContainer, toast } from 'react-toastify'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import 'react-toastify/dist/ReactToastify.css'; +import 'react-dropdown/style.css'; +import "react-datepicker/dist/react-datepicker.css"; + +const dropdownOptions = [ + + { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, + { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, + { value: 'month', label: 'Monthly Basis' }, + { value: 'year', label: 'Yearly Basis' }, +] + +const IdpsDataTable = ({ startDateHandler, endDateHandle, identifier, dataTableId = "table", tenantId, uniqueLogins }) => { + const [idpsLogins, setIdpsLogins] = useState(); + var idpsLoginsArray = []; + const [minDate, setMinDate] = useState(""); + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + const { project, environment } = useParams(); + + useEffect(() => { + var params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } + if (identifier) + params["params"]["sp"] = identifier + client.get("logins_per_idp/", params). + then(response => { + console.log(project); + //var minDateFromData = "" + response["data"].forEach(element => { + + var perIdp = { "Identity Provider Name": '' + element.name + '', "Identity Provider Identifier": element.entityid, "Number of Logins": element.count } + idpsLoginsArray.push(perIdp) + + }); + // setMinDate(minDateFromData) + $("#" + dataTableId).DataTable().destroy() + setIdpsLogins(idpsLoginsArray) + }) + // + + }, [uniqueLogins]) + + const handleChange = () => { + //console.log(event.value); + idpsLoginsArray = [] + if (!startDate || !endDate) { + toast.error('You have to fill both startDate and endDate.', { + position: "top-center", + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: true, + draggable: true, + progress: undefined, + theme: "dark", + }); + return + } + // set parent states + // startDateHandler(startDate) + // endDateHandler(endDate) + + var params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'sp': identifier ? identifier : null, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } + client.get("logins_per_idp/", params). + then(response => { + //console.log(response); + response["data"].forEach(element => { + + var perIdp = { "Identity Provider Name": element.name, "Identity Provider Identifier": element.entityid, "Number of Logins": element.count } + idpsLoginsArray.push(perIdp) + + }); + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#" + dataTableId).DataTable().destroy() + setIdpsLogins(idpsLoginsArray) + + }) + //setSelected(event.value); + }; + + return + + + From: setStartDate(date)}> + To: setEndDate(date)}> + + + + + + + + + +} + +export default IdpsDataTable \ No newline at end of file diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js new file mode 100644 index 0000000..8ef7134 --- /dev/null +++ b/javascript/src/components/Sps/spsDataTable.js @@ -0,0 +1,129 @@ +import { useState, useEffect } from "react"; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; +import "jquery/dist/jquery.min.js"; +import $ from "jquery"; +import Datatable from "../datatable"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Button from 'react-bootstrap/Button'; +import DatePicker from "react-datepicker"; +import { ToastContainer, toast } from 'react-toastify'; +import 'react-toastify/dist/ReactToastify.css'; +import 'react-dropdown/style.css'; +import "react-datepicker/dist/react-datepicker.css"; + +const dropdownOptions = [ + + { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, + { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, + { value: 'month', label: 'Monthly Basis' }, + { value: 'year', label: 'Yearly Basis' }, +] + +const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = "table", tenantId, uniqueLogins }) => { + const [spsLogins, setSpsLogins] = useState(); + var spsLoginsArray = []; + const [minDate, setMinDate] = useState(""); + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + const { project, environment } = useParams(); + + useEffect(() => { + var params = { params: { 'tenant_id': tenantId, 'unique_logins': uniqueLogins } } + if (idpId) + params["params"]["idp"] = idpId + client.get("logins_per_sp/", params). + then(response => { + console.log(response); + //var minDateFromData = "" + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + + // var range_date = new Date(element.range_date); + // if (minDateFromData == "") { + // minDateFromData = new Date(element.min_date) + // } + var perSp = { "Service Provider Name": '' + element.name + '', "Service Provider Identifier": element.identifier, "Number of Logins": element.count } + spsLoginsArray.push(perSp) + + }); + // setMinDate(minDateFromData) + $("#" + dataTableId).DataTable().destroy() + setSpsLogins(spsLoginsArray) + }) + // + + }, [uniqueLogins]) + + const handleChange = () => { + //console.log(event.value); + spsLoginsArray = [] + if (!startDate || !endDate) { + toast.error('You have to fill both startDate and endDate.', { + position: "top-center", + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: true, + draggable: true, + progress: undefined, + theme: "dark", + }); + return + } + // set parent states + // startDateHandler(startDate) + // endDateHandler(endDate) + var params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'idp': idpId ? idpId : null, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } + client.get("logins_per_sp/", params). + then(response => { + //console.log(response); + response["data"].forEach(element => { + + var perSp = { "Service Provider Name": element.name, "Service Provider Identifier": element.entityid, "Number of Logins": element.count } + spsLoginsArray.push(perSp) + + }); + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#" + dataTableId).DataTable().destroy() + setSpsLogins(spsLoginsArray) + + }) + //setSelected(event.value); + }; + + return + + + From: setStartDate(date)}> + To: setEndDate(date)}> + + + + + + + + + +} + +export default SpsDataTable \ No newline at end of file diff --git a/javascript/src/components/datatable.js b/javascript/src/components/datatable.js index fb976c1..741735d 100644 --- a/javascript/src/components/datatable.js +++ b/javascript/src/components/datatable.js @@ -112,16 +112,20 @@ class Datatable extends Component { } ], "autoWidth": false, - // fnRowCallback: function ( - // nRow, - // aData, - // iDisplayIndex, - // iDisplayIndexFull - // ) { - // var index = iDisplayIndexFull + 1; - // $("td:first", nRow).html(index); - // return nRow; - // }, + fnRowCallback: function ( + nRow, + aData, + iDisplayIndex, + iDisplayIndexFull + ) { + + var index = iDisplayIndexFull + 1; + $("td", nRow).each(function (){ + var text = $(this).html() + $(this).html(text.replaceAll('<','<').replaceAll('>', '>')); + }); + return nRow; + }, // lengthMenu: [ // [10, 20, 30, 50, -1], From a79eaa03ce69d0f705d7361c980d827f508cb0a2 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Wed, 22 Mar 2023 10:30:28 +0200 Subject: [PATCH 111/331] Remove unused code --- app/main.py | 17 +---------------- app/models/user_model.py | 23 ----------------------- 2 files changed, 1 insertion(+), 39 deletions(-) delete mode 100644 app/models/user_model.py diff --git a/app/main.py b/app/main.py index 5c8942a..9913fcf 100644 --- a/app/main.py +++ b/app/main.py @@ -1,7 +1,7 @@ from typing import List, Optional, Union import os +import sys from xmlrpc.client import boolean -from app.models.user_model import Users, UsersRead from fastapi import Depends, FastAPI, HTTPException, Query from fastapi.middleware.cors import CORSMiddleware @@ -18,8 +18,6 @@ from app.models.idp_model import * from app.models.country_hashed_user_model import * -import os -import sys sys.path.insert(0, os.path.realpath('__file__')) # Development Environment: dev environment = os.getenv('API_ENVIRONMENT') @@ -315,19 +313,6 @@ def read_country_stats_by_vo( return stats -# Users Endpoints -# -@app.get("/users/", response_model=List[UsersRead]) -def read_users( - *, - session: Session = Depends(get_session), - offset: int = 0 -): - - users = session.exec(select(Users).offset(offset)).all() - return users - - @app.get("/registered_users_country") def read_users_country( *, diff --git a/app/models/user_model.py b/app/models/user_model.py deleted file mode 100644 index 834277a..0000000 --- a/app/models/user_model.py +++ /dev/null @@ -1,23 +0,0 @@ -from typing import List, Optional,TYPE_CHECKING -from sqlmodel import Field, Relationship, Session, SQLModel -from sqlalchemy import UniqueConstraint -from datetime import date, datetime - - -class UserBase(SQLModel): - - hasheduserid: str = Field(primary_key=True) - created: date - status: str - -class Users(UserBase, table=True): - pass - -class UsersRead(UserBase): - pass - - - - - - \ No newline at end of file From 2cce5442e5f6ccd52b3b7be422521b7c4bd2e908 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Wed, 22 Mar 2023 11:18:22 +0200 Subject: [PATCH 112/331] Reorganize routers to files --- app/main.py | 618 +------------------------------------ app/models/__init__.py | 0 app/routers/__init__.py | 0 app/routers/communities.py | 137 ++++++++ app/routers/countries.py | 103 +++++++ app/routers/logins.py | 266 ++++++++++++++++ app/routers/users.py | 162 ++++++++++ 7 files changed, 677 insertions(+), 609 deletions(-) create mode 100644 app/models/__init__.py create mode 100644 app/routers/__init__.py create mode 100644 app/routers/communities.py create mode 100644 app/routers/countries.py create mode 100644 app/routers/logins.py create mode 100644 app/routers/users.py diff --git a/app/main.py b/app/main.py index 9913fcf..f87b9e6 100644 --- a/app/main.py +++ b/app/main.py @@ -18,6 +18,8 @@ from app.models.idp_model import * from app.models.country_hashed_user_model import * +from .routers import communities, countries, logins, users + sys.path.insert(0, os.path.realpath('__file__')) # Development Environment: dev environment = os.getenv('API_ENVIRONMENT') @@ -25,12 +27,12 @@ app = FastAPI() if environment == "dev" else FastAPI(root_path="/api/v1", root_path_in_servers=False, servers=[{"url": "/api/v1"}]) -MembersReadWithCommunityInfo.update_forward_refs( - Community_InfoRead=Community_InfoRead) CommunityReadwithInfo.update_forward_refs( Community_InfoRead=Community_InfoRead) Statistics_Country_HashedwithInfo.update_forward_refs( - IdentityprovidersmapRead=IdentityprovidersmapRead, ServiceprovidersmapRead=ServiceprovidersmapRead, Country_CodesRead=Country_CodesRead) + IdentityprovidersmapRead=IdentityprovidersmapRead, + ServiceprovidersmapRead=ServiceprovidersmapRead, + Country_CodesRead=Country_CodesRead) origins = ["*"] app.add_middleware( @@ -41,124 +43,10 @@ allow_headers=["*"], ) - -# @app.get("/communities/", response_model=List[CommunityReadwithInfo]) -# def read_communities( -# *, -# session: Session = Depends(get_session), -# offset: int = 0 -# ): - -# communities = session.exec(select(Community).offset(offset)).all() -# return communities - - -@app.get("/communities_groupby/{group_by}") -def read_communities( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - tenant_id: int, - interval: Union[str, None] = None, - count_interval: int = None, - startDate: str = None, - endDate: str = None, -): - interval_subquery = "" - if group_by: - if interval and count_interval: - interval_subquery = """WHERE created > - date_trunc('{0}', CURRENT_DATE) - INTERVAL '{1} {2}'""".format(group_by, count_interval, interval) - if startDate and endDate: - interval_subquery = """ - WHERE created BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - if interval_subquery == "": - interval_subquery = """ - WHERE community.tenant_id={0} - """.format(tenant_id) - else: - interval_subquery += """ AND community.tenant_id={0} - """.format(tenant_id) - - communities = session.exec(""" - select count(*) as count, date_trunc( '{0}', created ) as range_date, - min(created) as min_date , string_agg(name,'|| ') as names, - string_agg(to_char(created, 'YYYY-MM-DD'),', ') as created_date, - string_agg(description,'|| ') as description - from community - join community_info on community.community_id=community_info.id - {1} - group by range_date - ORDER BY range_date ASC - """.format(group_by, interval_subquery)).all() - return communities - - -@app.get("/communities/") -def read_community( - *, - session: Session = Depends(get_session), - community_id: Union[None, int] = None, - tenant_id: int): - sql_subquery = '' - if community_id: - sql_subquery = 'id={0} and'.format(community_id) - community = session.exec(""" - SELECT * FROM community_info WHERE {0} tenant_id={1} - """.format(sql_subquery, tenant_id)).all() - # statement = select(Community).options(selectinload(Community.community_info)) - # result = session.exec(statement) - # community = result.one() - # if not community: - # raise HTTPException(status_code=404, detail="Community not found") - return community - - -@app.get("/communities_info/", response_model=List[Community_InfoRead]) -def read_communities_info( - *, - session: Session = Depends(get_session), - offset: int = 0 -): - communities = session.exec(select(Community_Info).offset(offset)).all() - return communities - - -@app.get("/members/", response_model=List[MembersReadWithCommunityInfo]) -def read_members( - *, - session: Session = Depends(get_session), - offset: int = 0, - # community_id: Union[None, int] = None -): - # if not community_id: - # members = session.exec(select(Members).offset(offset)).all() - # else: - members = session.exec(select(Members).offset(offset)).all() - return members - - -@app.get("/members_bystatus/") -def read_members_bystatus( - *, - session: Session = Depends(get_session), - offset: int = 0, - community_id: Union[None, int] = None, - tenant_id: int, -): - if not community_id: - members = session.exec(select(Members).offset(offset)).all() - else: - # members = session.exec(select(Members).offset(offset)).all() - members = session.exec(""" - SELECT count(*) as count, community_id, status FROM members - WHERE community_id={0} AND tenant_id={1} - GROUP BY community_id, status - """.format(community_id, tenant_id)).all() - # members = session.exec(""" SELECT community_id FROM members """) - return members +app.include_router(users.router) +app.include_router(communities.router) +app.include_router(countries.router) +app.include_router(logins.router) @app.get("/tenant/{project_name}/{environment_name}") @@ -226,491 +114,3 @@ def read_idps( """.format(tenant_id, idpId_subquery)).all() return idps - -@app.get("/countries/", response_model=List[Country_CodesRead]) -def read_countries( - *, - session: Session = Depends(get_session), - offset: int = 0 -): - - countries = session.exec(select(Country_Codes).offset(offset)).all() - return countries - - -@app.get("/country_stats/", response_model=List[Statistics_Country_HashedwithInfo]) -def read_country_stats( - *, - session: Session = Depends(get_session), - offset: int = 0 -): - - stats = session.exec( - select(Statistics_Country_Hashed).offset(offset)).all() - return stats - - -@app.get("/country_stats_by_vo/{community_id}") -def read_country_stats_by_vo( - *, - session: Session = Depends(get_session), - offset: int = 0, - community_id: Union[None, int] = None -): - stats = [] - stats_country = session.exec(""" - WITH users_countries AS ( - SELECT statistics_country_hashed.hasheduserid as userid, status, country, countrycode, count(*) as sum_count - FROM statistics_country_hashed - JOIN members ON members.hasheduserid=statistics_country_hashed.hasheduserid - JOIN country_codes ON countryid=country_codes.id - WHERE community_id={0} AND country!='Unknown' - GROUP BY userid, status, country, countrycode - ), - max_count_users_countries AS ( - SELECT DISTINCT userid, status, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid, status) as row_number - FROM users_countries - GROUP BY userid, status - ) - SELECT country,countrycode,count(*) as sum - FROM users_countries - JOIN ( - SELECT userid, status, max_sum_count, max(row_number) - FROM max_count_users_countries GROUP BY userid, status, max_sum_count - ) max_count_users_countries_no_duplicates - ON users_countries.userid=max_count_users_countries_no_duplicates.userid - AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count - GROUP BY country,countrycode - ORDER BY country; - """.format(community_id)).all() - status_per_country = session.exec(""" - WITH users_countries AS ( - SELECT statistics_country_hashed.hasheduserid as userid, status, country, countrycode, count(*) as sum_count - FROM statistics_country_hashed - JOIN members ON members.hasheduserid=statistics_country_hashed.hasheduserid - JOIN country_codes ON countryid=country_codes.id - WHERE community_id={0} AND country!='Unknown' - GROUP BY userid, status, country, countrycode - ), - max_count_users_countries AS ( - SELECT DISTINCT userid, status, max(sum_count) as max_sum_count, row_number() OVER (ORDER BY userid, status) as row_number - FROM users_countries - GROUP BY userid, status - ) - SELECT country,countrycode, users_countries.status, count(*) as sum - FROM users_countries - JOIN ( - SELECT userid, status, max_sum_count, max(row_number) - FROM max_count_users_countries GROUP BY userid, status, max_sum_count - ) max_count_users_countries_no_duplicates - ON users_countries.userid=max_count_users_countries_no_duplicates.userid - AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count - GROUP BY country,countrycode, users_countries.status - ORDER BY country; - """.format(community_id)).all() - stats.append(stats_country) - stats.append(status_per_country) - return stats - - -@app.get("/registered_users_country") -def read_users_country( - *, - session: Session = Depends(get_session), - offset: int = 0, - startDate: str = None, - endDate: str = None, - tenant_id: int -): - interval_subquery = "" - if startDate and endDate: - interval_subquery = """ - WHERE users.created BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - users_countries = session.exec( - """WITH users_countries AS ( - SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count - FROM statistics_country_hashed - JOIN country_codes ON countryid=country_codes.id - WHERE tenant_id = {1} - GROUP BY userid, country, countrycode - ), - max_count_users_countries AS ( - SELECT DISTINCT userid, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid) as row_number - FROM users_countries - GROUP BY userid - ) - SELECT country,countrycode, count(*) as sum - FROM users_countries - JOIN ( - SELECT userid, max_sum_count, max(row_number) - FROM max_count_users_countries GROUP BY userid, max_sum_count - ) max_count_users_countries_no_duplicates - ON users_countries.userid=max_count_users_countries_no_duplicates.userid - AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count - JOIN users ON users.hasheduserid=users_countries.userid AND status='A' - {0} - GROUP BY country,countrycode - ORDER BY country,countrycode - """.format(interval_subquery, tenant_id)).all() - return users_countries - - -@app.get("/registered_users_country_group_by/{group_by}") -def read_users_country_groupby( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - startDate: str = None, - endDate: str = None, - tenant_id: int -): - if group_by: - interval_subquery = "" - if startDate and endDate: - interval_subquery = """ - WHERE users.created BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - users = session.exec( - """WITH users_countries AS ( - SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count - FROM statistics_country_hashed - JOIN country_codes ON countryid=country_codes.id - WHERE tenant_id = {2} - GROUP BY userid, country, countrycode - ), - max_count_users_countries AS ( - SELECT DISTINCT userid, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid) as row_number - FROM users_countries - GROUP BY userid - ) - SELECT range_date, min(created_min_date) as min_date, STRING_AGG(country, '|| ') as countries, sum(sum) as count - FROM - ( - SELECT date_trunc('{0}', users.created) as range_date, CONCAT(country,': ',count(*)) as country, min(users.created) as created_min_date, count(*) as sum - FROM users_countries - JOIN ( - SELECT userid, max_sum_count, max(row_number) - FROM max_count_users_countries GROUP BY userid, max_sum_count - ) max_count_users_countries_no_duplicates - ON users_countries.userid=max_count_users_countries_no_duplicates.userid - AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count - JOIN users ON users.hasheduserid=users_countries.userid AND status='A' - {1} - GROUP BY range_date, country,countrycode - ORDER BY range_date, country - ) user_country_group_by - GROUP BY range_date""".format(group_by, interval_subquery, tenant_id)).all() - return users - - -@app.get("/registered_users_groupby/{group_by}") -def read_users_groupby( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - interval: Union[str, None] = None, - count_interval: int = None, - startDate: str = None, - endDate: str = None, - tenant_id: int -): - - interval_subquery = "" - if group_by: - if interval and count_interval: - interval_subquery = """AND created > - date_trunc('{0}', CURRENT_DATE) - INTERVAL '{1} {2}'""".format(group_by, count_interval, interval) - if startDate and endDate: - interval_subquery = """ - AND created BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - users = session.exec(""" - select count(*) as count, date_trunc( '{0}', created ) as range_date, - min(created) as min_date - from users - WHERE status = 'A' AND tenant_id = {1} - {2} - group by range_date - ORDER BY range_date ASC - """.format(group_by, tenant_id, interval_subquery)).all() - return users - - -@app.get("/registered_users_countby") -def read_users_countby( - *, - session: Session = Depends(get_session), - offset: int = 0, - interval: Union[str, None] = None, - count_interval: int = None, - tenant_id: int -): - - interval_subquery = "" - if interval and count_interval: - interval_subquery = """AND created > - CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) - - users = session.exec(""" - select count(*) as count - from users - WHERE status = 'A' AND tenant_id = {1} - {0}""".format(interval_subquery, tenant_id)).all() - return users - -# Dashboard Page - - -@app.get("/logins_countby") -def read_logins_countby( - *, - session: Session = Depends(get_session), - offset: int = 0, - interval: Union[str, None] = None, - count_interval: int = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False, - idpId: Union[int, None] = None, - spId: Union[int, None] = None, -): - interval_subquery = "" - idp_subquery = "" - if interval and count_interval: - interval_subquery = """AND date > - CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) - if idpId: - idp_subquery = """ - AND sourceidpid = '{0}' - """.format(idpId) - if unique_logins == False: - logins = session.exec(""" - select sum(count) as count - from statistics_country_hashed WHERE tenant_id={0} - {1} {2}""".format(tenant_id, interval_subquery, idp_subquery)).all() - else: - logins = session.exec(""" - select count(DISTINCT hasheduserid) as count - from statistics_country_hashed WHERE tenant_id={0} - {1} {2}""".format(tenant_id, interval_subquery, idp_subquery)).all() - return logins - - -@app.get("/logins_groupby/{group_by}") -def read_logins_groupby( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - idp: str = None, - sp: str = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False -): - interval_subquery = "" - if idp != None: - interval_subquery = """ - JOIN identityprovidersmap ON sourceidpid=identityprovidersmap.id - AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id - WHERE identityprovidersmap.id = '{0}' - """.format(idp) - elif sp != None: - interval_subquery = """ - JOIN serviceprovidersmap ON serviceid=serviceprovidersmap.id - AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id - WHERE serviceprovidersmap.id = '{0}' - """.format(sp) - if interval_subquery == "": - interval_subquery = """WHERE statistics_country_hashed.tenant_id = {0}""".format( - tenant_id) - else: - interval_subquery += """ AND statistics_country_hashed.tenant_id = {0} """.format( - tenant_id) - if unique_logins == False: - logins = session.exec(""" - select sum(count) as count, date_trunc('{0}', date) as date - from statistics_country_hashed - {1} - GROUP BY date_trunc('{0}', date) - ORDER BY date_trunc('{0}', date) ASC - """.format(group_by, interval_subquery)).all() - else: - logins = session.exec(""" - select count(DISTINCT hasheduserid) as count, date_trunc('{0}', date) as date - from statistics_country_hashed - {1} - GROUP BY date_trunc('{0}', date) - ORDER BY date_trunc('{0}', date) ASC - """.format(group_by, interval_subquery)).all() - return logins - - -@app.get("/logins_per_idp/") -def read_logins_per_idp( - *, - session: Session = Depends(get_session), - offset: int = 0, - sp: str = None, - startDate: str = None, - endDate: str = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False -): - interval_subquery = "" - sp_subquery_join = "" - if sp: - sp_subquery_join = """ - JOIN serviceprovidersmap ON serviceprovidersmap.id=serviceid - AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id - AND serviceprovidersmap.tenant_id={1} - AND identifier = '{0}' - """.format(sp, tenant_id) - - if startDate and endDate: - interval_subquery = """ - AND date BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - if unique_logins == False: - sub_select = """ - sum(count) as count - """ - else: - sub_select = """ - count(DISTINCT hasheduserid) as count - """ - logins = session.exec(""" - select identityprovidersmap.id, identityprovidersmap.name, entityid, sourceidpid, {0} - from statistics_country_hashed - join identityprovidersmap ON identityprovidersmap.id=sourceidpid - AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id - {1} - WHERE statistics_country_hashed.tenant_id = {2} - {3} - GROUP BY identityprovidersmap.id, sourceidpid, identityprovidersmap.name, entityid - ORDER BY count DESC - """.format(sub_select, sp_subquery_join, tenant_id, interval_subquery)).all() - - return logins - - -@app.get("/logins_per_sp/") -def read_logins_per_sp( - *, - session: Session = Depends(get_session), - offset: int = 0, - idp: str = None, - startDate: str = None, - endDate: str = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False -): - interval_subquery = "" - idp_subquery_join = "" - if idp: - idp_subquery_join = """ - JOIN identityprovidersmap ON identityprovidersmap.id=sourceidpid - AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id - AND identityprovidersmap.tenant_id={1} - AND identityprovidersmap.id = '{0}' - """.format(idp, tenant_id) - - if startDate and endDate: - interval_subquery = """ - AND date BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - - if unique_logins == False: - sub_select = """ - sum(count) as count - """ - else: - sub_select = """ - count(DISTINCT hasheduserid) as count - """ - - logins = session.exec(""" - select serviceprovidersmap.id, serviceprovidersmap.name, identifier, serviceid, {0} - from statistics_country_hashed - join serviceprovidersmap ON serviceprovidersmap.id=serviceid - AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id - {1} - WHERE statistics_country_hashed.tenant_id = {2} - {3} - GROUP BY serviceprovidersmap.id, serviceid, serviceprovidersmap.name, identifier - ORDER BY count DESC - """.format(sub_select, idp_subquery_join, tenant_id, interval_subquery)).all() - return logins - - -@app.get("/logins_per_country/") -def read_logins_per_country( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: Union[str, None] = None, - startDate: str = None, - endDate: str = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False, - idpId: Union[int, None] = None, -): - interval_subquery = "" - entity_subquery = "" - if idpId: - entity_subquery = """ - AND sourceidpid = {0} - """.format(idpId) - if group_by: - if startDate and endDate: - interval_subquery = """ - AND date BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - - if unique_logins == False: - sub_select = """ - sum(count) as count_country - """ - sum = "sum(count)" - else: - sub_select = """ - count(DISTINCT hasheduserid) as count_country - """ - sum = "count(DISTINCT hasheduserid)" - logins = session.exec(""" - SELECT range_date, sum(count_country) as count, min(min_login_date) as min_date, STRING_AGG(country, '|| ') as countries - FROM ( - SELECT date_trunc('{0}', date) as range_date, min(date) as min_login_date, {1}, CONCAT(country,': ',{2}) as country - from statistics_country_hashed - JOIN country_codes ON countryid=country_codes.id - WHERE tenant_id = {3} - {4} {5} - GROUP BY range_date, country - ORDER BY range_date,country ASC - ) country_logins - GROUP BY range_date - """.format(group_by, sub_select, sum, tenant_id, interval_subquery, entity_subquery)).all() - else: - if startDate and endDate: - interval_subquery = """ - AND date BETWEEN '{0}' AND '{1}' - """.format(startDate, endDate) - - if unique_logins == False: - sub_select = """ - sum(count) as sum - """ - else: - sub_select = """ - count(DISTINCT hasheduserid) as sum - """ - logins = session.exec(""" - SELECT country, countrycode, {0} - FROM statistics_country_hashed - JOIN country_codes ON countryid=country_codes.id - WHERE tenant_id = {1} - {2} {3} - GROUP BY country,countrycode - """.format(sub_select, tenant_id, interval_subquery, entity_subquery)).all() - return logins diff --git a/app/models/__init__.py b/app/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/routers/__init__.py b/app/routers/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/routers/communities.py b/app/routers/communities.py new file mode 100644 index 0000000..fb17d8b --- /dev/null +++ b/app/routers/communities.py @@ -0,0 +1,137 @@ +from fastapi import APIRouter, Depends, HTTPException +from sqlmodel import Field, Session, SQLModel, create_engine, select +from typing import List, Union + +from app.database import get_session +from app.models.community_info_model import * +from app.models.community_model import * +from app.models.member_model import MembersReadWithCommunityInfo + +# from ..dependencies import get_token_header + + +MembersReadWithCommunityInfo.update_forward_refs( + Community_InfoRead=Community_InfoRead) + +router = APIRouter( + tags=["communities"], + # dependencies=[Depends(get_token_header)], + # responses={404: {"description": "Not found"}}, +) + +# @router.get("/communities/", response_model=List[CommunityReadwithInfo]) +# def read_communities( +# *, +# session: Session = Depends(get_session), +# offset: int = 0 +# ): + +# communities = session.exec(select(Community).offset(offset)).all() +# return communities + +@router.get("/members/", response_model=List[MembersReadWithCommunityInfo]) +def read_members( + *, + session: Session = Depends(get_session), + offset: int = 0, + # community_id: Union[None, int] = None +): + # if not community_id: + # members = session.exec(select(Members).offset(offset)).all() + # else: + members = session.exec(select(Members).offset(offset)).all() + return members + + +@router.get("/members_bystatus/") +def read_members_bystatus( + *, + session: Session = Depends(get_session), + offset: int = 0, + community_id: Union[None, int] = None, + tenant_id: int, +): + if not community_id: + members = session.exec(select(Members).offset(offset)).all() + else: + # members = session.exec(select(Members).offset(offset)).all() + members = session.exec(""" + SELECT count(*) as count, community_id, status FROM members + WHERE community_id={0} AND tenant_id={1} + GROUP BY community_id, status + """.format(community_id, tenant_id)).all() + # members = session.exec(""" SELECT community_id FROM members """) + return members + + +@router.get("/communities_groupby/{group_by}") +def read_communities( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + tenant_id: int, + interval: Union[str, None] = None, + count_interval: int = None, + startDate: str = None, + endDate: str = None, +): + interval_subquery = "" + if group_by: + if interval and count_interval: + interval_subquery = """WHERE created > + date_trunc('{0}', CURRENT_DATE) - INTERVAL '{1} {2}'""".format(group_by, count_interval, interval) + if startDate and endDate: + interval_subquery = """ + WHERE created BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + if interval_subquery == "": + interval_subquery = """ + WHERE community.tenant_id={0} + """.format(tenant_id) + else: + interval_subquery += """ AND community.tenant_id={0} + """.format(tenant_id) + + communities = session.exec(""" + select count(*) as count, date_trunc( '{0}', created ) as range_date, + min(created) as min_date , string_agg(name,'|| ') as names, + string_agg(to_char(created, 'YYYY-MM-DD'),', ') as created_date, + string_agg(description,'|| ') as description + from community + join community_info on community.community_id=community_info.id + {1} + group by range_date + ORDER BY range_date ASC + """.format(group_by, interval_subquery)).all() + return communities + + +@router.get("/communities/") +def read_community( + *, + session: Session = Depends(get_session), + community_id: Union[None, int] = None, + tenant_id: int): + sql_subquery = '' + if community_id: + sql_subquery = 'id={0} and'.format(community_id) + community = session.exec(""" + SELECT * FROM community_info WHERE {0} tenant_id={1} + """.format(sql_subquery, tenant_id)).all() + # statement = select(Community).options(selectinload(Community.community_info)) + # result = session.exec(statement) + # community = result.one() + # if not community: + # raise HTTPException(status_code=404, detail="Community not found") + return community + + +@router.get("/communities_info/", response_model=List[Community_InfoRead]) +def read_communities_info( + *, + session: Session = Depends(get_session), + offset: int = 0 +): + communities = session.exec(select(Community_Info).offset(offset)).all() + return communities diff --git a/app/routers/countries.py b/app/routers/countries.py new file mode 100644 index 0000000..fcfc8a5 --- /dev/null +++ b/app/routers/countries.py @@ -0,0 +1,103 @@ +from fastapi import APIRouter, Depends, HTTPException, Query +from app.database import get_session +from sqlmodel import Field, Session, SQLModel, create_engine, select +from typing import Union + +from app.models.country_model import * +from app.models.country_hashed_user_model import * + +# from ..dependencies import get_token_header + +router = APIRouter( + tags=["countries"], + # dependencies=[Depends(get_token_header)], + # responses={404: {"description": "Not found"}}, +) + + +@router.get("/countries/", response_model=List[Country_CodesRead]) +def read_countries( + *, + session: Session = Depends(get_session), + offset: int = 0 +): + + countries = session.exec(select(Country_Codes).offset(offset)).all() + return countries + + +@router.get("/country_stats/", response_model=List[Statistics_Country_HashedwithInfo]) +def read_country_stats( + *, + session: Session = Depends(get_session), + offset: int = 0 +): + + stats = session.exec( + select(Statistics_Country_Hashed).offset(offset)).all() + return stats + + +@router.get("/country_stats_by_vo/{community_id}") +def read_country_stats_by_vo( + *, + session: Session = Depends(get_session), + offset: int = 0, + community_id: Union[None, int] = None +): + stats = [] + stats_country = session.exec(""" + WITH users_countries AS ( + SELECT statistics_country_hashed.hasheduserid as userid, status, country, countrycode, count(*) as sum_count + FROM statistics_country_hashed + JOIN members ON members.hasheduserid=statistics_country_hashed.hasheduserid + JOIN country_codes ON countryid=country_codes.id + WHERE community_id={0} AND country!='Unknown' + GROUP BY userid, status, country, countrycode + ), + max_count_users_countries AS ( + SELECT DISTINCT userid, status, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid, status) as row_number + FROM users_countries + GROUP BY userid, status + ) + SELECT country,countrycode,count(*) as sum + FROM users_countries + JOIN ( + SELECT userid, status, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, status, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + GROUP BY country,countrycode + ORDER BY country; + """.format(community_id)).all() + status_per_country = session.exec(""" + WITH users_countries AS ( + SELECT statistics_country_hashed.hasheduserid as userid, status, country, countrycode, count(*) as sum_count + FROM statistics_country_hashed + JOIN members ON members.hasheduserid=statistics_country_hashed.hasheduserid + JOIN country_codes ON countryid=country_codes.id + WHERE community_id={0} AND country!='Unknown' + GROUP BY userid, status, country, countrycode + ), + max_count_users_countries AS ( + SELECT DISTINCT userid, status, max(sum_count) as max_sum_count, row_number() OVER (ORDER BY userid, status) as row_number + FROM users_countries + GROUP BY userid, status + ) + SELECT country,countrycode, users_countries.status, count(*) as sum + FROM users_countries + JOIN ( + SELECT userid, status, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, status, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + GROUP BY country,countrycode, users_countries.status + ORDER BY country; + """.format(community_id)).all() + stats.append(stats_country) + stats.append(status_per_country) + return stats + + diff --git a/app/routers/logins.py b/app/routers/logins.py new file mode 100644 index 0000000..82138a6 --- /dev/null +++ b/app/routers/logins.py @@ -0,0 +1,266 @@ +from fastapi import APIRouter, Depends, HTTPException +from sqlmodel import Field, Session, SQLModel, create_engine, select +from typing import Union +from xmlrpc.client import boolean + + +from app.database import get_session + +# from ..dependencies import get_token_header + +router = APIRouter( + tags=["logins"], + # dependencies=[Depends(get_token_header)], + # responses={404: {"description": "Not found"}}, +) + +@router.get("/logins_per_idp/") +def read_logins_per_idp( + *, + session: Session = Depends(get_session), + offset: int = 0, + sp: str = None, + startDate: str = None, + endDate: str = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False +): + interval_subquery = "" + sp_subquery_join = "" + if sp: + sp_subquery_join = """ + JOIN serviceprovidersmap ON serviceprovidersmap.id=serviceid + AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id + AND serviceprovidersmap.tenant_id={1} + AND identifier = '{0}' + """.format(sp, tenant_id) + + if startDate and endDate: + interval_subquery = """ + AND date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + if unique_logins == False: + sub_select = """ + sum(count) as count + """ + else: + sub_select = """ + count(DISTINCT hasheduserid) as count + """ + logins = session.exec(""" + select identityprovidersmap.id, identityprovidersmap.name, entityid, sourceidpid, {0} + from statistics_country_hashed + join identityprovidersmap ON identityprovidersmap.id=sourceidpid + AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id + {1} + WHERE statistics_country_hashed.tenant_id = {2} + {3} + GROUP BY identityprovidersmap.id, sourceidpid, identityprovidersmap.name, entityid + ORDER BY count DESC + """.format(sub_select, sp_subquery_join, tenant_id, interval_subquery)).all() + + return logins + + +@router.get("/logins_per_sp/") +def read_logins_per_sp( + *, + session: Session = Depends(get_session), + offset: int = 0, + idp: str = None, + startDate: str = None, + endDate: str = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False +): + interval_subquery = "" + idp_subquery_join = "" + if idp: + idp_subquery_join = """ + JOIN identityprovidersmap ON identityprovidersmap.id=sourceidpid + AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id + AND identityprovidersmap.tenant_id={1} + AND identityprovidersmap.id = '{0}' + """.format(idp, tenant_id) + + if startDate and endDate: + interval_subquery = """ + AND date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + + if unique_logins == False: + sub_select = """ + sum(count) as count + """ + else: + sub_select = """ + count(DISTINCT hasheduserid) as count + """ + + logins = session.exec(""" + select serviceprovidersmap.id, serviceprovidersmap.name, identifier, serviceid, {0} + from statistics_country_hashed + join serviceprovidersmap ON serviceprovidersmap.id=serviceid + AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id + {1} + WHERE statistics_country_hashed.tenant_id = {2} + {3} + GROUP BY serviceprovidersmap.id, serviceid, serviceprovidersmap.name, identifier + ORDER BY count DESC + """.format(sub_select, idp_subquery_join, tenant_id, interval_subquery)).all() + return logins + + +@router.get("/logins_per_country/") +def read_logins_per_country( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: Union[str, None] = None, + startDate: str = None, + endDate: str = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False, + idpId: Union[int, None] = None, +): + interval_subquery = "" + entity_subquery = "" + if idpId: + entity_subquery = """ + AND sourceidpid = {0} + """.format(idpId) + if group_by: + if startDate and endDate: + interval_subquery = """ + AND date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + + if unique_logins == False: + sub_select = """ + sum(count) as count_country + """ + sum = "sum(count)" + else: + sub_select = """ + count(DISTINCT hasheduserid) as count_country + """ + sum = "count(DISTINCT hasheduserid)" + logins = session.exec(""" + SELECT range_date, sum(count_country) as count, min(min_login_date) as min_date, STRING_AGG(country, '|| ') as countries + FROM ( + SELECT date_trunc('{0}', date) as range_date, min(date) as min_login_date, {1}, CONCAT(country,': ',{2}) as country + from statistics_country_hashed + JOIN country_codes ON countryid=country_codes.id + WHERE tenant_id = {3} + {4} {5} + GROUP BY range_date, country + ORDER BY range_date,country ASC + ) country_logins + GROUP BY range_date + """.format(group_by, sub_select, sum, tenant_id, interval_subquery, entity_subquery)).all() + else: + if startDate and endDate: + interval_subquery = """ + AND date BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + + if unique_logins == False: + sub_select = """ + sum(count) as sum + """ + else: + sub_select = """ + count(DISTINCT hasheduserid) as sum + """ + logins = session.exec(""" + SELECT country, countrycode, {0} + FROM statistics_country_hashed + JOIN country_codes ON countryid=country_codes.id + WHERE tenant_id = {1} + {2} {3} + GROUP BY country,countrycode + """.format(sub_select, tenant_id, interval_subquery, entity_subquery)).all() + return logins + + +@router.get("/logins_countby") +def read_logins_countby( + *, + session: Session = Depends(get_session), + offset: int = 0, + interval: Union[str, None] = None, + count_interval: int = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False, + idpId: Union[int, None] = None, + spId: Union[int, None] = None, +): + interval_subquery = "" + idp_subquery = "" + if interval and count_interval: + interval_subquery = """AND date > + CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) + if idpId: + idp_subquery = """ + AND sourceidpid = '{0}' + """.format(idpId) + if unique_logins == False: + logins = session.exec(""" + select sum(count) as count + from statistics_country_hashed WHERE tenant_id={0} + {1} {2}""".format(tenant_id, interval_subquery, idp_subquery)).all() + else: + logins = session.exec(""" + select count(DISTINCT hasheduserid) as count + from statistics_country_hashed WHERE tenant_id={0} + {1} {2}""".format(tenant_id, interval_subquery, idp_subquery)).all() + return logins + + +@router.get("/logins_groupby/{group_by}") +def read_logins_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + idp: str = None, + sp: str = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False +): + interval_subquery = "" + if idp != None: + interval_subquery = """ + JOIN identityprovidersmap ON sourceidpid=identityprovidersmap.id + AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id + WHERE identityprovidersmap.id = '{0}' + """.format(idp) + elif sp != None: + interval_subquery = """ + JOIN serviceprovidersmap ON serviceid=serviceprovidersmap.id + AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id + WHERE serviceprovidersmap.id = '{0}' + """.format(sp) + if interval_subquery == "": + interval_subquery = """WHERE statistics_country_hashed.tenant_id = {0}""".format( + tenant_id) + else: + interval_subquery += """ AND statistics_country_hashed.tenant_id = {0} """.format( + tenant_id) + if unique_logins == False: + logins = session.exec(""" + select sum(count) as count, date_trunc('{0}', date) as date + from statistics_country_hashed + {1} + GROUP BY date_trunc('{0}', date) + ORDER BY date_trunc('{0}', date) ASC + """.format(group_by, interval_subquery)).all() + else: + logins = session.exec(""" + select count(DISTINCT hasheduserid) as count, date_trunc('{0}', date) as date + from statistics_country_hashed + {1} + GROUP BY date_trunc('{0}', date) + ORDER BY date_trunc('{0}', date) ASC + """.format(group_by, interval_subquery)).all() + return logins diff --git a/app/routers/users.py b/app/routers/users.py new file mode 100644 index 0000000..d58af38 --- /dev/null +++ b/app/routers/users.py @@ -0,0 +1,162 @@ +from fastapi import APIRouter, Depends, HTTPException +from sqlmodel import Field, Session, SQLModel, create_engine, select +from typing import Union + +from app.database import get_session + +# from ..dependencies import get_token_header + +router = APIRouter( + tags=["users"], + # dependencies=[Depends(get_token_header)], + # responses={404: {"description": "Not found"}}, +) + + +@router.get("/registered_users_country") +def read_users_country( + *, + session: Session = Depends(get_session), + offset: int = 0, + startDate: str = None, + endDate: str = None, + tenant_id: int +): + interval_subquery = "" + if startDate and endDate: + interval_subquery = """ + WHERE users.created BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + users_countries = session.exec( + """WITH users_countries AS ( + SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count + FROM statistics_country_hashed + JOIN country_codes ON countryid=country_codes.id + WHERE tenant_id = {1} + GROUP BY userid, country, countrycode + ), + max_count_users_countries AS ( + SELECT DISTINCT userid, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid) as row_number + FROM users_countries + GROUP BY userid + ) + SELECT country,countrycode, count(*) as sum + FROM users_countries + JOIN ( + SELECT userid, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + JOIN users ON users.hasheduserid=users_countries.userid AND status='A' + {0} + GROUP BY country,countrycode + ORDER BY country,countrycode + """.format(interval_subquery, tenant_id)).all() + return users_countries + + +@router.get("/registered_users_country_group_by/{group_by}") +def read_users_country_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + startDate: str = None, + endDate: str = None, + tenant_id: int +): + if group_by: + interval_subquery = "" + if startDate and endDate: + interval_subquery = """ + WHERE users.created BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + users = session.exec( + """WITH users_countries AS ( + SELECT statistics_country_hashed.hasheduserid as userid, country, countrycode, count(*) as sum_count + FROM statistics_country_hashed + JOIN country_codes ON countryid=country_codes.id + WHERE tenant_id = {2} + GROUP BY userid, country, countrycode + ), + max_count_users_countries AS ( + SELECT DISTINCT userid, max(sum_count) as max_sum_count,row_number() OVER (ORDER BY userid) as row_number + FROM users_countries + GROUP BY userid + ) + SELECT range_date, min(created_min_date) as min_date, STRING_AGG(country, '|| ') as countries, sum(sum) as count + FROM + ( + SELECT date_trunc('{0}', users.created) as range_date, CONCAT(country,': ',count(*)) as country, min(users.created) as created_min_date, count(*) as sum + FROM users_countries + JOIN ( + SELECT userid, max_sum_count, max(row_number) + FROM max_count_users_countries GROUP BY userid, max_sum_count + ) max_count_users_countries_no_duplicates + ON users_countries.userid=max_count_users_countries_no_duplicates.userid + AND users_countries.sum_count=max_count_users_countries_no_duplicates.max_sum_count + JOIN users ON users.hasheduserid=users_countries.userid AND status='A' + {1} + GROUP BY range_date, country,countrycode + ORDER BY range_date, country + ) user_country_group_by + GROUP BY range_date""".format(group_by, interval_subquery, tenant_id)).all() + return users + + +@router.get("/registered_users_groupby/{group_by}") +def read_users_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + interval: Union[str, None] = None, + count_interval: int = None, + startDate: str = None, + endDate: str = None, + tenant_id: int +): + + interval_subquery = "" + if group_by: + if interval and count_interval: + interval_subquery = """AND created > + date_trunc('{0}', CURRENT_DATE) - INTERVAL '{1} {2}'""".format(group_by, count_interval, interval) + if startDate and endDate: + interval_subquery = """ + AND created BETWEEN '{0}' AND '{1}' + """.format(startDate, endDate) + users = session.exec(""" + select count(*) as count, date_trunc( '{0}', created ) as range_date, + min(created) as min_date + from users + WHERE status = 'A' AND tenant_id = {1} + {2} + group by range_date + ORDER BY range_date ASC + """.format(group_by, tenant_id, interval_subquery)).all() + return users + + +@router.get("/registered_users_countby") +def read_users_countby( + *, + session: Session = Depends(get_session), + offset: int = 0, + interval: Union[str, None] = None, + count_interval: int = None, + tenant_id: int +): + + interval_subquery = "" + if interval and count_interval: + interval_subquery = """AND created > + CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) + + users = session.exec(""" + select count(*) as count + from users + WHERE status = 'A' AND tenant_id = {1} + {0}""".format(interval_subquery, tenant_id)).all() + return users From 5fe90d0b7ed177173b904bf3c2ac1323ce09d111 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 22 Mar 2023 11:52:27 +0200 Subject: [PATCH 113/331] add datatables and map elements --- javascript/src/Pages/Idps/idp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index 904d9cf..c98a211 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -55,7 +55,7 @@ const Idp = () => { - {/* + @@ -70,7 +70,7 @@ const Idp = () => { - */} + ) From d765856c1ee249deefb90247f491da541f98e329 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Wed, 22 Mar 2023 12:43:03 +0200 Subject: [PATCH 114/331] Use async routes --- app/main.py | 42 ++++++++--------- app/routers/communities.py | 61 ++++++++++++------------ app/routers/countries.py | 30 ++++++------ app/routers/logins.py | 96 +++++++++++++++++++------------------- app/routers/users.py | 66 +++++++++++++------------- 5 files changed, 144 insertions(+), 151 deletions(-) diff --git a/app/main.py b/app/main.py index f87b9e6..61a6d7b 100644 --- a/app/main.py +++ b/app/main.py @@ -50,12 +50,12 @@ @app.get("/tenant/{project_name}/{environment_name}") -def read_tenant_byname( - *, - session: Session = Depends(get_session), - offset: int = 0, - project_name: str, - environment_name: str +async def read_tenant_byname( + *, + session: Session = Depends(get_session), + offset: int = 0, + project_name: str, + environment_name: str ): tenant = None if project_name and environment_name: @@ -70,11 +70,11 @@ def read_tenant_byname( @app.get("/environment_byname/{environment_name}") -def read_environment_byname( - *, - session: Session = Depends(get_session), - offset: int = 0, - environment_name: str +async def read_environment_byname( + *, + session: Session = Depends(get_session), + offset: int = 0, + environment_name: str ): environment = None if environment_name: @@ -86,22 +86,21 @@ def read_environment_byname( @app.get("/services/", response_model=List[Serviceprovidersmap]) -def read_services( - *, - session: Session = Depends(get_session), - offset: int = 0 +async def read_services( + *, + session: Session = Depends(get_session), + offset: int = 0 ): - services = session.exec(select(Serviceprovidersmap).offset(offset)).all() return services @app.get("/idps") -def read_idps( - *, - session: Session = Depends(get_session), - tenant_id: int, - idpId: int = None +async def read_idps( + *, + session: Session = Depends(get_session), + tenant_id: int, + idpId: int = None ): idpId_subquery = "" if idpId: @@ -113,4 +112,3 @@ def read_idps( WHERE tenant_id='{0}' {1} """.format(tenant_id, idpId_subquery)).all() return idps - diff --git a/app/routers/communities.py b/app/routers/communities.py index fb17d8b..5b43d5a 100644 --- a/app/routers/communities.py +++ b/app/routers/communities.py @@ -19,8 +19,9 @@ # responses={404: {"description": "Not found"}}, ) + # @router.get("/communities/", response_model=List[CommunityReadwithInfo]) -# def read_communities( +# async def read_communities( # *, # session: Session = Depends(get_session), # offset: int = 0 @@ -30,11 +31,11 @@ # return communities @router.get("/members/", response_model=List[MembersReadWithCommunityInfo]) -def read_members( - *, - session: Session = Depends(get_session), - offset: int = 0, - # community_id: Union[None, int] = None +async def read_members( + *, + session: Session = Depends(get_session), + offset: int = 0, + # community_id: Union[None, int] = None ): # if not community_id: # members = session.exec(select(Members).offset(offset)).all() @@ -44,12 +45,12 @@ def read_members( @router.get("/members_bystatus/") -def read_members_bystatus( - *, - session: Session = Depends(get_session), - offset: int = 0, - community_id: Union[None, int] = None, - tenant_id: int, +async def read_members_bystatus( + *, + session: Session = Depends(get_session), + offset: int = 0, + community_id: Union[None, int] = None, + tenant_id: int, ): if not community_id: members = session.exec(select(Members).offset(offset)).all() @@ -65,16 +66,16 @@ def read_members_bystatus( @router.get("/communities_groupby/{group_by}") -def read_communities( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - tenant_id: int, - interval: Union[str, None] = None, - count_interval: int = None, - startDate: str = None, - endDate: str = None, +async def read_communities( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + tenant_id: int, + interval: Union[str, None] = None, + count_interval: int = None, + startDate: str = None, + endDate: str = None, ): interval_subquery = "" if group_by: @@ -108,10 +109,10 @@ def read_communities( @router.get("/communities/") -def read_community( - *, - session: Session = Depends(get_session), - community_id: Union[None, int] = None, +async def read_community( + *, + session: Session = Depends(get_session), + community_id: Union[None, int] = None, tenant_id: int): sql_subquery = '' if community_id: @@ -128,10 +129,10 @@ def read_community( @router.get("/communities_info/", response_model=List[Community_InfoRead]) -def read_communities_info( - *, - session: Session = Depends(get_session), - offset: int = 0 +async def read_communities_info( + *, + session: Session = Depends(get_session), + offset: int = 0 ): communities = session.exec(select(Community_Info).offset(offset)).all() return communities diff --git a/app/routers/countries.py b/app/routers/countries.py index fcfc8a5..10ac4c7 100644 --- a/app/routers/countries.py +++ b/app/routers/countries.py @@ -16,34 +16,32 @@ @router.get("/countries/", response_model=List[Country_CodesRead]) -def read_countries( - *, - session: Session = Depends(get_session), - offset: int = 0 +async def read_countries( + *, + session: Session = Depends(get_session), + offset: int = 0 ): - countries = session.exec(select(Country_Codes).offset(offset)).all() return countries @router.get("/country_stats/", response_model=List[Statistics_Country_HashedwithInfo]) -def read_country_stats( - *, - session: Session = Depends(get_session), - offset: int = 0 +async def read_country_stats( + *, + session: Session = Depends(get_session), + offset: int = 0 ): - stats = session.exec( select(Statistics_Country_Hashed).offset(offset)).all() return stats @router.get("/country_stats_by_vo/{community_id}") -def read_country_stats_by_vo( - *, - session: Session = Depends(get_session), - offset: int = 0, - community_id: Union[None, int] = None +async def read_country_stats_by_vo( + *, + session: Session = Depends(get_session), + offset: int = 0, + community_id: Union[None, int] = None ): stats = [] stats_country = session.exec(""" @@ -99,5 +97,3 @@ def read_country_stats_by_vo( stats.append(stats_country) stats.append(status_per_country) return stats - - diff --git a/app/routers/logins.py b/app/routers/logins.py index 82138a6..96cd33c 100644 --- a/app/routers/logins.py +++ b/app/routers/logins.py @@ -3,7 +3,6 @@ from typing import Union from xmlrpc.client import boolean - from app.database import get_session # from ..dependencies import get_token_header @@ -14,16 +13,17 @@ # responses={404: {"description": "Not found"}}, ) + @router.get("/logins_per_idp/") -def read_logins_per_idp( - *, - session: Session = Depends(get_session), - offset: int = 0, - sp: str = None, - startDate: str = None, - endDate: str = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False +async def read_logins_per_idp( + *, + session: Session = Depends(get_session), + offset: int = 0, + sp: str = None, + startDate: str = None, + endDate: str = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False ): interval_subquery = "" sp_subquery_join = "" @@ -63,15 +63,15 @@ def read_logins_per_idp( @router.get("/logins_per_sp/") -def read_logins_per_sp( - *, - session: Session = Depends(get_session), - offset: int = 0, - idp: str = None, - startDate: str = None, - endDate: str = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False +async def read_logins_per_sp( + *, + session: Session = Depends(get_session), + offset: int = 0, + idp: str = None, + startDate: str = None, + endDate: str = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False ): interval_subquery = "" idp_subquery_join = "" @@ -112,16 +112,16 @@ def read_logins_per_sp( @router.get("/logins_per_country/") -def read_logins_per_country( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: Union[str, None] = None, - startDate: str = None, - endDate: str = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False, - idpId: Union[int, None] = None, +async def read_logins_per_country( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: Union[str, None] = None, + startDate: str = None, + endDate: str = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False, + idpId: Union[int, None] = None, ): interval_subquery = "" entity_subquery = "" @@ -184,16 +184,16 @@ def read_logins_per_country( @router.get("/logins_countby") -def read_logins_countby( - *, - session: Session = Depends(get_session), - offset: int = 0, - interval: Union[str, None] = None, - count_interval: int = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False, - idpId: Union[int, None] = None, - spId: Union[int, None] = None, +async def read_logins_countby( + *, + session: Session = Depends(get_session), + offset: int = 0, + interval: Union[str, None] = None, + count_interval: int = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False, + idpId: Union[int, None] = None, + spId: Union[int, None] = None, ): interval_subquery = "" idp_subquery = "" @@ -218,15 +218,15 @@ def read_logins_countby( @router.get("/logins_groupby/{group_by}") -def read_logins_groupby( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - idp: str = None, - sp: str = None, - tenant_id: int, - unique_logins: Union[boolean, None] = False +async def read_logins_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + idp: str = None, + sp: str = None, + tenant_id: int, + unique_logins: Union[boolean, None] = False ): interval_subquery = "" if idp != None: diff --git a/app/routers/users.py b/app/routers/users.py index d58af38..7921ea3 100644 --- a/app/routers/users.py +++ b/app/routers/users.py @@ -14,13 +14,13 @@ @router.get("/registered_users_country") -def read_users_country( - *, - session: Session = Depends(get_session), - offset: int = 0, - startDate: str = None, - endDate: str = None, - tenant_id: int +async def read_users_country( + *, + session: Session = Depends(get_session), + offset: int = 0, + startDate: str = None, + endDate: str = None, + tenant_id: int ): interval_subquery = "" if startDate and endDate: @@ -57,14 +57,14 @@ def read_users_country( @router.get("/registered_users_country_group_by/{group_by}") -def read_users_country_groupby( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - startDate: str = None, - endDate: str = None, - tenant_id: int +async def read_users_country_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + startDate: str = None, + endDate: str = None, + tenant_id: int ): if group_by: interval_subquery = "" @@ -106,18 +106,17 @@ def read_users_country_groupby( @router.get("/registered_users_groupby/{group_by}") -def read_users_groupby( - *, - session: Session = Depends(get_session), - offset: int = 0, - group_by: str, - interval: Union[str, None] = None, - count_interval: int = None, - startDate: str = None, - endDate: str = None, - tenant_id: int +async def read_users_groupby( + *, + session: Session = Depends(get_session), + offset: int = 0, + group_by: str, + interval: Union[str, None] = None, + count_interval: int = None, + startDate: str = None, + endDate: str = None, + tenant_id: int ): - interval_subquery = "" if group_by: if interval and count_interval: @@ -140,15 +139,14 @@ def read_users_groupby( @router.get("/registered_users_countby") -def read_users_countby( - *, - session: Session = Depends(get_session), - offset: int = 0, - interval: Union[str, None] = None, - count_interval: int = None, - tenant_id: int +async def read_users_countby( + *, + session: Session = Depends(get_session), + offset: int = 0, + interval: Union[str, None] = None, + count_interval: int = None, + tenant_id: int ): - interval_subquery = "" if interval and count_interval: interval_subquery = """AND created > From 6de0ab0310673bbda6afc59476fe96ba636ba569 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 24 Mar 2023 10:46:28 +0200 Subject: [PATCH 115/331] delete unused file --- app/models/models_old.py | 98 ---------------------------------------- 1 file changed, 98 deletions(-) delete mode 100644 app/models/models_old.py diff --git a/app/models/models_old.py b/app/models/models_old.py deleted file mode 100644 index 59a3f64..0000000 --- a/app/models/models_old.py +++ /dev/null @@ -1,98 +0,0 @@ -from typing import List, Optional -from sqlmodel import Field, Relationship, Session, SQLModel -from sqlalchemy import UniqueConstraint -from datetime import date, datetime - - -# User -class UserBase(SQLModel): - first_name: str - last_name: str - email: str = Field(index=True) - password: str - - -class User(UserBase, table=True): - __table_args__ = (UniqueConstraint("email"),) - id: Optional[int] = Field(default=None, primary_key=True) - - -class UserCreate(UserBase): - pass - - -class UserRead(UserBase): - id: int - - -class UserUpdate(SQLModel): - first_name: Optional[str] = None - last_name: Optional[str] = None - email: Optional[str] = None - password: Optional[str] = None - - -class UserLogin(SQLModel): - email: str - password: str - - -class UserLoginResponse(SQLModel): - id: int - email: str - first_name: str - last_name: str - - -# Communities -class CommunityInfoBase(SQLModel): - name: str - description: str - source: str - #created_at: datetime = Field(default_factory=datetime.utcnow, nullable=False) - #modified_at: Optional[datetime] = None - -class Community_Info(CommunityInfoBase, table=True): - id: Optional[int] = Field(default=None, primary_key=True) - - communities: List["Community"] = Relationship(back_populates="community_info") - -class Community_InfoRead(CommunityInfoBase): - id: int - -class CommunityBase(SQLModel): - created: date = Field(nullable=False) - community_id: int = Field(primary_key=True, foreign_key="community_info.id") - - -class Community(CommunityBase, table=True): - #community_id: Optional[int] = Field(default=None, primary_key=True) - #id: Optional[int] = Field(default=None, primary_key=True) - community_info: Community_Info = Relationship(sa_relationship_kwargs={'uselist': False},back_populates="communities") - -class CommunityRead(CommunityBase): - pass - -class CommunityReadwithInfo(CommunityRead): - community_info: Community_InfoRead - -# class Community_InfoReadwithCommunity(Community_InfoRead): -# pass -# #communities: Optional[Community] = None - -# Songs -class SongBase(SQLModel): - title: str - artist: str - release_date: str - - user_id: Optional[int] = Field(default=None, foreign_key="user.id") - -# class CommunityCreate(CommunityBase): -# pass - - -# class CommunitiesUpdate(SQLModel): -# name: Optional[str] = None -# description: Optional[str] = None -# modified_at: datetime = Field(default_factory=datetime.utcnow, nullable=False) \ No newline at end of file From 9088fd69b058de04e2e8512da58725fa7ddabe9a Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 3 Apr 2023 08:55:51 +0300 Subject: [PATCH 116/331] add Sps Views, make menu links dynamic, refactor code --- app/main.py | 29 +++--- app/routers/logins.py | 25 +++-- javascript/src/App.jsx | 64 ++++++------- javascript/src/Pages/Communities/index.js | 7 +- javascript/src/Pages/Dashboard/index.js | 22 ++++- javascript/src/Pages/Idps/idp.js | 32 ++++--- javascript/src/Pages/Idps/index.js | 16 +++- javascript/src/Pages/Sps/index.js | 21 ++++- javascript/src/Pages/Sps/sp.js | 91 +++++++++++++++++++ javascript/src/Pages/Users/index.js | 7 +- javascript/src/components/Common/context.js | 4 +- .../src/components/Common/entityInfo.js | 16 +++- javascript/src/components/Common/sideNav.js | 33 ++++--- .../Communities/communitiesDataTable.js | 7 +- .../components/Dashboard/loginIdpPieChart.js | 6 +- .../components/Dashboard/loginSpPieChart.js | 5 +- .../src/components/Dashboard/loginTiles.js | 20 +++- .../src/components/Idps/idpsDataTable.js | 15 ++- javascript/src/components/Sps/spMap.js | 76 ++++++++++++++++ .../src/components/Sps/spMapToDataTable.js | 60 ++++++++++++ javascript/src/components/Sps/spsDataTable.js | 7 +- .../Users/registeredUsersDataTable.js | 7 +- 22 files changed, 464 insertions(+), 106 deletions(-) create mode 100644 javascript/src/Pages/Sps/sp.js create mode 100644 javascript/src/components/Sps/spMap.js create mode 100644 javascript/src/components/Sps/spMapToDataTable.js diff --git a/app/main.py b/app/main.py index 61a6d7b..a1076e1 100644 --- a/app/main.py +++ b/app/main.py @@ -84,17 +84,6 @@ async def read_environment_byname( """.format(environment_name)).all() return environment - -@app.get("/services/", response_model=List[Serviceprovidersmap]) -async def read_services( - *, - session: Session = Depends(get_session), - offset: int = 0 -): - services = session.exec(select(Serviceprovidersmap).offset(offset)).all() - return services - - @app.get("/idps") async def read_idps( *, @@ -112,3 +101,21 @@ async def read_idps( WHERE tenant_id='{0}' {1} """.format(tenant_id, idpId_subquery)).all() return idps + +@app.get("/sps") +async def read_sps( + *, + session: Session = Depends(get_session), + tenant_id: int, + spId: int = None +): + spId_subquery = "" + if spId: + spId_subquery = """ + AND id = {0} + """.format(spId) + sps = session.exec(""" + SELECT * FROM serviceprovidersmap + WHERE tenant_id='{0}' {1} + """.format(tenant_id, spId_subquery)).all() + return sps diff --git a/app/routers/logins.py b/app/routers/logins.py index 96cd33c..7f16e7d 100644 --- a/app/routers/logins.py +++ b/app/routers/logins.py @@ -32,7 +32,7 @@ async def read_logins_per_idp( JOIN serviceprovidersmap ON serviceprovidersmap.id=serviceid AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id AND serviceprovidersmap.tenant_id={1} - AND identifier = '{0}' + AND serviceid = '{0}' """.format(sp, tenant_id) if startDate and endDate: @@ -122,13 +122,19 @@ async def read_logins_per_country( tenant_id: int, unique_logins: Union[boolean, None] = False, idpId: Union[int, None] = None, + spId: Union[int, None] = None, ): interval_subquery = "" entity_subquery = "" + sp_subquery = "" if idpId: entity_subquery = """ AND sourceidpid = {0} """.format(idpId) + if spId: + sp_subquery = """ + AND serviceid = {0} + """.format(spId) if group_by: if startDate and endDate: interval_subquery = """ @@ -152,12 +158,12 @@ async def read_logins_per_country( from statistics_country_hashed JOIN country_codes ON countryid=country_codes.id WHERE tenant_id = {3} - {4} {5} + {4} {5} {6} GROUP BY range_date, country ORDER BY range_date,country ASC ) country_logins GROUP BY range_date - """.format(group_by, sub_select, sum, tenant_id, interval_subquery, entity_subquery)).all() + """.format(group_by, sub_select, sum, tenant_id, interval_subquery, entity_subquery, sp_subquery)).all() else: if startDate and endDate: interval_subquery = """ @@ -177,9 +183,9 @@ async def read_logins_per_country( FROM statistics_country_hashed JOIN country_codes ON countryid=country_codes.id WHERE tenant_id = {1} - {2} {3} + {2} {3} {4} GROUP BY country,countrycode - """.format(sub_select, tenant_id, interval_subquery, entity_subquery)).all() + """.format(sub_select, tenant_id, interval_subquery, entity_subquery, sp_subquery)).all() return logins @@ -197,6 +203,7 @@ async def read_logins_countby( ): interval_subquery = "" idp_subquery = "" + sp_subquery = "" if interval and count_interval: interval_subquery = """AND date > CURRENT_DATE - INTERVAL '{0} {1}'""".format(count_interval, interval) @@ -204,16 +211,20 @@ async def read_logins_countby( idp_subquery = """ AND sourceidpid = '{0}' """.format(idpId) + if spId: + sp_subquery = """ + AND serviceid = '{0}' + """.format(spId) if unique_logins == False: logins = session.exec(""" select sum(count) as count from statistics_country_hashed WHERE tenant_id={0} - {1} {2}""".format(tenant_id, interval_subquery, idp_subquery)).all() + {1} {2} {3}""".format(tenant_id, interval_subquery, idp_subquery, sp_subquery)).all() else: logins = session.exec(""" select count(DISTINCT hasheduserid) as count from statistics_country_hashed WHERE tenant_id={0} - {1} {2}""".format(tenant_id, interval_subquery, idp_subquery)).all() + {1} {2} {3}""".format(tenant_id, interval_subquery, idp_subquery, sp_subquery)).all() return logins diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index ad397a1..d68e99e 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -1,56 +1,56 @@ import { useState, useContext, useEffect } from "react"; -import {BrowserRouter as Router, Routes, Route} from "react-router-dom"; +import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; import Login from "./Pages/Login"; import Register from "./Pages/Register"; import ErrorPage from "./Pages/Error"; -import {QueryClient, QueryClientProvider} from 'react-query' +import { QueryClient, QueryClientProvider } from 'react-query' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; import Dashboard from "./Pages/Dashboard"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; import Idps from "./Pages/Idps"; -// import Sps from "./Pages/Sps"; +import Sps from "./Pages/Sps"; +import Sp from "./Pages/Sps/sp"; import Idp from "./Pages/Idps/idp"; import "./app.css"; import "./style.scss"; -import { languageContext } from "./components/Common/context"; +import { languageContext, projectContext, envContext } from "./components/Common/context"; import Layout from "./components/Common/layout"; import SideNav from "./components/Common/sideNav"; import Main from "./components/Common/main"; - +import { useParams } from "react-router-dom"; function App() { // const queryClient = new QueryClient() - const [language,setLanguage]= useState('en'); - + const [language, setLanguage] = useState('en'); + const [projectCon, setProjectCon] = useState(null); + const [envCon, setEnvCon] = useState(null) return ( - - -
              - - {/* */} - - {/* }/> */} - {/* }/> */} - {/* }/> */} - {/* }/> */} - {/* }/> - }/> - }/> - */} - }/> - }/> - }/> - }/> - {/* }/> */} - }/> - - {/* */} - -
              -
              + + + + +
              + + {/* */} + + {/* }/> */} + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + {/* */} + +
              +
              +
              +
              ); } diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index 6a9ccd0..c3cff74 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -7,12 +7,17 @@ import CommunitiesDataTable from "../../components/Communities/communitiesDataTa import CommunitiesMap from "../../components/Communities/communitiesMap"; import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; +import { envContext, projectContext } from "../../components/Common/context"; const Communities = () => { const {project, environment } = useParams(); const [tenantId, setTenantId] = useState(0); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) client.get("tenant/" + project + "/" + environment). then(response => { diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index 0940d7d..5021092 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -1,4 +1,4 @@ -import { useState, useEffect } from "react"; +import { useState, useEffect, useContext } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; import Form from 'react-bootstrap/Form'; @@ -12,6 +12,8 @@ import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; +import { useNavigate } from "react-router-dom"; +import { envContext, projectContext } from "../../components/Common/context"; // import IdpModal from "../Idps/idpModal"; const Dashboard = () => { @@ -21,7 +23,11 @@ const Dashboard = () => { const [tenantId, setTenantId] = useState(0); const [showModal, setShowModal] = useState(false); const { project, environment } = useParams(); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) useEffect(() => { + setProjectCon(project) + setEnvCon(environment) client.get("tenant/" + project + "/" + environment). then(response => { @@ -33,6 +39,16 @@ const Dashboard = () => { setUniqueLogins(event.target.checked); console.log(uniqueLogins) } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + if(provider == "sp") { + var path = "/"+project+"/"+environment+"/sps/"+id; + } + else { + var path = "/"+project+"/"+environment+"/idps/"+id; + } + navigate(path); + } if (tenantId == 0) return else return ( @@ -55,8 +71,8 @@ const Dashboard = () => { - - + + diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index c98a211..e830174 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -1,5 +1,8 @@ -import { useState, useContext, useEffect } from "react"; -import Button from 'react-bootstrap/Button'; +import { useState, useEffect, useContext } from "react"; +import { useParams } from "react-router-dom"; +import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; +import { useNavigate } from "react-router-dom"; +import { client } from '../../utils/api'; import LoginLineChart from "../../components/Dashboard/loginLineChart"; import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; @@ -8,27 +11,26 @@ import Form from 'react-bootstrap/Form'; import Container from "react-bootstrap/Container"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; import EntityInfo from "../../components/Common/entityInfo"; import IdpMap from "../../components/Idps/idpMap"; import IdpMapToDataTable from "../../components/Idps/idpMapToDataTable"; -import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; import 'react-tabs/style/react-tabs.css'; +import { envContext, projectContext } from "../../components/Common/context"; const Idp = () => { const { project, environment, id } = useParams(); const [tenantId, setTenantId] = useState(0); const [uniqueLogins, setUniqueLogins] = useState(false); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) //const [identifier, setIdentifier] = useState(""); useEffect(() => { - console.log(id + "-----") + setProjectCon(project) + setEnvCon(environment) client.get("tenant/" + project + "/" + environment). then(response => { setTenantId(response["data"][0]["id"]) - console.log(tenantId) - }) }, []) @@ -36,6 +38,16 @@ const Idp = () => { setUniqueLogins(event.target.checked); console.log(uniqueLogins) } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + if(provider == "sp") { + var path = "/"+project+"/"+environment+"/sps/"+id; + } + else { + var path = "/"+project+"/"+environment+"/idps/"+id; + } + navigate(path); + } if (tenantId == 0) return; else return ( @@ -55,7 +67,7 @@ const Idp = () => { - + @@ -70,8 +82,6 @@ const Idp = () => { - - ) } diff --git a/javascript/src/Pages/Idps/index.js b/javascript/src/Pages/Idps/index.js index b563674..7bc35da 100644 --- a/javascript/src/Pages/Idps/index.js +++ b/javascript/src/Pages/Idps/index.js @@ -10,6 +10,7 @@ import LoginTiles from "../../components/Dashboard/loginTiles"; import IdpsDataTable from "../../components/Idps/idpsDataTable"; import IdpModal from "./idpModal"; import { useNavigate } from "react-router-dom"; +import { envContext, projectContext } from "../../components/Common/context"; const Idps = () => { @@ -19,10 +20,14 @@ const Idps = () => { const { project, environment } = useParams(); const [tenantId, setTenantId] = useState(0); const [showModal, setShowModal] = useState(false); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) client.get("tenant/" + project + "/" + environment). then(response => { - setTenantId(response["data"][0]["id"]) }) }, []) @@ -31,8 +36,13 @@ const Idps = () => { console.log(uniqueLogins) } let navigate = useNavigate(); - const goToSpecificProvider = id => { - let path = "/"+project+"/"+environment+"/idps/"+id; + const goToSpecificProvider = (id, provider) => { + if(provider == "sp") { + var path = "/"+project+"/"+environment+"/sps/"+id; + } + else { + var path = "/"+project+"/"+environment+"/idps/"+id; + } navigate(path); } diff --git a/javascript/src/Pages/Sps/index.js b/javascript/src/Pages/Sps/index.js index b5a1d89..c1a2731 100644 --- a/javascript/src/Pages/Sps/index.js +++ b/javascript/src/Pages/Sps/index.js @@ -9,6 +9,8 @@ import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import SpsDataTable from "../../components/Sps/spsDataTable"; import SpModal from "./spModal"; +import { useNavigate } from "react-router-dom"; +import { envContext, projectContext } from "../../components/Common/context"; const Sps = () => { const [startDate, setStartDate] = useState(""); @@ -17,7 +19,12 @@ const Sps = () => { const { project, environment } = useParams(); const [tenantId, setTenantId] = useState(0); const [showModal, setShowModal] = useState(false); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) client.get("tenant/" + project + "/" + environment). then(response => { setTenantId(response["data"][0]["id"]) @@ -27,6 +34,16 @@ const Sps = () => { setUniqueLogins(event.target.checked); console.log(uniqueLogins) } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + if(provider == "sp") { + var path = "/"+project+"/"+environment+"/sps/"+id; + } + else { + var path = "/"+project+"/"+environment+"/idps/"+id; + } + navigate(path); + } if (tenantId == 0) return else return ( @@ -45,9 +62,9 @@ const Sps = () => { - + - + {/* */} ) } diff --git a/javascript/src/Pages/Sps/sp.js b/javascript/src/Pages/Sps/sp.js new file mode 100644 index 0000000..f48c4ae --- /dev/null +++ b/javascript/src/Pages/Sps/sp.js @@ -0,0 +1,91 @@ +import { useState, useEffect, useContext } from "react"; +import { useParams } from "react-router-dom"; +import { client } from '../../utils/api'; +import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; +import { useNavigate } from "react-router-dom"; +import LoginLineChart from "../../components/Dashboard/loginLineChart"; +import LoginTiles from "../../components/Dashboard/loginTiles"; +import Form from 'react-bootstrap/Form'; +import Container from "react-bootstrap/Container"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import EntityInfo from "../../components/Common/entityInfo"; +import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; +import IdpsDataTable from "../../components/Idps/idpsDataTable"; +import SpMap from "../../components/Sps/spMap"; +import SpMapToDataTable from "../../components/Sps/spMapToDataTable"; +import 'react-tabs/style/react-tabs.css'; +import { envContext, projectContext } from "../../components/Common/context"; + +const Sp = () => { + const { project, environment, id } = useParams(); + const [tenantId, setTenantId] = useState(0); + const [uniqueLogins, setUniqueLogins] = useState(false); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) + + //const [identifier, setIdentifier] = useState(""); + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) + client.get("tenant/" + project + "/" + environment). + then(response => { + setTenantId(response["data"][0]["id"]) + console.log(tenantId) + + }) + + }, []) + const handleChange = event => { + setUniqueLogins(event.target.checked); + console.log(uniqueLogins) + } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + if(provider == "sp") { + var path = "/"+project+"/"+environment+"/sps/"+id; + } + else { + var path = "/"+project+"/"+environment+"/idps/"+id; + } + navigate(path); + } + if (tenantId == 0) return; + else + return ( + + +
              + + + + + + + + + + + + + Map + Datatable + + + + + + + + + + + ) +} + +export default Sp \ No newline at end of file diff --git a/javascript/src/Pages/Users/index.js b/javascript/src/Pages/Users/index.js index bd8b2f2..289b1b5 100644 --- a/javascript/src/Pages/Users/index.js +++ b/javascript/src/Pages/Users/index.js @@ -8,6 +8,7 @@ import RegisteredUsersMap from "../../components/Users/registeredUsersMap"; import RegisteredUsersTiles from "../../components/Users/registeredUsersTiles"; import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; +import { envContext, projectContext } from "../../components/Common/context"; const Users = () => { @@ -15,8 +16,12 @@ const Users = () => { const [tenantId, setTenantId] = useState(0); const [startDate, setStartDate] = useState(""); const [endDate, setEndDate] = useState(""); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) client.get("tenant/" + project + "/" + environment). then(response => { setTenantId(response["data"][0]["id"]) diff --git a/javascript/src/components/Common/context.js b/javascript/src/components/Common/context.js index aa34ac6..f0abc9c 100644 --- a/javascript/src/components/Common/context.js +++ b/javascript/src/components/Common/context.js @@ -1,4 +1,6 @@ import React from 'react'; export const userContext = React.createContext(); -export const languageContext = React.createContext(); \ No newline at end of file +export const languageContext = React.createContext(); +export const projectContext = React.createContext(); +export const envContext = React.createContext(); \ No newline at end of file diff --git a/javascript/src/components/Common/entityInfo.js b/javascript/src/components/Common/entityInfo.js index 7d9732c..5322050 100644 --- a/javascript/src/components/Common/entityInfo.js +++ b/javascript/src/components/Common/entityInfo.js @@ -10,6 +10,7 @@ import 'bootstrap/dist/css/bootstrap.min.css'; const EntityInfo = (parameters) => { const [idp, setIdp] = useState([]) + const [sp, setSp] = useState([]) useEffect(() => { if (parameters['idpId']) { client.get("idps", { params: { 'tenant_id': parameters['tenantId'], 'idpId': parameters['idpId']} }). @@ -18,11 +19,24 @@ const EntityInfo = (parameters) => { console.log(idp_response) }) } + else if (parameters['spId']) { + client.get("sps", { params: { 'tenant_id': parameters['tenantId'], 'spId': parameters['spId']} }). + then(sp_response => { + setSp(sp_response["data"][0]) + console.log(sp_response) + }) + } }, []) - + if(idp.name) { return (

              {idp.name} ({idp.entityid})

              ) + } + else if (sp.name) { + return ( +

              {sp.name} ({sp.identifier})

              + ) + } } export default EntityInfo \ No newline at end of file diff --git a/javascript/src/components/Common/sideNav.js b/javascript/src/components/Common/sideNav.js index 30ac905..c30b657 100644 --- a/javascript/src/components/Common/sideNav.js +++ b/javascript/src/components/Common/sideNav.js @@ -1,21 +1,16 @@ import React, { useContext } from 'react'; -import { Navbar, Container } from "react-bootstrap"; -import Nav from 'react-bootstrap/Nav'; -import { Link } from "react-router-dom"; import { useTranslation } from 'react-i18next'; -// import {userContext,tenantContext} from '../context.js'; import Sidebar from "react-bootstrap-sidebar-menu"; -import Layout from './layout'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faHome, faObjectGroup, faShield, faUsers, faWarehouse } from '@fortawesome/free-solid-svg-icons'; +import { faDoorOpen, faHome, faUser, faUsers, faWarehouse } from '@fortawesome/free-solid-svg-icons'; +import { envContext, projectContext } from './context'; const SideNav = (props) => { - // eslint-disable-next-line - // const tenant = useContext(tenantContext); - // const user = useContext(userContext); - // eslint-disable-next-line - const { t, i18n } = useTranslation(); + const { t, i18n } = useTranslation(); + const [project, setProject] = useContext(projectContext); + const [environment, setEnvironment] = useContext(envContext); + console.log(project) return ( @@ -27,20 +22,24 @@ const SideNav = (props) => { - + Home - + Idps - - + + + Sps + + + Users - - + + Communities {/* diff --git a/javascript/src/components/Communities/communitiesDataTable.js b/javascript/src/components/Communities/communitiesDataTable.js index c9c1949..bc36bb4 100644 --- a/javascript/src/components/Communities/communitiesDataTable.js +++ b/javascript/src/components/Communities/communitiesDataTable.js @@ -105,7 +105,12 @@ const CommunitiesDataTable = (parameters) => { //setSelected(event.value); }; - return + return +
              +
              +

              Number of logins

              +
              + From: setStartDate(date)}> diff --git a/javascript/src/components/Dashboard/loginIdpPieChart.js b/javascript/src/components/Dashboard/loginIdpPieChart.js index 2952d69..49b024b 100644 --- a/javascript/src/components/Dashboard/loginIdpPieChart.js +++ b/javascript/src/components/Dashboard/loginIdpPieChart.js @@ -26,14 +26,14 @@ export const options = { tooltip: { isHtml: true, trigger: "selection" } }; var idpsArray = []; -const LoginIdpPieChart = ({ setShowModalHandler, spIdentifier, tenantId, uniqueLogins, goToSpecificProviderHandler }) => { +const LoginIdpPieChart = ({ setShowModalHandler, spId, tenantId, uniqueLogins, goToSpecificProviderHandler }) => { const [idps, setIdps] = useState([["Identity Provider", "Identifier", "Logins"]]); var idpsChartArray = [["Identity Provider", "Logins"]]; useEffect(() => { var params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } - if (spIdentifier) { - params["params"]["sp"] = spIdentifier + if (spId) { + params["params"]["sp"] = spId } client.get("logins_per_idp/", params). then(response => { diff --git a/javascript/src/components/Dashboard/loginSpPieChart.js b/javascript/src/components/Dashboard/loginSpPieChart.js index 9325653..9b6c6cb 100644 --- a/javascript/src/components/Dashboard/loginSpPieChart.js +++ b/javascript/src/components/Dashboard/loginSpPieChart.js @@ -24,7 +24,7 @@ export const options = { tooltip: { isHtml: true, trigger: "selection" } }; var spsArray = []; -const LoginSpPieChart = ({ setShowModalHandler, idpId, tenantId, uniqueLogins }) => { +const LoginSpPieChart = ({ setShowModalHandler, idpId, tenantId, uniqueLogins, goToSpecificProviderHandler }) => { const [sps, setSps] = useState([["Service Provider", "Logins"]]); var spsChartArray = [["Service Provider", "Logins"]]; @@ -91,10 +91,11 @@ const LoginSpPieChart = ({ setShowModalHandler, idpId, tenantId, uniqueLogins }) console.log(selection[0]) console.log(identifier) // Show Modal - setShowModalHandler(true) + // setShowModalHandler(true) // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); // unique_logins = $("#myModal").is(':visible') ? $("#unique-logins-modal").is(":checked") : $("#unique-logins-"+activeTab).is(":checked"); // goToSpecificProvider(identifier, legend, type, unique_logins); + goToSpecificProviderHandler(identifier[0], "sp") } } } diff --git a/javascript/src/components/Dashboard/loginTiles.js b/javascript/src/components/Dashboard/loginTiles.js index 76021a7..6fce319 100644 --- a/javascript/src/components/Dashboard/loginTiles.js +++ b/javascript/src/components/Dashboard/loginTiles.js @@ -12,13 +12,25 @@ const LoginTiles = (parameters) => { useEffect(() => { Promise.all([ client.get("logins_countby", - { params: { 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], 'idpId': parameters['idpId']!== undefined ? parameters['idpId'] : null } }), + { params: { 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null } + }), client.get("logins_countby", - { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }), + { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null } + }), client.get("logins_countby", - { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }), + { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null } + }), client.get("logins_countby", - { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'] } }) + { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null } + }) ]).then(function (responses) { // Get a JSON object from each of the responses return Promise.all(responses.map(function (response) { diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index ba68d75..f572d15 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -24,7 +24,7 @@ const dropdownOptions = [ { value: 'year', label: 'Yearly Basis' }, ] -const IdpsDataTable = ({ startDateHandler, endDateHandle, identifier, dataTableId = "table", tenantId, uniqueLogins }) => { +const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "table", tenantId, uniqueLogins }) => { const [idpsLogins, setIdpsLogins] = useState(); var idpsLoginsArray = []; const [minDate, setMinDate] = useState(""); @@ -34,8 +34,9 @@ const IdpsDataTable = ({ startDateHandler, endDateHandle, identifier, dataTableI useEffect(() => { var params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } - if (identifier) - params["params"]["sp"] = identifier + if (spId) { + params["params"]["sp"] = spId + } client.get("logins_per_idp/", params). then(response => { console.log(project); @@ -100,7 +101,13 @@ const IdpsDataTable = ({ startDateHandler, endDateHandle, identifier, dataTableI //setSelected(event.value); }; - return + return + +
              +

              Number of logins

              +
              + + From: setStartDate(date)}> diff --git a/javascript/src/components/Sps/spMap.js b/javascript/src/components/Sps/spMap.js new file mode 100644 index 0000000..a14c22c --- /dev/null +++ b/javascript/src/components/Sps/spMap.js @@ -0,0 +1,76 @@ +import { useState, useContext, useEffect } from "react"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Select from 'react-select'; +import { client } from '../../utils/api'; +import $, { map } from "jquery"; +import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import 'jquery-mapael'; +import 'jquery-mapael/js/maps/world_countries_mercator.js'; + + +const SpMap = ({startDate, endDate, tenantId, uniqueLogins, spId}) => { + + useEffect(() => { + client.get("logins_per_country", + { + params: { + 'startDate':startDate, + 'endDate':endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'spId': spId + } + }).then(response => { + + createMap("spMapDraw", response["data"]) + }) + }, [startDate, endDate, uniqueLogins]) + + const createMap = (id, mapData, tooltipLabel = "Logins", legendLabel = 'Logins per country') => { + var areas = {}; + var i = 1; + var maxSum = 0; + mapData.forEach(function (mapRow) { + + var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + + //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; + areas[mapRow.countrycode] = { + value: mapRow.sum, + tooltip: { content: contentTooltip } + } + if (mapRow.sum > maxSum) { + maxSum = mapRow.sum; + } + i++; + }) + // Calculate Legends + var legends = calculateLegends(maxSum) + $(".areaLegend").show() + $("#" + id).mapael({ + map: setMapConfiguration(), + legend: setLegend(legendLabel, legends), + areas: areas + }) + + } + + return ( + + + +
              +

              Logins Per Country

              +
              +
              +
              +
              +
              + + + + ) +} + +export default SpMap; \ No newline at end of file diff --git a/javascript/src/components/Sps/spMapToDataTable.js b/javascript/src/components/Sps/spMapToDataTable.js new file mode 100644 index 0000000..2293189 --- /dev/null +++ b/javascript/src/components/Sps/spMapToDataTable.js @@ -0,0 +1,60 @@ +import { useState, useContext, useEffect } from "react"; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import Select from 'react-select'; +import { client } from '../../utils/api'; +import $, { map } from "jquery"; +import "jquery/dist/jquery.min.js"; +import Datatable from "../datatable"; +import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import 'jquery-mapael'; +import 'jquery-mapael/js/maps/world_countries_mercator.js'; + + +const spMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, spId}) => { + const [loginsPerCountry, setLoginsPerCountry] = useState(); + var loginsPerCountryArray = []; + useEffect(() => { + client.get("logins_per_country", + { + params: { + 'startDate':startDate, + 'endDate':endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'spId': spId + } + }).then(response => { + //var community = {"created":element.created, "name":element.community_info.name} + console.log(response); + var minDateFromData = "" + response["data"].forEach(element => { + //var range_date = new Date(element.range_date); + // if (minDateFromData == "") { + // minDateFromData = new Date(element.min_date) + // } + var perPeriod = { "Countries": element.country, "Number of Logins": element.sum} + loginsPerCountryArray.push(perPeriod) + + }); + // setMinDate(minDateFromData) + $("#table").DataTable().destroy() + setLoginsPerCountry(loginsPerCountryArray) + }) + }, [uniqueLogins]) + + return ( + + + +
              +

              Logins Per Country

              +
              + + + + + ) +} + +export default spMapToDataTable; \ No newline at end of file diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index 8ef7134..8952d36 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -101,7 +101,12 @@ const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = " //setSelected(event.value); }; - return + return + +
              +

              Number of logins

              +
              + From: setStartDate(date)}> diff --git a/javascript/src/components/Users/registeredUsersDataTable.js b/javascript/src/components/Users/registeredUsersDataTable.js index 7b131da..ee78e95 100644 --- a/javascript/src/components/Users/registeredUsersDataTable.js +++ b/javascript/src/components/Users/registeredUsersDataTable.js @@ -101,7 +101,12 @@ const RegisteredUsersDataTable =({startDateHandler, endDateHandler, tenantId}) = //setSelected(event.value); }; - return + return + +
              +

              Number of logins

              +
              + From: setStartDate(date)}> From 3caa9f5e06e24111a27b2ec01bf218fec63b31ca Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 3 Apr 2023 09:02:29 +0300 Subject: [PATCH 117/331] fix component names --- javascript/src/components/Idps/idpsDataTable.js | 2 +- javascript/src/components/Sps/spMapToDataTable.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index f572d15..3b65fdf 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -79,7 +79,7 @@ const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "t params: { 'startDate': startDate, 'endDate': endDate, - 'sp': identifier ? identifier : null, + 'sp': spId ? spId : null, 'tenant_id': tenantId, 'unique_logins': uniqueLogins } diff --git a/javascript/src/components/Sps/spMapToDataTable.js b/javascript/src/components/Sps/spMapToDataTable.js index 2293189..122e35c 100644 --- a/javascript/src/components/Sps/spMapToDataTable.js +++ b/javascript/src/components/Sps/spMapToDataTable.js @@ -11,7 +11,7 @@ import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; -const spMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, spId}) => { +const SpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, spId}) => { const [loginsPerCountry, setLoginsPerCountry] = useState(); var loginsPerCountryArray = []; useEffect(() => { @@ -57,4 +57,4 @@ const spMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, spId}) => ) } -export default spMapToDataTable; \ No newline at end of file +export default SpMapToDataTable; \ No newline at end of file From 50fb5bd0ab9225cf96f8aeeb0dad4b98eb99a8c4 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 4 Apr 2023 10:00:19 +0300 Subject: [PATCH 118/331] clean code, align headings and elements --- javascript/src/App.jsx | 17 +-- javascript/src/Pages/Communities/index.js | 32 +++-- javascript/src/Pages/Dashboard/index.js | 37 +++--- javascript/src/Pages/Idps/idp.js | 55 +++++---- javascript/src/Pages/Idps/index.js | 37 +++--- javascript/src/Pages/Sps/index.js | 38 +++--- javascript/src/Pages/Sps/sp.js | 55 +++++---- javascript/src/Pages/Users/index.js | 40 +++--- javascript/src/components/Common/sideNav.js | 80 ++++++------ .../Communities/communitiesChart.js | 107 ++++++++-------- .../components/Communities/communitiesMap.js | 115 +++++++++--------- javascript/src/components/Sps/spsDataTable.js | 16 +-- .../components/Users/registeredUsersChart.js | 37 +++--- .../components/Users/registeredUsersMap.js | 43 +++---- .../components/Users/registeredUsersTiles.js | 65 +++++----- javascript/src/style.scss | 8 ++ 16 files changed, 390 insertions(+), 392 deletions(-) diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index d68e99e..8c4ddc5 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -1,14 +1,8 @@ -import { useState, useContext, useEffect } from "react"; +import { useState } from "react"; import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; -import Login from "./Pages/Login"; -import Register from "./Pages/Register"; -import ErrorPage from "./Pages/Error"; -import { QueryClient, QueryClientProvider } from 'react-query' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; import Dashboard from "./Pages/Dashboard"; -import Col from 'react-bootstrap/Col'; -import Row from 'react-bootstrap/Row'; import Idps from "./Pages/Idps"; import Sps from "./Pages/Sps"; import Sp from "./Pages/Sps/sp"; @@ -20,7 +14,6 @@ import { languageContext, projectContext, envContext } from "./components/Common import Layout from "./components/Common/layout"; import SideNav from "./components/Common/sideNav"; import Main from "./components/Common/main"; -import { useParams } from "react-router-dom"; function App() { // const queryClient = new QueryClient() const [language, setLanguage] = useState('en'); @@ -40,10 +33,10 @@ function App() { } /> } /> } /> - } /> - } /> - } /> - } /> + } /> + } /> + } /> + } /> {/* */} diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index c3cff74..7138b95 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -1,40 +1,46 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; +import { envContext, projectContext } from "../../components/Common/context"; import Container from "react-bootstrap/Container"; import CommunitiesChart from "../../components/Communities/communitiesChart"; import CommunitiesDataTable from "../../components/Communities/communitiesDataTable"; import CommunitiesMap from "../../components/Communities/communitiesMap"; import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; -import { envContext, projectContext } from "../../components/Common/context"; +import Col from 'react-bootstrap/Col'; +import Row from 'react-bootstrap/Row'; const Communities = () => { - const {project, environment } = useParams(); + const { project, environment } = useParams(); const [tenantId, setTenantId] = useState(0); const [projectCon, setProjectCon] = useContext(projectContext); const [envCon, setEnvCon] = useContext(envContext) useEffect(() => { setProjectCon(project) - setEnvCon(environment) + setEnvCon(environment) client.get("tenant/" + project + "/" + environment). then(response => { - + setTenantId(response["data"][0]["id"]) - }) + }) }, []) if (tenantId == 0) return else return ( - -
              -

              Communities

              - - - -
              -
              ) + +
              + +
              +

              Communities

              + + + + + +
              + ) } export default Communities; diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index 5021092..2856a83 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -1,6 +1,8 @@ import { useState, useEffect, useContext } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; +import { useNavigate } from "react-router-dom"; +import { envContext, projectContext } from "../../components/Common/context"; import Form from 'react-bootstrap/Form'; import LoginDataTable from "../../components/Dashboard/loginDataTable"; import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; @@ -12,9 +14,6 @@ import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; -import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../components/Common/context"; -// import IdpModal from "../Idps/idpModal"; const Dashboard = () => { const [startDate, setStartDate] = useState(""); @@ -41,11 +40,11 @@ const Dashboard = () => { } let navigate = useNavigate(); const goToSpecificProvider = (id, provider) => { - if(provider == "sp") { - var path = "/"+project+"/"+environment+"/sps/"+id; + if (provider == "sp") { + var path = "/" + project + "/" + environment + "/services/" + id; } else { - var path = "/"+project+"/"+environment+"/idps/"+id; + var path = "/" + project + "/" + environment + "/identity-providers/" + id; } navigate(path); } @@ -55,29 +54,29 @@ const Dashboard = () => { <>
              - -

              Dashboard

              - - - - + +

              Dashboard

              + + + + + - + {/* */} -
              ) diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index e830174..733b50f 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -3,6 +3,7 @@ import { useParams } from "react-router-dom"; import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; import { useNavigate } from "react-router-dom"; import { client } from '../../utils/api'; +import { envContext, projectContext } from "../../components/Common/context"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; @@ -15,21 +16,18 @@ import EntityInfo from "../../components/Common/entityInfo"; import IdpMap from "../../components/Idps/idpMap"; import IdpMapToDataTable from "../../components/Idps/idpMapToDataTable"; import 'react-tabs/style/react-tabs.css'; -import { envContext, projectContext } from "../../components/Common/context"; const Idp = () => { const { project, environment, id } = useParams(); const [tenantId, setTenantId] = useState(0); const [uniqueLogins, setUniqueLogins] = useState(false); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - //const [identifier, setIdentifier] = useState(""); useEffect(() => { setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment). - then(response => { + setEnvCon(environment) + client.get("tenant/" + project + "/" + environment).then(response => { setTenantId(response["data"][0]["id"]) }) @@ -39,30 +37,33 @@ const Idp = () => { console.log(uniqueLogins) } let navigate = useNavigate(); - const goToSpecificProvider = (id, provider) => { - if(provider == "sp") { - var path = "/"+project+"/"+environment+"/sps/"+id; - } - else { - var path = "/"+project+"/"+environment+"/idps/"+id; - } - navigate(path); - } - if (tenantId == 0) return; + const goToSpecificProvider = (id, provider) => { + var path = "" + if (provider === "sp") { + path = "/" + project + "/" + environment + "/services/" + id; + } + else { + path = "/" + project + "/" + environment + "/identity-providers/" + id; + } + navigate(path); + } + if (tenantId === 0) return; else return ( -
              - - - - + + + + + + + diff --git a/javascript/src/Pages/Idps/index.js b/javascript/src/Pages/Idps/index.js index 7bc35da..7449274 100644 --- a/javascript/src/Pages/Idps/index.js +++ b/javascript/src/Pages/Idps/index.js @@ -14,8 +14,7 @@ import { envContext, projectContext } from "../../components/Common/context"; const Idps = () => { - const [startDate, setStartDate] = useState(""); - const [endDate, setEndDate] = useState(""); + const [uniqueLogins, setUniqueLogins] = useState(false); const { project, environment } = useParams(); const [tenantId, setTenantId] = useState(0); @@ -26,8 +25,7 @@ const Idps = () => { useEffect(() => { setProjectCon(project) setEnvCon(environment) - client.get("tenant/" + project + "/" + environment). - then(response => { + client.get("tenant/" + project + "/" + environment).then(response => { setTenantId(response["data"][0]["id"]) }) }, []) @@ -37,30 +35,33 @@ const Idps = () => { } let navigate = useNavigate(); const goToSpecificProvider = (id, provider) => { - if(provider == "sp") { - var path = "/"+project+"/"+environment+"/sps/"+id; + var path = "" + if (provider === "sp") { + path = "/" + project + "/" + environment + "/services/" + id; } else { - var path = "/"+project+"/"+environment+"/idps/"+id; + path = "/" + project + "/" + environment + "/identity-providers/" + id; } navigate(path); } - if (tenantId == 0) + if (tenantId === 0) return else return ( -

              Identity Providers Logins

              - - - - + +

              Identity Providers Logins

              + + + + + diff --git a/javascript/src/Pages/Sps/index.js b/javascript/src/Pages/Sps/index.js index c1a2731..fdb1684 100644 --- a/javascript/src/Pages/Sps/index.js +++ b/javascript/src/Pages/Sps/index.js @@ -8,13 +8,11 @@ import Form from 'react-bootstrap/Form'; import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import SpsDataTable from "../../components/Sps/spsDataTable"; -import SpModal from "./spModal"; import { useNavigate } from "react-router-dom"; import { envContext, projectContext } from "../../components/Common/context"; const Sps = () => { - const [startDate, setStartDate] = useState(""); - const [endDate, setEndDate] = useState(""); + const [uniqueLogins, setUniqueLogins] = useState(false); const { project, environment } = useParams(); const [tenantId, setTenantId] = useState(0); @@ -25,8 +23,7 @@ const Sps = () => { useEffect(() => { setProjectCon(project) setEnvCon(environment) - client.get("tenant/" + project + "/" + environment). - then(response => { + client.get("tenant/" + project + "/" + environment).then(response => { setTenantId(response["data"][0]["id"]) }) }, []) @@ -36,29 +33,32 @@ const Sps = () => { } let navigate = useNavigate(); const goToSpecificProvider = (id, provider) => { - if(provider == "sp") { - var path = "/"+project+"/"+environment+"/sps/"+id; + var path = "" + if (provider === "sp") { + path = "/" + project + "/" + environment + "/services/" + id; } else { - var path = "/"+project+"/"+environment+"/idps/"+id; + path = "/" + project + "/" + environment + "/identity-providers/" + id; } navigate(path); } - if (tenantId == 0) + if (tenantId === 0) return else return ( -

              Service Providers Logins

              - - - - + +

              Service Providers Logins

              + + + + + diff --git a/javascript/src/Pages/Sps/sp.js b/javascript/src/Pages/Sps/sp.js index f48c4ae..5c01353 100644 --- a/javascript/src/Pages/Sps/sp.js +++ b/javascript/src/Pages/Sps/sp.js @@ -21,18 +21,16 @@ const Sp = () => { const { project, environment, id } = useParams(); const [tenantId, setTenantId] = useState(0); const [uniqueLogins, setUniqueLogins] = useState(false); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) //const [identifier, setIdentifier] = useState(""); useEffect(() => { setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment). - then(response => { + setEnvCon(environment) + client.get("tenant/" + project + "/" + environment).then(response => { setTenantId(response["data"][0]["id"]) console.log(tenantId) - }) }, []) @@ -41,30 +39,33 @@ const Sp = () => { console.log(uniqueLogins) } let navigate = useNavigate(); - const goToSpecificProvider = (id, provider) => { - if(provider == "sp") { - var path = "/"+project+"/"+environment+"/sps/"+id; - } - else { - var path = "/"+project+"/"+environment+"/idps/"+id; - } - navigate(path); - } - if (tenantId == 0) return; + const goToSpecificProvider = (id, provider) => { + var path = "" + if (provider === "sp") { + path = "/" + project + "/" + environment + "/services/" + id; + } + else { + path = "/" + project + "/" + environment + "/identity-providers/" + id; + } + navigate(path); + } + if (tenantId === 0) return; else return ( - - - - - + + + + + + + @@ -83,7 +84,7 @@ const Sp = () => { - + ) } diff --git a/javascript/src/Pages/Users/index.js b/javascript/src/Pages/Users/index.js index 289b1b5..679d8fa 100644 --- a/javascript/src/Pages/Users/index.js +++ b/javascript/src/Pages/Users/index.js @@ -1,6 +1,7 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; +import { envContext, projectContext } from "../../components/Common/context"; import Container from "react-bootstrap/Container"; import RegisteredUsersChart from "../../components/Users/registeredUsersChart"; import RegisteredUsersDataTable from "../../components/Users/registeredUsersDataTable"; @@ -8,37 +9,40 @@ import RegisteredUsersMap from "../../components/Users/registeredUsersMap"; import RegisteredUsersTiles from "../../components/Users/registeredUsersTiles"; import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; -import { envContext, projectContext } from "../../components/Common/context"; - +import Col from 'react-bootstrap/Col'; +import Row from 'react-bootstrap/Row'; const Users = () => { - const {project, environment } = useParams(); + const { project, environment } = useParams(); const [tenantId, setTenantId] = useState(0); const [startDate, setStartDate] = useState(""); const [endDate, setEndDate] = useState(""); const [projectCon, setProjectCon] = useContext(projectContext); const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { + useEffect(() => { setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment). - then(response => { + setEnvCon(environment) + client.get("tenant/" + project + "/" + environment).then(response => { setTenantId(response["data"][0]["id"]) - }) + }) }, []) - if (tenantId == 0) return + if (tenantId === 0) return else return ( - -
              -

              Users

              - - - - -
              -
              ) + +
              + +
              +

              Users

              + + + + + + +
              + ) } export default Users; diff --git a/javascript/src/components/Common/sideNav.js b/javascript/src/components/Common/sideNav.js index c30b657..d111ce6 100644 --- a/javascript/src/components/Common/sideNav.js +++ b/javascript/src/components/Common/sideNav.js @@ -1,5 +1,5 @@ import React, { useContext } from 'react'; -import { useTranslation } from 'react-i18next'; +// import { useTranslation } from 'react-i18next'; import Sidebar from "react-bootstrap-sidebar-menu"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faDoorOpen, faHome, faUser, faUsers, faWarehouse } from '@fortawesome/free-solid-svg-icons'; @@ -7,42 +7,42 @@ import { envContext, projectContext } from './context'; const SideNav = (props) => { - const { t, i18n } = useTranslation(); - const [project, setProject] = useContext(projectContext); - const [environment, setEnvironment] = useContext(envContext); + // const { t, i18n } = useTranslation(); + const [project] = useContext(projectContext); + const [environment] = useContext(envContext); console.log(project) return ( - - - - - {/* Logo */} - - - - - - - - Home - - - - Idps - - - - Sps - - - - Users - - - - Communities - - {/* + + + + + {/* Logo */} + + + + + + + + Home + + + + Identity Providers + + + + Services + + + + Users + + + + Communities + + {/* Submenu @@ -56,10 +56,10 @@ const SideNav = (props) => { */} - - - - - ) + + + + + ) } export default SideNav \ No newline at end of file diff --git a/javascript/src/components/Communities/communitiesChart.js b/javascript/src/components/Communities/communitiesChart.js index abf5981..2919d39 100644 --- a/javascript/src/components/Communities/communitiesChart.js +++ b/javascript/src/components/Communities/communitiesChart.js @@ -1,15 +1,13 @@ -import { useState, useContext, useEffect } from "react"; - +import { useState, useEffect } from "react"; import { Chart } from "react-google-charts"; import { client } from '../../utils/api'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; import Select from 'react-select'; import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import 'bootstrap/dist/css/bootstrap.min.css'; import ListCommunities from "./listCommunities"; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; - +import 'bootstrap/dist/css/bootstrap.min.css'; export const options = { year: { @@ -35,8 +33,6 @@ export const options = { } }; - - const options_group_by = [ { value: 'year', label: 'yearly' }, { value: 'month', label: 'monthly' }, @@ -48,28 +44,23 @@ const CommunitiesChart = (parameters) => { const [selected, setSelected] = useState(options_group_by[0].value); const [communities, setCommunities] = useState(); const [communitiesList, setcommunitiesList] = useState([]); - var communitiesArray = [["Date", "Communities"]]; - var communitiesListArray = []; + var communitiesArray = [["Date", "Communities"]]; const [global_options, setGlobalOptions] = useState(); - useEffect(() => { - console.log(parameters["tenantId"]) + var communitiesListArray = []; var hticksArray = []; var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] // Get data for the last 4 years - // TODO: change it to last 1 year - console.log(selected) - console.log(options[selected]) - client.get("communities_groupby/" + selected, - { - params: - { 'interval': selected, - 'count_interval': options[selected]["count_interval"], - 'tenant_id': parameters["tenantId"], - } - }). - then(response => { + client.get("communities_groupby/" + selected, + { + params: + { + 'interval': selected, + 'count_interval': options[selected]["count_interval"], + 'tenant_id': parameters["tenantId"], + } + }).then(response => { console.log(response); response["data"].forEach(element => { @@ -82,10 +73,10 @@ const CommunitiesChart = (parameters) => { var createdDate = element.created_date.split(", ") var description = element.description.split("|| ") element.names.split("|| ").forEach(function (name, index) { - communitiesListArray.push({ name: name, created: createdDate[index], description: description[index] + '
              ' + 'Created Date: ' + createdDate[index] }) + communitiesListArray.push({ name: name, created: createdDate[index], description: description[index] + '
              Created Date: ' + createdDate[index] }) }) - if (selected == "week") { + if (selected === "week") { hticksArray.push({ v: range_date, f: getWeekNumber(range_date) }) } else { @@ -98,7 +89,7 @@ const CommunitiesChart = (parameters) => { temp.push(parseInt(element['count'])); temp.push('
              ' + convertDateByGroup(range_date, selected) - + "
              " + 'Communities' + + '
              Communities' + ": " + parseInt(element['count']) + '
              '); fValues.push(temp); }); @@ -148,41 +139,47 @@ const CommunitiesChart = (parameters) => { }, [selected, parameters]) - + const handleChange = event => { console.log(event.value); setSelected(event.value); }; - - return - - - - - - - - - Select Period: - - - - - - - - - - - - - - - - + + return + +
              +

              Number of Communities created +

              +
              + + + + + + + + + + Select Period: + + + + + + + + + + + + + + + + } diff --git a/javascript/src/components/Communities/communitiesMap.js b/javascript/src/components/Communities/communitiesMap.js index 55b716a..3a2cf44 100644 --- a/javascript/src/components/Communities/communitiesMap.js +++ b/javascript/src/components/Communities/communitiesMap.js @@ -1,65 +1,64 @@ -import { useState, useContext, useEffect } from "react"; +import { useState, useEffect } from "react"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Select from 'react-select'; import { client } from '../../utils/api'; -import $, { map } from "jquery"; +import $ from "jquery"; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; const CommunitiesMap = (parameters) => { - const StatusEnumeration = { - 'A' : 'Active', + const StatusEnumeration = { + 'A': 'Active', 'GP': 'Grace Period', 'O': 'Other' } - + const [communities, setCommunities] = useState(); const [selectedCommunity, setSelectedCommunity] = useState({}); const [membersStatus, setMembersStatus] = useState([]); var communitiesArray = []; useEffect(() => { - client.get("communities", - { - params: - { - 'tenant_id': parameters["tenantId"], - } - }).then(response => { - - response["data"].forEach(element => { - var community = { label: element.name, value: element.id } - communitiesArray.push(community) + client.get("communities", + { + params: + { + 'tenant_id': parameters["tenantId"], + } + }).then(response => { + + response["data"].forEach(element => { + var community = { label: element.name, value: element.id } + communitiesArray.push(community) + }) + + setCommunities(communitiesArray) + }) - - setCommunities(communitiesArray) - - }) }, []) const createMap = (id, mapData, tooltipLabel = "Users", legendLabel = 'Users per country') => { var areas = {}; - var i = 1; var maxSum = 0; mapData[0].forEach(function (mapRow) { - + var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + "
              " var other_status = 0; // Get statuses per country - mapData[1].forEach(function(status_per_country) { - if(status_per_country.country == mapRow.country) { - if(status_per_country.status != 'A' && status_per_country.status != 'GP'){ + mapData[1].forEach(function (status_per_country) { + if (status_per_country.country === mapRow.country) { + if (status_per_country.status !== 'A' && status_per_country.status !== 'GP') { other_status += status_per_country.sum } else { - contentTooltip += StatusEnumeration[status_per_country.status] + ": " + status_per_country.sum + "
              " + contentTooltip += StatusEnumeration[status_per_country.status] + ": " + status_per_country.sum + "
              " } } }) - if(other_status > 0 ){ + if (other_status > 0) { contentTooltip += StatusEnumeration['O'] + ": " + other_status } //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; @@ -70,7 +69,6 @@ const CommunitiesMap = (parameters) => { if (mapRow.sum > maxSum) { maxSum = mapRow.sum; } - i++; }) // Calculate Legends var legends = calculateLegends(maxSum) @@ -80,7 +78,6 @@ const CommunitiesMap = (parameters) => { legend: setLegend(legendLabel, legends), areas: areas }) - } @@ -90,46 +87,48 @@ const CommunitiesMap = (parameters) => { console.log(community_id) client.get("members_bystatus", { params: { 'community_id': community_id, 'tenant_id': parameters['tenantId'] } }).then(response => { var statuses = { 'A': 0, 'GP': 0, 'O': 0 } - //console.log(response["data"][0]) response["data"].forEach(function (memberStatus, index) { - console.log(memberStatus) - if (memberStatus['status'] == 'A' || memberStatus['status'] == 'GP') { + if (memberStatus['status'] === 'A' || memberStatus['status'] === 'GP') { statuses[memberStatus['status']] = memberStatus['count'] } else { - statuses['O']+= memberStatus['count'] + statuses['O'] += memberStatus['count'] } }) setMembersStatus(statuses) }) - client.get("communities/" + community_id, - { - params: { - 'tenant_id': parameters["tenantId"], - } - }).then(result => { - console.log(result) - var community = result["data"] - setSelectedCommunity({ "name": community[0]["name"], "description": community[0]["description"] }) - } - ) - client.get("country_stats_by_vo/" + community_id, - { - params: - { - 'tenant_id': parameters["tenantId"], - } - }).then(result => { - console.log(result) - var stats = result["data"] - createMap("communitiesMap", stats) - }) + client.get("communities/" + community_id, + { + params: { + 'tenant_id': parameters["tenantId"], + } + }).then(result => { + console.log(result) + var community = result["data"] + setSelectedCommunity({ "name": community[0]["name"], "description": community[0]["description"] }) + } + ) + client.get("country_stats_by_vo/" + community_id, + { + params: + { + 'tenant_id': parameters["tenantId"], + } + }).then(result => { + console.log(result) + var stats = result["data"] + createMap("communitiesMap", stats) + }) } return ( - -

              Statistics Per Community

              + + +
              +

              Statistics Per Community

              +
              + - + {selectedCommunity["name"] && {selectedCommunity["name"]}{selectedCommunity["description"]} diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index 8952d36..e47c64f 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -13,14 +13,6 @@ import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; -const dropdownOptions = [ - - { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, - { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, - { value: 'month', label: 'Monthly Basis' }, - { value: 'year', label: 'Yearly Basis' }, -] - const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = "table", tenantId, uniqueLogins }) => { const [spsLogins, setSpsLogins] = useState(); var spsLoginsArray = []; @@ -33,8 +25,7 @@ const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = " var params = { params: { 'tenant_id': tenantId, 'unique_logins': uniqueLogins } } if (idpId) params["params"]["idp"] = idpId - client.get("logins_per_sp/", params). - then(response => { + client.get("logins_per_sp/", params).then(response => { console.log(response); //var minDateFromData = "" response["data"].forEach(element => { @@ -44,7 +35,7 @@ const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = " // if (minDateFromData == "") { // minDateFromData = new Date(element.min_date) // } - var perSp = { "Service Provider Name": '' + element.name + '', "Service Provider Identifier": element.identifier, "Number of Logins": element.count } + var perSp = { "Service Provider Name": '' + element.name + '', "Service Provider Identifier": element.identifier, "Number of Logins": element.count } spsLoginsArray.push(perSp) }); @@ -84,8 +75,7 @@ const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = " 'unique_logins': uniqueLogins } } - client.get("logins_per_sp/", params). - then(response => { + client.get("logins_per_sp/", params).then(response => { //console.log(response); response["data"].forEach(element => { diff --git a/javascript/src/components/Users/registeredUsersChart.js b/javascript/src/components/Users/registeredUsersChart.js index 30111ed..f585949 100644 --- a/javascript/src/components/Users/registeredUsersChart.js +++ b/javascript/src/components/Users/registeredUsersChart.js @@ -1,11 +1,10 @@ -import { useState, useContext, useEffect } from "react"; +import { useState, useEffect } from "react"; import { Chart } from "react-google-charts"; import { client } from '../../utils/api'; -import Container from 'react-bootstrap/Container'; +import { convertDateByGroup, getWeekNumber } from "../Common/utils"; import Select from 'react-select'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; import 'bootstrap/dist/css/bootstrap.min.css'; const options = { @@ -47,23 +46,22 @@ const RegisteredUsersChart = (parameters) => { var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] // Get data for the last 4 years // TODO: change it to last 1 year - client.get("registered_users_groupby/" + selected, - { - params: { - 'interval': 'year', - 'count_interval': '8', - 'tenant_id': parameters['tenantId'] - } - }). - then(response => { - + client.get("registered_users_groupby/" + selected, + { + params: { + 'interval': 'year', + 'count_interval': '8', + 'tenant_id': parameters['tenantId'] + } + }).then(response => { + response["data"].forEach(element => { //var community = {"created":element.created, "name":element.community_info.name} var range_date = new Date(element.range_date); var usersByRange = [range_date, element.count] registeredUsersArray.push(usersByRange) - if (selected == "week") { + if (selected === "week") { hticksArray.push({ v: range_date, f: getWeekNumber(range_date) }) } else { @@ -76,7 +74,7 @@ const RegisteredUsersChart = (parameters) => { temp.push(parseInt(element['count'])); temp.push('
              ' + convertDateByGroup(range_date, selected) - + "
              " + 'Registered Users' + + '
              Registered Users' + ": " + parseInt(element['count']) + '
              '); fValues.push(temp); }); @@ -114,13 +112,16 @@ const RegisteredUsersChart = (parameters) => { console.log(event.value); setSelected(event.value); }; - - return + + return +
              +

              Number of Registered Users

              +
              Select Period: - diff --git a/javascript/src/components/Users/registeredUsersMap.js b/javascript/src/components/Users/registeredUsersMap.js index 2c01384..1ef79fc 100644 --- a/javascript/src/components/Users/registeredUsersMap.js +++ b/javascript/src/components/Users/registeredUsersMap.js @@ -1,35 +1,32 @@ -import { useState, useContext, useEffect } from "react"; +import { useEffect } from "react"; +import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import { client } from '../../utils/api'; +import $ from "jquery"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import Select from 'react-select'; -import { client } from '../../utils/api'; -import $, { map } from "jquery"; -import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; +const RegisteredUsersMap = ({ startDate, endDate, tenantId }) => { -const RegisteredUsersMap = ({startDate, endDate, tenantId}) => { - useEffect(() => { - client.get("registered_users_country", + client.get("registered_users_country", { params: { - 'startDate':startDate, - 'endDate':endDate, - 'tenant_id':tenantId + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId } }).then(response => { - createMap("usersMap", response["data"]) - }) - }, [startDate, endDate]) + createMap("usersMap", response["data"]) + }) + }, [startDate, endDate, tenantId]) const createMap = (id, mapData, tooltipLabel = "Users", legendLabel = 'Users per country') => { var areas = {}; - var i = 1; var maxSum = 0; mapData.forEach(function (mapRow) { - + var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; @@ -40,7 +37,7 @@ const RegisteredUsersMap = ({startDate, endDate, tenantId}) => { if (mapRow.sum > maxSum) { maxSum = mapRow.sum; } - i++; + }) // Calculate Legends var legends = calculateLegends(maxSum) @@ -50,13 +47,17 @@ const RegisteredUsersMap = ({startDate, endDate, tenantId}) => { legend: setLegend(legendLabel, legends), areas: areas }) - + } return ( - -

              Users Per Country

              - + + +
              +

              Users Per Country

              +
              + +
              diff --git a/javascript/src/components/Users/registeredUsersTiles.js b/javascript/src/components/Users/registeredUsersTiles.js index 0a30bde..7604e5b 100644 --- a/javascript/src/components/Users/registeredUsersTiles.js +++ b/javascript/src/components/Users/registeredUsersTiles.js @@ -1,18 +1,14 @@ -import { useState, useContext, useEffect } from "react"; +import { useState, useEffect } from "react"; import { client } from '../../utils/api'; -import Container from 'react-bootstrap/Container'; -import Select from 'react-select'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; -//import 'bootstrap/dist/css/bootstrap.min.css'; const RegisteredUsersTiles = (parameters) => { const [tiles, setTiles] = useState({}); useEffect(() => { Promise.all([ client.get("registered_users_countby", - { params: { 'tenant_id': parameters['tenantId'] } }), + { params: { 'tenant_id': parameters['tenantId'] } }), client.get("registered_users_countby", { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'] } }), client.get("registered_users_countby", @@ -54,39 +50,40 @@ const RegisteredUsersTiles = (parameters) => { return ( -
              -
              -
              -

              {tiles["overall"]}

              -

              Total Registered Users

              +
              + +
              +
              +

              {tiles["overall"]}

              +

              Total Registered Users

              +
              - - - -
              -
              -

              {tiles["year_1"]}

              -

              Last Year Registered Users

              + +
              +
              +
              +

              {tiles["year_1"]}

              +

              Last Year Registered Users

              +
              - - - -
              -
              -

              {tiles["days_30"]}

              -

              Last 30 days Registered Users

              + +
              +
              +
              +

              {tiles["days_30"]}

              +

              Last 30 days Registered Users

              +
              - - - -
              -
              -

              {tiles["days_7"]}

              -

              Last 7 days Registered Users

              + +
              +
              +
              +

              {tiles["days_7"]}

              +

              Last 7 days Registered Users

              +
              - + - ) } diff --git a/javascript/src/style.scss b/javascript/src/style.scss index 1453fa8..1a11bcf 100644 --- a/javascript/src/style.scss +++ b/javascript/src/style.scss @@ -66,6 +66,11 @@ } } } +.title-container { + margin: 0 2%; + width:97%; + display: flex; +} .tiles-container { display: flex; justify-content: space-around; @@ -130,3 +135,6 @@ .react-datepicker-wrapper { padding: 0px 10px; } +.select-community { + padding-top:20px; +} From ed93dc0d1ae2fe1751751cb7fb2607cd75bf19f0 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 4 Apr 2023 10:09:07 +0300 Subject: [PATCH 119/331] add header to all pages --- javascript/src/Pages/Dashboard/index.js | 5 +++-- javascript/src/Pages/Idps/idp.js | 3 +++ javascript/src/Pages/Idps/index.js | 7 ++++--- javascript/src/Pages/Sps/index.js | 6 ++++-- javascript/src/Pages/Sps/sp.js | 6 +++++- 5 files changed, 19 insertions(+), 8 deletions(-) diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index 2856a83..14db81e 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -14,6 +14,7 @@ import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; +import { Container } from "react-bootstrap"; const Dashboard = () => { const [startDate, setStartDate] = useState(""); @@ -52,7 +53,7 @@ const Dashboard = () => { return else return ( - <> +
              @@ -78,7 +79,7 @@ const Dashboard = () => { {/* */}
              - + ) } diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index 733b50f..b1241f0 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -15,6 +15,8 @@ import Col from 'react-bootstrap/Col'; import EntityInfo from "../../components/Common/entityInfo"; import IdpMap from "../../components/Idps/idpMap"; import IdpMapToDataTable from "../../components/Idps/idpMapToDataTable"; +import Header from "../../components/Common/header"; + import 'react-tabs/style/react-tabs.css'; const Idp = () => { @@ -51,6 +53,7 @@ const Idp = () => { else return ( +
              diff --git a/javascript/src/Pages/Idps/index.js b/javascript/src/Pages/Idps/index.js index 7449274..77a03e8 100644 --- a/javascript/src/Pages/Idps/index.js +++ b/javascript/src/Pages/Idps/index.js @@ -1,6 +1,8 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; +import { useNavigate } from "react-router-dom"; +import { envContext, projectContext } from "../../components/Common/context"; import Container from "react-bootstrap/Container"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; @@ -9,9 +11,7 @@ import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import IdpsDataTable from "../../components/Idps/idpsDataTable"; import IdpModal from "./idpModal"; -import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../components/Common/context"; - +import Header from "../../components/Common/header"; const Idps = () => { @@ -49,6 +49,7 @@ const Idps = () => { return else return ( +

              Identity Providers Logins

              diff --git a/javascript/src/Pages/Sps/index.js b/javascript/src/Pages/Sps/index.js index fdb1684..a3411a4 100644 --- a/javascript/src/Pages/Sps/index.js +++ b/javascript/src/Pages/Sps/index.js @@ -1,6 +1,8 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; +import { useNavigate } from "react-router-dom"; +import { envContext, projectContext } from "../../components/Common/context"; import Container from "react-bootstrap/Container"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; @@ -8,8 +10,7 @@ import Form from 'react-bootstrap/Form'; import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import SpsDataTable from "../../components/Sps/spsDataTable"; -import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../components/Common/context"; +import Header from "../../components/Common/header"; const Sps = () => { @@ -46,6 +47,7 @@ const Sps = () => { return else return ( +

              Service Providers Logins

              diff --git a/javascript/src/Pages/Sps/sp.js b/javascript/src/Pages/Sps/sp.js index 5c01353..1f805c6 100644 --- a/javascript/src/Pages/Sps/sp.js +++ b/javascript/src/Pages/Sps/sp.js @@ -3,6 +3,7 @@ import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; import { useNavigate } from "react-router-dom"; +import { envContext, projectContext } from "../../components/Common/context"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import Form from 'react-bootstrap/Form'; @@ -14,8 +15,10 @@ import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; import IdpsDataTable from "../../components/Idps/idpsDataTable"; import SpMap from "../../components/Sps/spMap"; import SpMapToDataTable from "../../components/Sps/spMapToDataTable"; +import Header from "../../components/Common/header"; + import 'react-tabs/style/react-tabs.css'; -import { envContext, projectContext } from "../../components/Common/context"; + const Sp = () => { const { project, environment, id } = useParams(); @@ -53,6 +56,7 @@ const Sp = () => { else return ( +
              From 165e6b559a20b00fe26721dc4dc7f62b79d17529 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 4 Apr 2023 10:24:24 +0300 Subject: [PATCH 120/331] Trying with authlib and starllete (#6) * Trying with authlib and starllete * Testing authlib * Fixed authentication flow * Remove config.py changes --- app/auth/__init__.py | 0 app/auth/auth.py | 260 ++++++++++++++++++++++++++++++++++++ app/auth/discovery.py | 49 +++++++ app/auth/grant_types.py | 10 ++ app/auth/idtoken_types.py | 54 ++++++++ app/main.py | 48 +++++-- app/routers/authenticate.py | 59 ++++++++ config.py | 2 +- requirements.txt | 24 ++-- 9 files changed, 483 insertions(+), 23 deletions(-) create mode 100644 app/auth/__init__.py create mode 100644 app/auth/auth.py create mode 100644 app/auth/discovery.py create mode 100644 app/auth/grant_types.py create mode 100644 app/auth/idtoken_types.py create mode 100644 app/routers/authenticate.py diff --git a/app/auth/__init__.py b/app/auth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/auth/auth.py b/app/auth/auth.py new file mode 100644 index 0000000..ed8759d --- /dev/null +++ b/app/auth/auth.py @@ -0,0 +1,260 @@ +""" +Module for validating Open ID Connect tokens. +Usage +===== +.. code-block:: python3 + # This assumes you've already configured Auth in your_app/auth.py + from your_app.auth import auth + @app.get("/auth") + def test_auth(authenticated_user: IDToken = Security(auth.required)): + return f"Hello {authenticated_user.preferred_username}" +""" + +from typing import List +from typing import Optional +from typing import Type + +from fastapi import Depends +from fastapi import HTTPException +from fastapi import Request +from fastapi import status +from fastapi.openapi.models import OAuthFlowAuthorizationCode +from fastapi.openapi.models import OAuthFlowClientCredentials +from fastapi.openapi.models import OAuthFlowImplicit +from fastapi.openapi.models import OAuthFlowPassword +from fastapi.openapi.models import OAuthFlows +from fastapi.security import HTTPAuthorizationCredentials +from fastapi.security import HTTPBearer +from fastapi.security import OAuth2 +from fastapi.security import SecurityScopes +from jose import ExpiredSignatureError +from jose import JWTError +from jose import jwt +from jose.exceptions import JWTClaimsError + +from app.auth import discovery +from app.auth.grant_types import GrantType +from app.auth.idtoken_types import IDToken + + +class Auth(OAuth2): + def __init__( + self, + openid_connect_url: str, + issuer: Optional[str] = None, + client_id: Optional[str] = None, + redirect_uri: Optional[str] = None, + scopes: List[str] = list(), + grant_types: List[GrantType] = [GrantType.IMPLICIT], + signature_cache_ttl: int = 3600, + idtoken_model: Type[IDToken] = IDToken, + ): + """Configure authentication :func:`auth = Auth(...) ` and then: + 1. Show authentication in the interactive docs with :func:`Depends(auth) ` + when setting up FastAPI. + 2. Use :func:`Security(auth.required) ` or + :func:`Security(auth.optional) ` in your endpoints to + check user credentials. + Args: + openid_connect_url (URL): URL to the "well known" openid connect config + e.g. https://dev-123456.okta.com/.well-known/openid-configuration + issuer (URL): (Optional) The issuer URL from your auth server. + client_id (str): (Optional) The client_id configured by your auth server. + scopes (Dict[str, str]): (Optional) A dictionary of scopes and their descriptions. + grant_types (List[GrantType]): (Optional) Grant types shown in docs. + signature_cache_ttl (int): (Optional) How many seconds your app should + cache the authorization server's public signatures. + idtoken_model (Type): (Optional) The model to use for validating the ID Token. + Raises: + Nothing intentional + """ + + self.openid_connect_url = openid_connect_url + self.issuer = issuer + self.client_id = client_id + self.idtoken_model = idtoken_model + self.scopes = scopes + self.redirect_uri = redirect_uri + + self.discover = discovery.configure(cache_ttl=signature_cache_ttl) + oidc_discoveries = self.discover.auth_server( + openid_connect_url=self.openid_connect_url + ) + scopes_dict = { + scope: "" for scope in self.discover.supported_scopes(oidc_discoveries) + } + + flows = OAuthFlows() + if GrantType.AUTHORIZATION_CODE in grant_types: + flows.authorizationCode = OAuthFlowAuthorizationCode( + authorizationUrl=self.discover.authorization_url(oidc_discoveries), + tokenUrl=self.discover.token_url(oidc_discoveries), + scopes=scopes_dict, + ) + + if GrantType.CLIENT_CREDENTIALS in grant_types: + flows.clientCredentials = OAuthFlowClientCredentials( + tokenUrl=self.discover.token_url(oidc_discoveries), + scopes=scopes_dict, + ) + + if GrantType.PASSWORD in grant_types: + flows.password = OAuthFlowPassword( + tokenUrl=self.discover.token_url(oidc_discoveries), + scopes=scopes_dict, + ) + + if GrantType.IMPLICIT in grant_types: + flows.implicit = OAuthFlowImplicit( + authorizationUrl=self.discover.authorization_url(oidc_discoveries), + scopes=scopes_dict, + ) + + super().__init__( + scheme_name="OIDC", + flows=flows, + auto_error=False, + ) + + async def __call__(self, request: Request) -> None: + return None + + def required( + self, + security_scopes: SecurityScopes, + authorization_credentials: Optional[HTTPAuthorizationCredentials] = Depends( + HTTPBearer() + ), + ) -> IDToken: + """Validate and parse OIDC ID token against configuration. + Note this function caches the signatures and algorithms of the issuing + server for signature_cache_ttl seconds. + Args: + security_scopes (SecurityScopes): Security scopes + auth_header (str): Base64 encoded OIDC Token. This is invoked + behind the scenes by Depends. + Return: + IDToken (self.idtoken_model): User information + raises: + HTTPException(status_code=401, detail=f"Unauthorized: {err}") + IDToken validation errors + """ + + id_token = self.authenticate_user( + security_scopes, + authorization_credentials, + auto_error=True, + ) + if id_token is None: + raise HTTPException(status.HTTP_401_UNAUTHORIZED) + else: + return id_token + + def optional( + self, + security_scopes: SecurityScopes, + authorization_credentials: Optional[HTTPAuthorizationCredentials] = Depends( + HTTPBearer(auto_error=False) + ), + ) -> Optional[IDToken]: + """Optionally validate and parse OIDC ID token against configuration. + Will not raise if the user is not authenticated. Note this function + caches the signatures and algorithms of the issuing server for + signature_cache_ttl seconds. + Args: + security_scopes (SecurityScopes): Security scopes + auth_header (str): Base64 encoded OIDC Token. This is invoked + behind the scenes by Depends. + Return: + IDToken (self.idtoken_model): User information + raises: + IDToken validation errors + """ + + return self.authenticate_user( + security_scopes, + authorization_credentials, + auto_error=False, + ) + + def authenticate_user( + self, + security_scopes: SecurityScopes, + authorization_credentials: Optional[HTTPAuthorizationCredentials], + auto_error: bool, + ) -> Optional[IDToken]: + """Validate and parse OIDC ID token against against configuration. + Note this function caches the signatures and algorithms of the issuing server + for signature_cache_ttl seconds. + Args: + security_scopes (SecurityScopes): Security scopes + auth_header (str): Base64 encoded OIDC Token + auto_error (bool): If True, will raise an HTTPException if the user + is not authenticated. + Return: + IDToken (self.idtoken_model): User information + raises: + HTTPException(status_code=401, detail=f"Unauthorized: {err}") + """ + + if ( + authorization_credentials is None + or authorization_credentials.scheme.lower() != "bearer" + ): + if auto_error: + raise HTTPException( + status.HTTP_401_UNAUTHORIZED, detail="Missing bearer token" + ) + else: + return None + + oidc_discoveries = self.discover.auth_server( + openid_connect_url=self.openid_connect_url + ) + key = self.discover.public_keys(oidc_discoveries) + algorithms = self.discover.signing_algos(oidc_discoveries) + + try: + id_token = jwt.decode( + authorization_credentials.credentials, + key, + algorithms, + issuer=self.issuer, + audience=self.client_id, + options={ + # Disabled at_hash check since we aren't using the access token + "verify_at_hash": False, + "verify_iss": self.issuer is not None, + "verify_aud": self.client_id is not None, + }, + ) + + print(id_token) + + # XXX The aud should always be present? + if ( + "aud" in id_token + and type(id_token["aud"]) == list + and len(id_token["aud"]) >= 1 + and "azp" not in id_token + ): + raise JWTError( + 'Missing authorized party "azp" in IDToken when there ' + "are multiple audiences" + ) + + except (ExpiredSignatureError, JWTError, JWTClaimsError) as error: + raise HTTPException(status_code=401, detail=f"Unauthorized: {error}") + + expected_scopes = set(self.scopes + security_scopes.scopes) + token_scopes = id_token.get("scope", "").split(" ") + if not expected_scopes.issubset(token_scopes): + raise HTTPException( + status.HTTP_401_UNAUTHORIZED, + detail=( + f"Missing scope token, expected {expected_scopes} to be a " + f"subset of received {token_scopes}", + ), + ) + + return self.idtoken_model(**id_token) \ No newline at end of file diff --git a/app/auth/discovery.py b/app/auth/discovery.py new file mode 100644 index 0000000..af5aefe --- /dev/null +++ b/app/auth/discovery.py @@ -0,0 +1,49 @@ +from typing import Dict +import requests +from cachetools import TTLCache +from cachetools import cached +from threading import Lock + + +def configure(*_, cache_ttl: int): + @cached(TTLCache(1, cache_ttl), key=lambda d: d["jwks_uri"], lock=Lock()) + def get_authentication_server_public_keys(OIDC_spec: Dict): + """ + Retrieve the public keys used by the authentication server + for signing OIDC ID tokens. + """ + keys_uri = OIDC_spec["jwks_uri"] + r = requests.get(keys_uri) + keys = r.json() + return keys + + def get_signing_algos(OIDC_spec: Dict): + algos = OIDC_spec["id_token_signing_alg_values_supported"] + return algos + + @cached(TTLCache(1, cache_ttl), lock=Lock()) + def discover_auth_server(*_, openid_connect_url: str) -> Dict: + r = requests.get(openid_connect_url) + # Raise if the auth server is failing since we can't verify tokens + r.raise_for_status() + configuration = r.json() + return configuration + + def get_authorization_url(OIDC_spec: Dict) -> str: + return OIDC_spec["authorization_endpoint"] + + def get_token_url(OIDC_spec: Dict) -> str: + return OIDC_spec["token_endpoint"] + + def get_supported_scopes(OIDC_spec: Dict) -> str: + return OIDC_spec["scopes_supported"] + + class functions: + auth_server = discover_auth_server + public_keys = get_authentication_server_public_keys + signing_algos = get_signing_algos + authorization_url = get_authorization_url + token_url = get_token_url + supported_scopes = get_supported_scopes + + return functions diff --git a/app/auth/grant_types.py b/app/auth/grant_types.py new file mode 100644 index 0000000..7db2df7 --- /dev/null +++ b/app/auth/grant_types.py @@ -0,0 +1,10 @@ +from enum import Enum + + +class GrantType(str, Enum): + """Grant types that can be used in the interactive documentation.""" + + AUTHORIZATION_CODE = "authorization_code" + CLIENT_CREDENTIALS = "client_credentials" + IMPLICIT = "implicit" + PASSWORD = "password" # nosec \ No newline at end of file diff --git a/app/auth/idtoken_types.py b/app/auth/idtoken_types.py new file mode 100644 index 0000000..313bd5e --- /dev/null +++ b/app/auth/idtoken_types.py @@ -0,0 +1,54 @@ +from typing import List +from typing import Union + +from pydantic import BaseModel +from pydantic import Extra + + +class IDToken(BaseModel): + """Pydantic model representing an OIDC ID Token. + ID Tokens are polymorphic and may have many attributes not defined in the spec thus this model accepts + all addition fields. Only required fields are listed in the attributes section of this docstring or + enforced by pydantic. + See the specifications here. https://openid.net/specs/openid-connect-core-1_0.html#IDToken + Parameters: + iss (str): Issuer Identifier for the Issuer of the response. + sub (str): Subject Identifier. + aud (Union[str, List[str]]): Audience(s) that this ID Token is intended for. + exp (str): Expiration time on or after which the ID Token MUST NOT be accepted for processing. + iat (iat): Time at which the JWT was issued. + """ + + iss: str + sub: str + aud: Union[str, List[str]] + exp: int + iat: int + + class Config: + extra = Extra.allow + + +class OktaIDToken(IDToken): + """Pydantic Model for the IDToken returned by Okta's OIDC implementation.""" + + auth_time: int + ver: int + jti: str + amr: List[str] + idp: str + nonce: str + at_hash: str + name: str + email: str + preferred_username: str + + +class KeycloakIDToken(IDToken): + """Pydantic Model for the IDToken returned by Keycloak's OIDC implementation.""" + + jti: str + name: str + email: str + email_verified: bool + preferred_username: str diff --git a/app/main.py b/app/main.py index a1076e1..afb8eb2 100644 --- a/app/main.py +++ b/app/main.py @@ -3,8 +3,10 @@ import sys from xmlrpc.client import boolean -from fastapi import Depends, FastAPI, HTTPException, Query -from fastapi.middleware.cors import CORSMiddleware +from fastapi import Depends, FastAPI, HTTPException, Query, Request +from starlette.middleware.cors import CORSMiddleware +from starlette.middleware.sessions import SessionMiddleware + from sqlmodel import Field, Session, SQLModel, create_engine, select from sqlalchemy import func from sqlalchemy.orm import selectinload @@ -18,7 +20,7 @@ from app.models.idp_model import * from app.models.country_hashed_user_model import * -from .routers import communities, countries, logins, users +from .routers import authenticate, communities, countries, logins, users sys.path.insert(0, os.path.realpath('__file__')) # Development Environment: dev @@ -27,28 +29,52 @@ app = FastAPI() if environment == "dev" else FastAPI(root_path="/api/v1", root_path_in_servers=False, servers=[{"url": "/api/v1"}]) -CommunityReadwithInfo.update_forward_refs( - Community_InfoRead=Community_InfoRead) -Statistics_Country_HashedwithInfo.update_forward_refs( - IdentityprovidersmapRead=IdentityprovidersmapRead, - ServiceprovidersmapRead=ServiceprovidersmapRead, - Country_CodesRead=Country_CodesRead) -origins = ["*"] +# @app.middleware("http") +# async def some_middleware(request: Request, call_next): +# response = await call_next(request) +# print(request.headers) +# session = request.cookies.get('session') +# print(session) +# if session: +# response.set_cookie(key='session', value=request.cookies.get('session'), httponly=True) +# return response + + +@app.middleware("http") +async def add_cors_headers(request, call_next): + response = await call_next(request) + response.headers["Access-Control-Allow-Origin"] = "*" + response.headers["Access-Control-Allow-Credentials"] = "true" + response.headers["Access-Control-Allow-Methods"] = "*" + response.headers["Access-Control-Allow-Headers"] = "Content-Type, Authorization" + return response + app.add_middleware( CORSMiddleware, - allow_origins=origins, + allow_origins=["*"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"], ) +app.add_middleware(SessionMiddleware, + secret_key="some-random-string") +CommunityReadwithInfo.update_forward_refs( + Community_InfoRead=Community_InfoRead) +Statistics_Country_HashedwithInfo.update_forward_refs( + IdentityprovidersmapRead=IdentityprovidersmapRead, + ServiceprovidersmapRead=ServiceprovidersmapRead, + Country_CodesRead=Country_CodesRead) + +app.include_router(authenticate.router) app.include_router(users.router) app.include_router(communities.router) app.include_router(countries.router) app.include_router(logins.router) + @app.get("/tenant/{project_name}/{environment_name}") async def read_tenant_byname( *, diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py new file mode 100644 index 0000000..dead713 --- /dev/null +++ b/app/routers/authenticate.py @@ -0,0 +1,59 @@ +from fastapi import APIRouter, Depends, HTTPException, status, Security, Request + +from app.utils import configParser +from starlette.config import Config +from starlette.responses import HTMLResponse, RedirectResponse +from authlib.integrations.starlette_client import OAuth, OAuthError +from authlib.common.urls import urlparse + +router = APIRouter( + tags=["authenticate"], + # dependencies=[Depends(get_token_header)], + # responses={404: {"description": "Not found"}}, +) + +OIDC_config = configParser.getConfig('oidc_client') +config = Config('.env') +oauth = OAuth(config) + +oauth.register( + 'rciam', + client_id=OIDC_config['client_id'], + client_secret=OIDC_config['client_secret'], + server_metadata_url=OIDC_config['openid_connect_url'], + client_kwargs={'scope': 'openid profile email eduperson_entitlement'} +) + +@router.get('/login', include_in_schema=False) +async def login_endpoint(request: Request): + rciam = oauth.create_client('rciam') + redirect_uri = request.url_for('authorize_rciam') + return await rciam.authorize_redirect(request, redirect_uri) + +@router.get('/auth', include_in_schema=False) +async def authorize_rciam(request: Request): + rciam = oauth.create_client('rciam') + try: + token = await rciam.authorize_access_token(request) + except OAuthError as error: + return HTMLResponse(f'

              {error.error}

              ') + user = token.get('userinfo') + if user: + request.session['user'] = dict(user) + # Fetch the userinfo data + if user.get("email") is None: + metadata = await rciam.load_server_metadata() + if not metadata['userinfo_endpoint']: + raise RuntimeError('Missing "userinfo_endpoint" value') + # Make a request to the userinfo endpoint + user_info = await rciam.get(metadata['userinfo_endpoint'], token=token) + user_info.raise_for_status() + data = user_info.json() + print(data) + + return RedirectResponse(url='/') + +@router.get('/logout', include_in_schema=False) +async def logout(request): + request.session.pop('user', None) + return RedirectResponse(url='/') diff --git a/config.py b/config.py index 3735304..a1ea977 100644 --- a/config.py +++ b/config.py @@ -2,4 +2,4 @@ database_url=postgresql+psycopg2://rciam:secret@db/metrics_dev db=metrics_dev db_admin=rciam -db_password=secret \ No newline at end of file +db_password=secret diff --git a/requirements.txt b/requirements.txt index 031be76..49f8de2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,22 +1,24 @@ -alembic==1.7.1 +alembic==1.10.2 asgiref==3.5.2 asyncpg==0.24.0 click==8.1.3 -fastapi==0.68.1 +fastapi==0.88.0 greenlet==1.1.2 -gunicorn h11==0.13.0 importlib-resources==5.7.1 Mako==1.2.0 MarkupSafe==2.1.1 psycopg2-binary==2.9.1 -pydantic==1.9.0 -PyGreSQL==5.2.3 -SQLAlchemy==1.4.36 -sqlalchemy2-stubs==0.0.2a22 -sqlmodel==0.0.7 -starlette==0.14.2 +pydantic==1.10.7 +PyGreSQL==5.2.4 +SQLAlchemy==1.4.41 +sqlalchemy2-stubs==0.0.2a32 +sqlmodel==0.0.8 typer==0.4.1 -typing_extensions==4.2.0 -uvicorn==0.15.0 +typing_extensions==4.5.0 +uvicorn==0.21.1 zipp==3.8.0 +cachetools==5.3.0 +Authlib==1.2.0 +itsdangerous==2.1.2 +httpx==0.23.3 \ No newline at end of file From 631e24342dd7b763ddb893559d5f55bd65c98c19 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 4 Apr 2023 11:22:58 +0300 Subject: [PATCH 121/331] Cors only enabled for dev environment.Change config parser. (#7) --- app/main.py | 24 ++++++++---------------- app/routers/authenticate.py | 5 +---- 2 files changed, 9 insertions(+), 20 deletions(-) diff --git a/app/main.py b/app/main.py index afb8eb2..e89a326 100644 --- a/app/main.py +++ b/app/main.py @@ -40,23 +40,15 @@ # response.set_cookie(key='session', value=request.cookies.get('session'), httponly=True) # return response +if environment == "dev": + app.add_middleware( + CORSMiddleware, + allow_origins=["*"], + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], + ) -@app.middleware("http") -async def add_cors_headers(request, call_next): - response = await call_next(request) - response.headers["Access-Control-Allow-Origin"] = "*" - response.headers["Access-Control-Allow-Credentials"] = "true" - response.headers["Access-Control-Allow-Methods"] = "*" - response.headers["Access-Control-Allow-Headers"] = "Content-Type, Authorization" - return response - -app.add_middleware( - CORSMiddleware, - allow_origins=["*"], - allow_credentials=True, - allow_methods=["*"], - allow_headers=["*"], -) app.add_middleware(SessionMiddleware, secret_key="some-random-string") diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index dead713..60cfc6c 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -1,10 +1,8 @@ from fastapi import APIRouter, Depends, HTTPException, status, Security, Request from app.utils import configParser -from starlette.config import Config from starlette.responses import HTMLResponse, RedirectResponse from authlib.integrations.starlette_client import OAuth, OAuthError -from authlib.common.urls import urlparse router = APIRouter( tags=["authenticate"], @@ -13,8 +11,7 @@ ) OIDC_config = configParser.getConfig('oidc_client') -config = Config('.env') -oauth = OAuth(config) +oauth = OAuth() oauth.register( 'rciam', From 34bf177f523510c1c7980047febd9555213f0b78 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 6 Apr 2023 10:26:55 +0300 Subject: [PATCH 122/331] Remove obsolete Login and Register reactjs implementation. (#8) --- javascript/src/Pages/Login/index.js | 116 ------------------- javascript/src/Pages/Register/index.js | 152 ------------------------- 2 files changed, 268 deletions(-) delete mode 100644 javascript/src/Pages/Login/index.js delete mode 100644 javascript/src/Pages/Register/index.js diff --git a/javascript/src/Pages/Login/index.js b/javascript/src/Pages/Login/index.js deleted file mode 100644 index 960139d..0000000 --- a/javascript/src/Pages/Login/index.js +++ /dev/null @@ -1,116 +0,0 @@ -import {useState, useContext, useEffect} from "react"; -import {Link, useNavigate} from "react-router-dom"; -import {useForm} from 'react-hook-form'; -import {useMutation} from 'react-query'; -import {toast} from 'react-toastify'; -import {loginUser} from "../../utils/queryKeys"; -import {client} from '../../utils/api'; -import {UserContext} from "../../Context/UserContext"; - -const Login = () => { - const navigate = useNavigate(); - const {currentUser, setCurrentUser} = useContext(UserContext); - - useEffect(() => { - const stored_user = JSON.parse(localStorage.getItem('logged_in_user')) - // Retrieve the stored user from the local storage - if (stored_user != undefined && Object.keys(stored_user).length !== 0) { - setCurrentUser(stored_user) - } - - if (Object.keys(currentUser).length !== 0) { - navigate("/communities"); - } - }, []) - - const [values, setValues] = useState({ - email: "", - password: "", - }); - - const onChange = (e) => { - setValues({...values, [e.target.name]: e.target.value}); - }; - - // FORM - const {register, handleSubmit, reset, formState: {errors}} = useForm(); - - async function postForm(data) { - const {email, password} = data - - return await client.post(loginUser, { - email: email, - password: password - }) - } - - const {mutateAsync: sendData} = useMutation(postForm); - - const notifyError = () => toast.error("Login Failed.") - - const onSubmit = async (data, e) => { - try { - const response = await sendData(data) - setCurrentUser(response.data) - localStorage.setItem('logged_in_user', JSON.stringify(response.data)); - reset() - navigate('/') - } catch (err) { - notifyError() - reset() - } - } - - // ELEMENT - return ( -
              -
              -

              Login 33

              - - {/* Email */} -
              - - - {errors.email?.message} -
              - - {/* PASSWORD */} -
              - - - {errors.password?.message} -
              - - - -
              - Register -
              - -
              - ); -}; - -export default Login; diff --git a/javascript/src/Pages/Register/index.js b/javascript/src/Pages/Register/index.js deleted file mode 100644 index 99262a1..0000000 --- a/javascript/src/Pages/Register/index.js +++ /dev/null @@ -1,152 +0,0 @@ -import {useState, useContext} from "react"; -import "../../components/Common/Style/formInput.css"; -import {Link, useNavigate} from "react-router-dom"; -import {useForm} from "react-hook-form"; -import {client} from "../../utils/api"; -import {allUsers} from "../../utils/queryKeys"; -import {useMutation} from "react-query"; -import {toast} from "react-toastify"; -import {UserContext} from "../../Context/UserContext"; - -const Register = () => { - const {currentUser, setCurrentUser} = useContext(UserContext); - const navigate = useNavigate(); - - const [values, setValues] = useState({ - first_name: "", - last_name: "", - email: "", - password: "", - }); - - const onChange = (e) => { - setValues({...values, [e.target.name]: e.target.value}); - }; - - // FORM - const {register, handleSubmit, reset, formState: {errors}} = useForm(); - - async function postForm(data) { - const {first_name, last_name, email, password} = data - - return await client.post(allUsers, { - first_name: first_name, - last_name: last_name, - email: email, - password: password - }) - } - - const {mutateAsync: sendData} = useMutation(postForm); - - const notifyError = () => toast.error("Registration Failed.") - - const onSubmit = async (data, e) => { - try { - const response = await sendData(data) - reset() - setCurrentUser(response.config.data) - navigate("/"); - } catch (err) { - notifyError() - reset() - // throw new Error(err) - } - } - - // ELEMENT - return ( -
              -
              -

              Register

              - {/* FIRST NAME */} -
              - - - {errors.first_name?.message} -
              - - {/* LAST NAME */} -
              - - - {errors.last_name?.message} -
              - - {/* Email */} -
              - - - {errors.email?.message} -
              - - {/* PASSWORD */} -
              - - - {errors.password?.message} -
              - - - -
              - Login -
              - -
              - ); -}; - -export default Register; From 35391676c1c5ba524106664f04c01a200f91c6ae Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 6 Apr 2023 16:03:16 +0300 Subject: [PATCH 123/331] Refactor Login button. (#9) --- app/routers/authenticate.py | 1 + javascript/src/App.jsx | 84 ++++--- javascript/src/Context/provider.js | 20 ++ javascript/src/Pages/Authentication/Login.js | 32 +++ javascript/src/Pages/Sps/spModal.js | 46 ++-- javascript/src/components/Common/navbarTop.js | 85 ++++--- .../components/Dashboard/loginDataTable.js | 233 ++++++++++-------- javascript/src/index.js | 30 +-- javascript/src/utils/queries/index.js | 32 +-- javascript/src/utils/queryKeys/index.js | 7 +- 10 files changed, 309 insertions(+), 261 deletions(-) create mode 100644 javascript/src/Context/provider.js create mode 100644 javascript/src/Pages/Authentication/Login.js diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 60cfc6c..7493de4 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -47,6 +47,7 @@ async def authorize_rciam(request: Request): user_info.raise_for_status() data = user_info.json() print(data) + return data return RedirectResponse(url='/') diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index 8c4ddc5..56fdf4e 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -1,5 +1,5 @@ -import { useState } from "react"; -import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; +import React, {useState} from "react"; +import {Route, Routes} from 'react-router-dom' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; import Dashboard from "./Pages/Dashboard"; @@ -7,45 +7,61 @@ import Idps from "./Pages/Idps"; import Sps from "./Pages/Sps"; import Sp from "./Pages/Sps/sp"; import Idp from "./Pages/Idps/idp"; +import Login from "./Pages/Authentication/Login"; import "./app.css"; import "./style.scss"; +import 'react-toastify/dist/ReactToastify.css'; -import { languageContext, projectContext, envContext } from "./components/Common/context"; +import {languageContext, projectContext, envContext} from "./components/Common/context"; import Layout from "./components/Common/layout"; import SideNav from "./components/Common/sideNav"; import Main from "./components/Common/main"; +import {ToastContainer} from "react-toastify"; +import ErrorPage from "./Pages/Error"; + function App() { - // const queryClient = new QueryClient() - const [language, setLanguage] = useState('en'); - const [projectCon, setProjectCon] = useState(null); - const [envCon, setEnvCon] = useState(null) - return ( - - - - - -
              - - {/* */} - - {/* }/> */} - } /> - } /> - } /> - } /> - } /> - } /> - } /> - - {/* */} - -
              -
              -
              -
              -
              - ); + // const queryClient = new QueryClient() + const [language, setLanguage] = useState('en') + const [projectCon, setProjectCon] = useState(null) + const [envCon, setEnvCon] = useState(null) + + return ( + + + + + +
              + +
              + +
              +
              +
              +
              + ); +} + +function AppRoutes() { + return ( + + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + + ) } export default App; \ No newline at end of file diff --git a/javascript/src/Context/provider.js b/javascript/src/Context/provider.js new file mode 100644 index 0000000..fff4069 --- /dev/null +++ b/javascript/src/Context/provider.js @@ -0,0 +1,20 @@ +import * as React from 'react' +import { BrowserRouter as Router } from 'react-router-dom' +import { QueryClient, QueryClientProvider } from 'react-query' + +function AppProviders({children}) { + + const queryClient = new QueryClient() + + return ( + + + {children} + + + ) +} + +export { + AppProviders +} \ No newline at end of file diff --git a/javascript/src/Pages/Authentication/Login.js b/javascript/src/Pages/Authentication/Login.js new file mode 100644 index 0000000..96ee2de --- /dev/null +++ b/javascript/src/Pages/Authentication/Login.js @@ -0,0 +1,32 @@ +import React, {useState} from "react"; +import {useQuery, useQueryClient} from "react-query"; +import {loginQueryKey} from "../../utils/queryKeys"; +import {loginQuery} from "../../utils/queries"; +import Button from "react-bootstrap/Button"; +import {useTranslation} from "react-i18next"; + + +function Login() { + const {t, i18n} = useTranslation(); + const queryClient = useQueryClient(); + + const loginReq = useQuery( + [loginQueryKey], + loginQuery, + { + enabled: false + } + ) + const handleLoginClick = () => { + // Make the request to login + queryClient.refetchQueries([loginQueryKey]) + } + + return ( + + ) +} + +export default Login \ No newline at end of file diff --git a/javascript/src/Pages/Sps/spModal.js b/javascript/src/Pages/Sps/spModal.js index 96fc4e1..4ed2ff7 100644 --- a/javascript/src/Pages/Sps/spModal.js +++ b/javascript/src/Pages/Sps/spModal.js @@ -7,30 +7,30 @@ import LoginTiles from "../../components/Dashboard/loginTiles"; import IdpsDataTable from "../../components/Idps/idpsDataTable"; import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; const SpModal = ({showModal, setShowModalHandler, tenantId}) => { - - const handleClose = () => setShowModalHandler(false); - //const handleShow = () => setShow(true); - - return ( - - - Modal heading - - - - - - - Woohoo, you're reading this text in a modal! - - - - - - ) + + const handleClose = () => setShowModalHandler(false); + //const handleShow = () => setShow(true); + + return ( + + + Modal heading + + + + + + + Woohoo, you're reading this text in a modal! + + + + + + ) } export default SpModal \ No newline at end of file diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index 15ad047..987d47f 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -1,47 +1,50 @@ -import React,{useState,useEffect,useContext} from 'react'; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import {faUser,faUserShield, faSignOutAlt} from '@fortawesome/free-solid-svg-icons'; +import React, {useContext} from 'react'; +import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; +import {faUser, faUserShield, faSignOutAlt} from '@fortawesome/free-solid-svg-icons'; import Navbar from 'react-bootstrap/Navbar'; -import Button from 'react-bootstrap/Button'; import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; -import { userContext } from './context'; -import { useTranslation } from 'react-i18next'; -import { useCookies } from 'react-cookie'; -import { useParams } from "react-router-dom"; +import {userContext} from './context'; +import {useTranslation} from 'react-i18next'; +import {useCookies} from 'react-cookie'; +import {useParams} from "react-router-dom"; import config from "./../../config_react.json"; -const NavbarTop = (props)=>{ - //const history = useHistory(); - // eslint-disable-next-line - - const user = useContext(userContext); - // eslint-disable-next-line - const { t, i18n } = useTranslation(); - //const tenant = useContext(tenantContext); - const [cookies] = useCookies(['metrics_logoutkey']); - const { project, environment } = useParams(); - const getConfig = key => config[project + "_" + environment][key] - console.log(getConfig("config")["theme_color"]+project) - return ( - - {getConfig("config") && getConfig("config")["theme_color"]&& +import Login from "../../Pages/Authentication/Login" + +const NavbarTop = (props) => { + //const history = useHistory(); + // eslint-disable-next-line + + const user = useContext(userContext); + // eslint-disable-next-line + const {t, i18n} = useTranslation(); + //const tenant = useContext(tenantContext); + const [cookies] = useCookies(['metrics_logoutkey']); + const {project, environment} = useParams(); + const getConfig = key => config[project + "_" + environment][key] + console.log(getConfig("config")["theme_color"] + project) + + + return ( + + {getConfig("config") && getConfig("config")["theme_color"] && - {user? + {user ? - {user?user.name:'login'} - {user&&' ('+user.role+')'} - + {user ? user.name : 'login'} + {user && ' (' + user.role + ')'} + } id="dropdown-menu-align-right" > - {user&& + {user && {user.sub} (sub) @@ -49,23 +52,23 @@ const NavbarTop = (props)=>{ {/* {history.push('/'+(getConfig("config")&&(getConfig("config")["name"]+'/userinfo')));}}> {t('nav_link_userinfo')} */} - { - window.location.assign(getConfig("config")["logout_uri"] + "&id_token_hint="+cookies.federation_logoutkey); - }}> + { + window.location.assign(getConfig("config")["logout_uri"] + "&id_token_hint=" + cookies.federation_logoutkey); + }}> {t('logout')} - :( - - - - ) - } + : ( + + + + ) + } } - - ) - } - export default NavbarTop + + ) +} +export default NavbarTop \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginDataTable.js b/javascript/src/components/Dashboard/loginDataTable.js index cd2c538..d8e28c2 100644 --- a/javascript/src/components/Dashboard/loginDataTable.js +++ b/javascript/src/components/Dashboard/loginDataTable.js @@ -8,123 +8,138 @@ import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import DatePicker from "react-datepicker"; import Dropdown from 'react-dropdown'; -import { ToastContainer, toast } from 'react-toastify'; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import {ToastContainer, toast} from 'react-toastify'; +import {convertDateByGroup, getWeekNumber} from "../Common/utils"; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; const dropdownOptions = [ - - { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, - { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, - { value: 'month', label: 'Monthly Basis' }, - { value: 'year', label: 'Yearly Basis' }, + + {value: 'day', label: 'Daily Basis', className: 'myOptionClassName'}, + {value: 'week', label: 'Weekly Basis', className: 'myOptionClassName'}, + {value: 'month', label: 'Monthly Basis'}, + {value: 'year', label: 'Yearly Basis'}, ] -const LoginDataTable =({startDateHandler, endDateHandler, tenantId, uniqueLogins}) => { - const [loginsPerCountryPerPeriod, setLoginsPerCountryPerPeriod] = useState(); - var loginsPerCountryPerPeriodArray = []; - const [minDate, setMinDate] = useState(""); - const [startDate, setStartDate] = useState(); - const [endDate, setEndDate] = useState(); - useEffect(() => { - client.get("logins_per_country/", {params: {'group_by':'month', 'tenant_id': tenantId, 'unique_logins': uniqueLogins}}). - then(response => { - console.log(response); - var minDateFromData = "" - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - - var range_date = new Date(element.range_date); - if (minDateFromData == "") { - minDateFromData = new Date(element.min_date) - } - var perPeriod = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Logins": element.count, "Number of Logins per Country": element.countries} - loginsPerCountryPerPeriodArray.push(perPeriod) - - }); - setMinDate(minDateFromData) - $("#table").DataTable().destroy() - setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) - }) - // - - }, [uniqueLogins]) - - const handleChange = event => { - console.log(event.value); - loginsPerCountryPerPeriodArray = [] - if(!startDate || !endDate) { - toast.error('You have to fill both startDate and endDate.', { - position: "top-center", - autoClose: 5000, - hideProgressBar: false, - closeOnClick: true, - pauseOnHover: true, - draggable: true, - progress: undefined, - theme: "dark", - }); - return +const LoginDataTable = ({startDateHandler, endDateHandler, tenantId, uniqueLogins}) => { + const [loginsPerCountryPerPeriod, setLoginsPerCountryPerPeriod] = useState(); + var loginsPerCountryPerPeriodArray = []; + const [minDate, setMinDate] = useState(""); + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + useEffect(() => { + client.get("logins_per_country/", { + params: { + 'group_by': 'month', + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + }).then(response => { + console.log(response); + var minDateFromData = "" + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + + var range_date = new Date(element.range_date); + if (minDateFromData == "") { + minDateFromData = new Date(element.min_date) + } + var perPeriod = { + "Date": dateFormat(range_date, "yyyy-mm"), + "Number of Logins": element.count, + "Number of Logins per Country": element.countries + } + loginsPerCountryPerPeriodArray.push(perPeriod) + + }); + setMinDate(minDateFromData) + $("#table").DataTable().destroy() + setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) + }) + // + + }, [uniqueLogins]) + + const handleChange = event => { + console.log(event.value); + loginsPerCountryPerPeriodArray = [] + if (!startDate || !endDate) { + toast.error('You have to fill both startDate and endDate.', { + position: "top-center", + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: true, + draggable: true, + progress: undefined, + theme: "dark", + }); + return + } + // set parent states + startDateHandler(startDate) + endDateHandler(endDate) + client.get("logins_per_country/", + { + params: { + 'group_by': event.value, + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins } - // set parent states - startDateHandler(startDate) - endDateHandler(endDate) - client.get("logins_per_country/", - { - params: { - 'group_by': event.value, - 'startDate': startDate, - 'endDate': endDate, - 'tenant_id': tenantId, - 'unique_logins': uniqueLogins - } - }). - then(response => { - //console.log(response); - response["data"].forEach(element => { - - var range_date = new Date(element.range_date); - - var perPeriod = { "Date": convertDateByGroup(range_date, event.value), "Number of Logins": element.count, "Number of Logins per Country": element.countries} - loginsPerCountryPerPeriodArray.push(perPeriod) - - }); - // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#table").DataTable().destroy() - setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) - - }) - //setSelected(event.value); - }; - - return -
              -
              -

              Number of logins

              -
              - - - - From: setStartDate(date)}> - To: setEndDate(date)}> - - - - - - - + }).then(response => { + //console.log(response); + response["data"].forEach(element => { + + var range_date = new Date(element.range_date); + + var perPeriod = { + "Date": convertDateByGroup(range_date, event.value), + "Number of Logins": element.count, + "Number of Logins per Country": element.countries + } + loginsPerCountryPerPeriodArray.push(perPeriod) + + }); + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#table").DataTable().destroy() + setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) + + }) + //setSelected(event.value); + }; + + return + +
              +

              Number of logins

              +
              + + + + From: setStartDate(date)}> + To: setEndDate(date)}> + + + + + + + } diff --git a/javascript/src/index.js b/javascript/src/index.js index ac6c454..0d86b7f 100644 --- a/javascript/src/index.js +++ b/javascript/src/index.js @@ -1,31 +1,17 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; -import 'react-toastify/dist/ReactToastify.css'; -import {ToastContainer} from 'react-toastify'; -import {UserProvider} from "./Context/UserProvider"; +import {AppProviders} from "./Context/provider"; import './components/Common/i18n'; -import {BrowserRouter as Router, Route, Link, Routes} from "react-router-dom"; -import Communities from './Pages/Communities'; +import {BrowserRouter} from "react-router-dom"; const container = document.getElementById('root') const root = ReactDOM.createRoot(container) root.render( -
              - -
              -) - -// -// -// -// -// -// \ No newline at end of file + + + + + +) \ No newline at end of file diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 6693e7e..8726409 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -21,34 +21,10 @@ export const delUser = async({queryKey}) => { return response.data } -// Communitiess - -// GET Communities -export const getCommunities = async ({queryKey}) => { - const [_, params] = queryKey - const response = await apiClient.get('/communities') - return response.data -} - -// GET Communities -export const getCommunitiesGroupBy = async ({queryKey}) => { - const [_, params] = queryKey - console.log("sktat") - console.log(params.interval) - const response = await apiClient.get('/communities_groupby/' + params.groupBy, - { params: { interval : params.interval, count_interval: params.count_interval }}) - console.log(response) - return response.data -} -// GET Community -export const getCommunity = async({queryKey}) => { - const [_, params] = queryKey - const response = await apiClient.get('/communities/' + params.communityId) - return response.data -} -// Delete Community -export const delCommunity = async({queryKey}) => { +// Authorization +// Login +export const loginQuery = async ({queryKey}) => { const [_, params] = queryKey - const response = await apiClient.delete('/communities/' + params.communityId) + const response = await apiClient.get('/login') return response.data } \ No newline at end of file diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index b639c57..994e795 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -2,7 +2,6 @@ export const allUsers = "users" export const loginUser = "users/login" export const oneUser = "users/:id" -// Communities -export const allCommunities = "communities" -export const communitiesGroupBy = "communities_groupby/:groupby" -export const oneCommunity = "communities/:id" \ No newline at end of file +// Auhtentication +export const loginQueryKey = "/login" +export const logoutQueryKey = "/logout" \ No newline at end of file From f692ff53dd82f65f1a6347c7a9dbbf9b21e0b905 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Wed, 12 Apr 2023 08:42:46 +0300 Subject: [PATCH 124/331] Fix configuration parsing (#10) --- javascript/src/components/Common/footer.js | 3 +-- javascript/src/components/Common/header.js | 2 +- javascript/src/components/Common/navbarTop.js | 2 +- javascript/src/config_react.json | 18 ++++++++++-------- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/javascript/src/components/Common/footer.js b/javascript/src/components/Common/footer.js index a3837ef..0d46adb 100644 --- a/javascript/src/components/Common/footer.js +++ b/javascript/src/components/Common/footer.js @@ -4,7 +4,6 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Image from 'react-bootstrap/Image'; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; -import Navbar from 'react-bootstrap/Navbar'; import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; @@ -16,7 +15,7 @@ import { useTranslation } from 'react-i18next'; const Footer = (props) => { const [language,setLanguage] = useContext(languageContext) const { project, environment } = useParams(); - const getConfig = key => config[project + "_" + environment][key] + const getConfig = key => config[project][environment][key] const { t, i18n } = useTranslation(); console.log(language) return ( diff --git a/javascript/src/components/Common/header.js b/javascript/src/components/Common/header.js index 7d8e2d7..d0dc60e 100644 --- a/javascript/src/components/Common/header.js +++ b/javascript/src/components/Common/header.js @@ -12,7 +12,7 @@ const Header = (props) => { const [bannerAlertInfo, setBannerAlertInfo] = useState([]); const { project, environment } = useParams(); - const getConfig = key => config[project + "_" + environment][key] + const getConfig = key => config[project][environment][key] console.log(getConfig("config")["logo_url"]) useEffect(() => { diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index 987d47f..76d6e6d 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -21,7 +21,7 @@ const NavbarTop = (props) => { //const tenant = useContext(tenantContext); const [cookies] = useCookies(['metrics_logoutkey']); const {project, environment} = useParams(); - const getConfig = key => config[project + "_" + environment][key] + const getConfig = key => config[project][environment][key] console.log(getConfig("config")["theme_color"] + project) diff --git a/javascript/src/config_react.json b/javascript/src/config_react.json index d360b53..1db475c 100644 --- a/javascript/src/config_react.json +++ b/javascript/src/config_react.json @@ -2,14 +2,16 @@ "configReact": { "apiUrl": "http://localhost:8004/" }, - "egi_devel": { - "config": { - "website_url": "https://www.egi.eu/", - "logo_url": "https://aai-dev.egi.eu/proxy/module.php/themeegi/resources/images/logo.svg", - "home_page_title": "EGI Metrics (Development)", - "contact": "faai@grnet.gr", - "footer_description": "Copyright ©2016-2022 | Check-in is an EGI service provided by GRNET, receiving funding from the EGI Foundation (EGI.eu) and the EGI-ACE project (Horizon 2020) under Grant number 101017567", - "theme_color": "#0A559C" + "egi": { + "devel": { + "config": { + "website_url": "https://www.egi.eu/", + "logo_url": "https://aai-dev.egi.eu/proxy/module.php/themeegi/resources/images/logo.svg", + "home_page_title": "EGI Metrics (Development)", + "contact": "faai@grnet.gr", + "footer_description": "Copyright ©2016-2022 | Check-in is an EGI service provided by GRNET, receiving funding from the EGI Foundation (EGI.eu) and the EGI-ACE project (Horizon 2020) under Grant number 101017567", + "theme_color": "#0A559C" + } } } } \ No newline at end of file From 36b31878b9ca6151c64a58ceb37331d305f6fa51 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 4 May 2023 11:15:09 +0300 Subject: [PATCH 125/331] minor fix --- javascript/src/style.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/javascript/src/style.scss b/javascript/src/style.scss index 1a11bcf..746963c 100644 --- a/javascript/src/style.scss +++ b/javascript/src/style.scss @@ -116,6 +116,7 @@ &.with-border { border-bottom: 1px solid #f4f4f4; } + .box-title { display: inline-block; font-size: 18px; From 68c3d367a6305eacec76cb2f14d314470609488d Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Thu, 4 May 2023 11:31:40 +0300 Subject: [PATCH 126/331] minor css fix --- javascript/src/style.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/javascript/src/style.scss b/javascript/src/style.scss index 746963c..5c92b6d 100644 --- a/javascript/src/style.scss +++ b/javascript/src/style.scss @@ -123,7 +123,6 @@ margin: 0; line-height: 1; } - color: #444; display: block; padding: 10px; From c5e8e8c6403edc76470b7049a45dd53045bf1d9b Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 4 May 2023 12:15:04 +0300 Subject: [PATCH 127/331] Minor authentication config improvements (#11) --- app/routers/authenticate.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 7493de4..c116db8 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -10,14 +10,15 @@ # responses={404: {"description": "Not found"}}, ) -OIDC_config = configParser.getConfig('oidc_client') +# TODO: Tenant hardcoded for now +OIDC_config = configParser.getConfig('oidc_client_egi') oauth = OAuth() oauth.register( 'rciam', client_id=OIDC_config['client_id'], client_secret=OIDC_config['client_secret'], - server_metadata_url=OIDC_config['openid_connect_url'], + server_metadata_url=OIDC_config['issuer'] + "/.well-known/openid-configuration", client_kwargs={'scope': 'openid profile email eduperson_entitlement'} ) From d6f3ba037f1929e5b2c9e49c87676bc05638d2bc Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 4 May 2023 14:06:55 +0300 Subject: [PATCH 128/331] Load server configuration (#12) --- app/routers/authenticate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index c116db8..1674330 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -12,6 +12,7 @@ # TODO: Tenant hardcoded for now OIDC_config = configParser.getConfig('oidc_client_egi') +SERVER_config = configParser.getConfig('server_config') oauth = OAuth() oauth.register( @@ -25,7 +26,7 @@ @router.get('/login', include_in_schema=False) async def login_endpoint(request: Request): rciam = oauth.create_client('rciam') - redirect_uri = request.url_for('authorize_rciam') + redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['hostname'] + "/" + SERVER_config['api_path'] + "/auth" return await rciam.authorize_redirect(request, redirect_uri) @router.get('/auth', include_in_schema=False) From 6f70eb0aad7a1a02016b8f7d954336a14e4fe695 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 5 May 2023 11:56:06 +0300 Subject: [PATCH 129/331] change repos to look at rciam --- .github/workflows/releases.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 9ad4ba8..369e632 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -32,14 +32,14 @@ jobs: with: # Repository name with owner. For example, actions/checkout # Default: ${{ github.repository }} - repository: 'lionick/rciam-deploy' - ref: 'rciam-metrics-role' + repository: 'rciam/rciam-deploy' + ref: 'devel' path: 'roles' - name: Download inventory uses: actions/checkout@v3 with: - repository: 'lionick/rciam-deploy-inv' - ref: 'add_metrics_inv' + repository: 'grnet/rciam-deploy-inv' + ref: 'master' ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} path: 'inventory' - name: Run playbook (create react_config file) From 0f059c7748a2a3eaaa9558d5180048e4593d6c52 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 5 May 2023 12:03:09 +0300 Subject: [PATCH 130/331] minor fixes --- .github/workflows/releases.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 369e632..39dd641 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -150,14 +150,14 @@ jobs: with: # Repository name with owner. For example, actions/checkout # Default: ${{ github.repository }} - repository: 'lionick/rciam-deploy' - ref: 'rciam-metrics-role' + repository: 'rciam/rciam-deploy' + ref: 'devel' path: 'roles' - name: Download inventory uses: actions/checkout@v3 with: - repository: 'lionick/rciam-deploy-inv' - ref: 'add_metrics_inv' + repository: 'grnet/rciam-deploy-inv' + ref: 'master' ssh-key: ${{ secrets.DEPLOY_READ_SECRET }} path: 'inventory' - name: Run playbook (deploy rciam-metrics) with release ${{ env.RELEASE_ID }} From 57770ec8b3f417cac7a533c6cef29196172d42ae Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 5 May 2023 13:09:28 +0300 Subject: [PATCH 131/331] Minor fixes (#13) --- app/main.py | 25 +++++++++++++------------ app/routers/authenticate.py | 3 ++- app/routers/logins.py | 6 +++--- 3 files changed, 18 insertions(+), 16 deletions(-) diff --git a/app/main.py b/app/main.py index e89a326..7616017 100644 --- a/app/main.py +++ b/app/main.py @@ -27,18 +27,19 @@ environment = os.getenv('API_ENVIRONMENT') # Instantiate app according to the environment configuration app = FastAPI() if environment == "dev" else FastAPI(root_path="/api/v1", - root_path_in_servers=False, servers=[{"url": "/api/v1"}]) - - -# @app.middleware("http") -# async def some_middleware(request: Request, call_next): -# response = await call_next(request) -# print(request.headers) -# session = request.cookies.get('session') -# print(session) -# if session: -# response.set_cookie(key='session', value=request.cookies.get('session'), httponly=True) -# return response + root_path_in_servers=False, + servers=[{"url": "/api/v1"}]) + + +@app.middleware("http") +async def some_middleware(request: Request, call_next): + response = await call_next(request) + print(request.headers) + session = request.cookies.get('session') + print(session) + # if session: + # response.set_cookie(key='session', value=request.cookies.get('session'), httponly=True) + # return response if environment == "dev": app.add_middleware( diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 1674330..beaa18e 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -26,7 +26,8 @@ @router.get('/login', include_in_schema=False) async def login_endpoint(request: Request): rciam = oauth.create_client('rciam') - redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['hostname'] + "/" + SERVER_config['api_path'] + "/auth" + # redirect_uri = request.url_for('authorize_rciam') + redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['host'] + "/" + SERVER_config['api_path'] + "/auth" return await rciam.authorize_redirect(request, redirect_uri) @router.get('/auth', include_in_schema=False) diff --git a/app/routers/logins.py b/app/routers/logins.py index 7f16e7d..0e7b007 100644 --- a/app/routers/logins.py +++ b/app/routers/logins.py @@ -14,7 +14,7 @@ ) -@router.get("/logins_per_idp/") +@router.get("/logins_per_idp") async def read_logins_per_idp( *, session: Session = Depends(get_session), @@ -62,7 +62,7 @@ async def read_logins_per_idp( return logins -@router.get("/logins_per_sp/") +@router.get("/logins_per_sp") async def read_logins_per_sp( *, session: Session = Depends(get_session), @@ -111,7 +111,7 @@ async def read_logins_per_sp( return logins -@router.get("/logins_per_country/") +@router.get("/logins_per_country") async def read_logins_per_country( *, session: Session = Depends(get_session), From ef100d8ec945be4a64b622963f69474c144af79c Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 5 May 2023 13:14:54 +0300 Subject: [PATCH 132/331] redirect uri fix extra f slash (#14) --- app/routers/authenticate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index beaa18e..6a16213 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -27,7 +27,7 @@ async def login_endpoint(request: Request): rciam = oauth.create_client('rciam') # redirect_uri = request.url_for('authorize_rciam') - redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['host'] + "/" + SERVER_config['api_path'] + "/auth" + redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['host'] + SERVER_config['api_path'] + "/auth" return await rciam.authorize_redirect(request, redirect_uri) @router.get('/auth', include_in_schema=False) From d3b415a1b5a92c7888ab0799f216a27f013091ef Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Mon, 8 May 2023 16:13:00 +0300 Subject: [PATCH 133/331] Authentication link button.Set login cookie. (#15) --- app/main.py | 11 ----- app/routers/authenticate.py | 48 ++++++++++++++++---- javascript/src/Pages/Authentication/Login.js | 26 +++++------ 3 files changed, 51 insertions(+), 34 deletions(-) diff --git a/app/main.py b/app/main.py index 7616017..cba525a 100644 --- a/app/main.py +++ b/app/main.py @@ -30,17 +30,6 @@ root_path_in_servers=False, servers=[{"url": "/api/v1"}]) - -@app.middleware("http") -async def some_middleware(request: Request, call_next): - response = await call_next(request) - print(request.headers) - session = request.cookies.get('session') - print(session) - # if session: - # response.set_cookie(key='session', value=request.cookies.get('session'), httponly=True) - # return response - if environment == "dev": app.add_middleware( CORSMiddleware, diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 6a16213..8af0693 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -1,6 +1,11 @@ +from pprint import pprint + from fastapi import APIRouter, Depends, HTTPException, status, Security, Request +from fastapi.responses import JSONResponse +import json, base64 from app.utils import configParser +import urllib.parse from starlette.responses import HTMLResponse, RedirectResponse from authlib.integrations.starlette_client import OAuth, OAuthError @@ -26,12 +31,23 @@ @router.get('/login', include_in_schema=False) async def login_endpoint(request: Request): rciam = oauth.create_client('rciam') - # redirect_uri = request.url_for('authorize_rciam') redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['host'] + SERVER_config['api_path'] + "/auth" return await rciam.authorize_redirect(request, redirect_uri) -@router.get('/auth', include_in_schema=False) +@router.get('/auth', + include_in_schema=False, + response_class=RedirectResponse) async def authorize_rciam(request: Request): + login_start_url = request.cookies.get("login_start") + # pprint(request.cookies.get("login_start")) + if not login_start_url: + login_start_url = "/" + + # Set cookies when returning a RedirectResponse + # https://github.com/tiangolo/fastapi/issues/2452 + response = RedirectResponse(url=urllib.parse.unquote(login_start_url)) + response.delete_cookie("login_start") + rciam = oauth.create_client('rciam') try: token = await rciam.authorize_access_token(request) @@ -48,13 +64,29 @@ async def authorize_rciam(request: Request): # Make a request to the userinfo endpoint user_info = await rciam.get(metadata['userinfo_endpoint'], token=token) user_info.raise_for_status() - data = user_info.json() - print(data) - return data + user_info_data = user_info.json() + # print(user_info_data) - return RedirectResponse(url='/') + response.set_cookie(key="userinfo", + value=json.dumps(user_info_data), + secure=None, + domain="localhost") -@router.get('/logout', include_in_schema=False) + return response + +@router.get('/logout', + include_in_schema=False, + response_class=RedirectResponse) async def logout(request): + logout_start_url = request.cookies.get("logout_start") + # pprint(request.cookies.get("logout_start")) + if not logout_start_url: + logout_start_url = "/" + + # Set cookies when returning a RedirectResponse + # https://github.com/tiangolo/fastapi/issues/2452 + response = RedirectResponse(url=urllib.parse.unquote(logout_start_url)) + response.delete_cookie("logout_start") + request.session.pop('user', None) - return RedirectResponse(url='/') + return response diff --git a/javascript/src/Pages/Authentication/Login.js b/javascript/src/Pages/Authentication/Login.js index 96ee2de..f1cc901 100644 --- a/javascript/src/Pages/Authentication/Login.js +++ b/javascript/src/Pages/Authentication/Login.js @@ -1,25 +1,21 @@ -import React, {useState} from "react"; -import {useQuery, useQueryClient} from "react-query"; -import {loginQueryKey} from "../../utils/queryKeys"; -import {loginQuery} from "../../utils/queries"; +import React from "react"; import Button from "react-bootstrap/Button"; import {useTranslation} from "react-i18next"; - +import {useParams} from "react-router-dom"; +import config from "../../config_react.json"; +import {useCookies} from 'react-cookie'; function Login() { const {t, i18n} = useTranslation(); - const queryClient = useQueryClient(); + const {project, environment} = useParams(); + const [cookies, setCookie] = useCookies(['login_start']); + const getConfig = key => config[project][environment][key] - const loginReq = useQuery( - [loginQueryKey], - loginQuery, - { - enabled: false - } - ) const handleLoginClick = () => { - // Make the request to login - queryClient.refetchQueries([loginQueryKey]) + // Set a cookie with the current location so the backend knows where to go + setCookie('login_start', window.location.href, { path: '/' }); + // Redirect to the login endpoint + window.location.href = getConfig("config")["login_url"] } return ( From f8f48f6f8ea264d5a971e09e85018b06b1093a67 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Wed, 10 May 2023 12:27:34 +0300 Subject: [PATCH 134/331] Fix server domain config (#16) --- app/routers/authenticate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 8af0693..55272f5 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -65,12 +65,12 @@ async def authorize_rciam(request: Request): user_info = await rciam.get(metadata['userinfo_endpoint'], token=token) user_info.raise_for_status() user_info_data = user_info.json() - # print(user_info_data) + print(user_info_data) response.set_cookie(key="userinfo", value=json.dumps(user_info_data), secure=None, - domain="localhost") + domain=SERVER_config['domain']) return response From 9f78433543a5d02a56b8883fb3418abdd9119190 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 12 May 2023 11:06:34 +0300 Subject: [PATCH 135/331] Parse userinfo data (#17) --- app/routers/authenticate.py | 12 +++- javascript/package.json | 4 +- javascript/src/App.jsx | 59 +++++++++++++------ .../{components/Common => Context}/context.js | 3 +- javascript/src/Context/provider.js | 13 ++-- javascript/src/Pages/Communities/index.js | 2 +- javascript/src/Pages/Dashboard/index.js | 2 +- javascript/src/Pages/Idps/idp.js | 2 +- javascript/src/Pages/Idps/index.js | 2 +- javascript/src/Pages/Sps/index.js | 2 +- javascript/src/Pages/Sps/sp.js | 2 +- javascript/src/Pages/Users/index.js | 2 +- javascript/src/components/Common/footer.js | 2 +- javascript/src/components/Common/navbarTop.js | 2 +- javascript/src/components/Common/sideNav.js | 2 +- javascript/src/config_react.json | 1 + requirements.txt | 3 +- 17 files changed, 76 insertions(+), 39 deletions(-) rename javascript/src/{components/Common => Context}/context.js (64%) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 55272f5..e8e7559 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -2,7 +2,8 @@ from fastapi import APIRouter, Depends, HTTPException, status, Security, Request from fastapi.responses import JSONResponse -import json, base64 +import json, jwt + from app.utils import configParser import urllib.parse @@ -65,10 +66,15 @@ async def authorize_rciam(request: Request): user_info = await rciam.get(metadata['userinfo_endpoint'], token=token) user_info.raise_for_status() user_info_data = user_info.json() - print(user_info_data) + # Encode the data to jwt + # todo: the key could become configurable and per tenant + jwt_user = jwt.encode(payload=user_info_data, + key="a custom key", + algorithm="HS256") + print(jwt_user) response.set_cookie(key="userinfo", - value=json.dumps(user_info_data), + value=jwt_user, secure=None, domain=SERVER_config['domain']) diff --git a/javascript/package.json b/javascript/package.json index a197eb2..2c9f9dd 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -31,6 +31,7 @@ "i18next-http-backend": "^2.1.1", "jquery": "^3.6.1", "jquery-mapael": "^2.2.0", + "jwt-decode": "^3.1.2", "moment": "^2.29.3", "pdfmake": "^0.2.6", "react": "^18.1.0", @@ -78,6 +79,5 @@ "last 1 firefox version", "last 1 safari version" ] - }, - "devDependencies": {} + } } diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index 56fdf4e..ed079c2 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -1,4 +1,4 @@ -import React, {useState} from "react"; +import React, {useState, useEffect} from "react"; import {Route, Routes} from 'react-router-dom' import Communities from "./Pages/Communities"; import Users from "./Pages/Users"; @@ -11,37 +11,62 @@ import Login from "./Pages/Authentication/Login"; import "./app.css"; import "./style.scss"; import 'react-toastify/dist/ReactToastify.css'; - -import {languageContext, projectContext, envContext} from "./components/Common/context"; +import jwt_decode from "jwt-decode"; +import { + languageContext, + projectContext, + envContext, + userinfoContext +} from "./Context/context"; import Layout from "./components/Common/layout"; import SideNav from "./components/Common/sideNav"; import Main from "./components/Common/main"; import {ToastContainer} from "react-toastify"; import ErrorPage from "./Pages/Error"; +import {useCookies} from 'react-cookie'; +import {toast} from 'react-toastify'; + function App() { - // const queryClient = new QueryClient() const [language, setLanguage] = useState('en') const [projectCon, setProjectCon] = useState(null) const [envCon, setEnvCon] = useState(null) + const [userInfo, setUserInfo] = useState(null) + const [cookies, setCookie] = useCookies(); + + + useEffect(() => { + if (cookies.userinfo != undefined) { + setUserInfo(jwt_decode(cookies.userinfo)) + } + }, [cookies]) + + useEffect(() => { + console.log('userinfo', userInfo) + if (userInfo != undefined) { + toast.info(`Welcome ${userInfo.name}`) + } + }, [userInfo]) return ( - - -
              - -
              - -
              + + + +
              + +
              + +
              +
              diff --git a/javascript/src/components/Common/context.js b/javascript/src/Context/context.js similarity index 64% rename from javascript/src/components/Common/context.js rename to javascript/src/Context/context.js index f0abc9c..c4d4651 100644 --- a/javascript/src/components/Common/context.js +++ b/javascript/src/Context/context.js @@ -3,4 +3,5 @@ import React from 'react'; export const userContext = React.createContext(); export const languageContext = React.createContext(); export const projectContext = React.createContext(); -export const envContext = React.createContext(); \ No newline at end of file +export const envContext = React.createContext(); +export const userinfoContext = React.createContext(); \ No newline at end of file diff --git a/javascript/src/Context/provider.js b/javascript/src/Context/provider.js index fff4069..d09c763 100644 --- a/javascript/src/Context/provider.js +++ b/javascript/src/Context/provider.js @@ -1,6 +1,7 @@ import * as React from 'react' -import { BrowserRouter as Router } from 'react-router-dom' -import { QueryClient, QueryClientProvider } from 'react-query' +import {BrowserRouter as Router} from 'react-router-dom' +import {QueryClient, QueryClientProvider} from 'react-query' +import {CookiesProvider} from 'react-cookie'; function AppProviders({children}) { @@ -8,9 +9,11 @@ function AppProviders({children}) { return ( - - {children} - + + + {children} + + ) } diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index 7138b95..26275a6 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -1,7 +1,7 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; -import { envContext, projectContext } from "../../components/Common/context"; +import { envContext, projectContext } from "../../Context/context"; import Container from "react-bootstrap/Container"; import CommunitiesChart from "../../components/Communities/communitiesChart"; import CommunitiesDataTable from "../../components/Communities/communitiesDataTable"; diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index 14db81e..f006795 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -2,7 +2,7 @@ import { useState, useEffect, useContext } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../components/Common/context"; +import { envContext, projectContext } from "../../Context/context"; import Form from 'react-bootstrap/Form'; import LoginDataTable from "../../components/Dashboard/loginDataTable"; import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index b1241f0..d1f09a2 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -3,7 +3,7 @@ import { useParams } from "react-router-dom"; import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; import { useNavigate } from "react-router-dom"; import { client } from '../../utils/api'; -import { envContext, projectContext } from "../../components/Common/context"; +import { envContext, projectContext } from "../../Context/context"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; diff --git a/javascript/src/Pages/Idps/index.js b/javascript/src/Pages/Idps/index.js index 77a03e8..05a10ba 100644 --- a/javascript/src/Pages/Idps/index.js +++ b/javascript/src/Pages/Idps/index.js @@ -2,7 +2,7 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../components/Common/context"; +import { envContext, projectContext } from "../../Context/context"; import Container from "react-bootstrap/Container"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; diff --git a/javascript/src/Pages/Sps/index.js b/javascript/src/Pages/Sps/index.js index a3411a4..e49cef1 100644 --- a/javascript/src/Pages/Sps/index.js +++ b/javascript/src/Pages/Sps/index.js @@ -2,7 +2,7 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../components/Common/context"; +import { envContext, projectContext } from "../../Context/context"; import Container from "react-bootstrap/Container"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; diff --git a/javascript/src/Pages/Sps/sp.js b/javascript/src/Pages/Sps/sp.js index 1f805c6..343d8a7 100644 --- a/javascript/src/Pages/Sps/sp.js +++ b/javascript/src/Pages/Sps/sp.js @@ -3,7 +3,7 @@ import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../components/Common/context"; +import { envContext, projectContext } from "../../Context/context"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import Form from 'react-bootstrap/Form'; diff --git a/javascript/src/Pages/Users/index.js b/javascript/src/Pages/Users/index.js index 679d8fa..b3cb402 100644 --- a/javascript/src/Pages/Users/index.js +++ b/javascript/src/Pages/Users/index.js @@ -1,7 +1,7 @@ import { useState, useContext, useEffect } from "react"; import { useParams } from "react-router-dom"; import { client } from '../../utils/api'; -import { envContext, projectContext } from "../../components/Common/context"; +import { envContext, projectContext } from "../../Context/context"; import Container from "react-bootstrap/Container"; import RegisteredUsersChart from "../../components/Users/registeredUsersChart"; import RegisteredUsersDataTable from "../../components/Users/registeredUsersDataTable"; diff --git a/javascript/src/components/Common/footer.js b/javascript/src/components/Common/footer.js index 0d46adb..626457f 100644 --- a/javascript/src/components/Common/footer.js +++ b/javascript/src/components/Common/footer.js @@ -9,7 +9,7 @@ import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; import parse from 'html-react-parser'; import config from "./../../config_react.json"; -import { languageContext } from './context'; +import { languageContext } from '../../Context/context'; import { useTranslation } from 'react-i18next'; const Footer = (props) => { diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index 76d6e6d..e4579bd 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -4,7 +4,7 @@ import {faUser, faUserShield, faSignOutAlt} from '@fortawesome/free-solid-svg-ic import Navbar from 'react-bootstrap/Navbar'; import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; -import {userContext} from './context'; +import {userContext} from '../../Context/context'; import {useTranslation} from 'react-i18next'; import {useCookies} from 'react-cookie'; import {useParams} from "react-router-dom"; diff --git a/javascript/src/components/Common/sideNav.js b/javascript/src/components/Common/sideNav.js index d111ce6..c912aef 100644 --- a/javascript/src/components/Common/sideNav.js +++ b/javascript/src/components/Common/sideNav.js @@ -3,7 +3,7 @@ import React, { useContext } from 'react'; import Sidebar from "react-bootstrap-sidebar-menu"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faDoorOpen, faHome, faUser, faUsers, faWarehouse } from '@fortawesome/free-solid-svg-icons'; -import { envContext, projectContext } from './context'; +import { envContext, projectContext } from '../../Context/context'; const SideNav = (props) => { diff --git a/javascript/src/config_react.json b/javascript/src/config_react.json index 1db475c..37d7975 100644 --- a/javascript/src/config_react.json +++ b/javascript/src/config_react.json @@ -6,6 +6,7 @@ "devel": { "config": { "website_url": "https://www.egi.eu/", + "login_url": "http://localhost:8004/login", "logo_url": "https://aai-dev.egi.eu/proxy/module.php/themeegi/resources/images/logo.svg", "home_page_title": "EGI Metrics (Development)", "contact": "faai@grnet.gr", diff --git a/requirements.txt b/requirements.txt index 49f8de2..ec5f8e5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,4 +21,5 @@ zipp==3.8.0 cachetools==5.3.0 Authlib==1.2.0 itsdangerous==2.1.2 -httpx==0.23.3 \ No newline at end of file +httpx==0.23.3 +pyjwt==2.7.0 \ No newline at end of file From c3cda6eb1a02731a9a289686a7e5814553670782 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 12 May 2023 13:50:54 +0300 Subject: [PATCH 136/331] render user profile (#18) --- app/routers/authenticate.py | 2 + javascript/src/app.css | 23 +++-- javascript/src/components/Common/navbarTop.js | 85 +++++++++---------- javascript/src/config_react.json | 1 + 4 files changed, 55 insertions(+), 56 deletions(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index e8e7559..bdb745a 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -73,6 +73,7 @@ async def authorize_rciam(request: Request): algorithm="HS256") print(jwt_user) + # todo: For how long should this cookie be valid? response.set_cookie(key="userinfo", value=jwt_user, secure=None, @@ -93,6 +94,7 @@ async def logout(request): # https://github.com/tiangolo/fastapi/issues/2452 response = RedirectResponse(url=urllib.parse.unquote(logout_start_url)) response.delete_cookie("logout_start") + response.delete_cookie("userinfo") request.session.pop('user', None) return response diff --git a/javascript/src/app.css b/javascript/src/app.css index 9433f1e..0ceadc4 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -25,17 +25,17 @@ body .nav-header { } .tenant_logo_container .ssp-logo a { - display: inline-block; - padding: 10px; + display: inline-block; + padding: 10px; } .tenant_logo_container .ssp-logo img { - max-height: 60px; + max-height: 60px; } .tenant_logo_container h1 { - font-family: 'Open Sans', sans-serif; - font-weight: 300; + font-family: 'Open Sans', sans-serif; + font-weight: 300; font-size: 26px; text-transform: none !important; color: #5b5b5b; @@ -105,9 +105,9 @@ body .nav-header { } .navbar-fixed-top .navbar-inner { - border: 0 none; - box-shadow: none; - background: transparent; + border: 0 none; + box-shadow: none; + background: transparent; } .drop-menu a { @@ -128,6 +128,11 @@ body .nav-header { font-size:1rem!important; } +.dropdown-menu[data-bs-popper] { + left: auto !important; + right: 0 !important; +} + .log-button { color: rgb(89, 154, 219)!important; border-color: rgb(89, 154, 219)!important; @@ -141,7 +146,7 @@ body .nav-header { /* General */ .text-center { - text-align: center; + text-align: center; } /* Footer */ diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index e4579bd..75ef5d4 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -4,7 +4,7 @@ import {faUser, faUserShield, faSignOutAlt} from '@fortawesome/free-solid-svg-ic import Navbar from 'react-bootstrap/Navbar'; import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; -import {userContext} from '../../Context/context'; +import {userinfoContext} from '../../Context/context'; import {useTranslation} from 'react-i18next'; import {useCookies} from 'react-cookie'; import {useParams} from "react-router-dom"; @@ -12,62 +12,53 @@ import config from "./../../config_react.json"; import Login from "../../Pages/Authentication/Login" const NavbarTop = (props) => { - //const history = useHistory(); // eslint-disable-next-line - - const user = useContext(userContext); + const [userInfo, setUserInfo] = useContext(userinfoContext); // eslint-disable-next-line const {t, i18n} = useTranslation(); - //const tenant = useContext(tenantContext); - const [cookies] = useCookies(['metrics_logoutkey']); + const [cookies, setCookies] = useCookies(); const {project, environment} = useParams(); const getConfig = key => config[project][environment][key] - console.log(getConfig("config")["theme_color"] + project) + if (!getConfig("config") || !getConfig("config")["theme_color"]) { + return null + } + + console.log('userinfo', userInfo) + console.log('config', getConfig("config")) return ( - - {getConfig("config") && getConfig("config")["theme_color"] && - - - {user ? - + + + { + userInfo != undefined ? + - {user ? user.name : 'login'} - {user && ' (' + user.role + ')'} - + {userInfo ? userInfo.name : 'login'} + {userInfo && ' (' + userInfo.email + ')'} - } - id="dropdown-menu-align-right" - > - {user && - - {user.sub} (sub) - - } - {/* {history.push('/'+(getConfig("config")&&(getConfig("config")["name"]+'/userinfo')));}}> - {t('nav_link_userinfo')} - */} - { - window.location.assign(getConfig("config")["logout_uri"] + "&id_token_hint=" + cookies.federation_logoutkey); - }}> - {t('logout')} - - - : ( - - - - ) - } - - - } - + + } + id="dropdown-menu-align-left" + > + + {userInfo.sub} (sub) + + { + window.location.assign(getConfig("config")["logout_uri"]); + }}> + {t('logout')} + + + : + } + + ) } export default NavbarTop diff --git a/javascript/src/config_react.json b/javascript/src/config_react.json index 37d7975..6760e87 100644 --- a/javascript/src/config_react.json +++ b/javascript/src/config_react.json @@ -7,6 +7,7 @@ "config": { "website_url": "https://www.egi.eu/", "login_url": "http://localhost:8004/login", + "logout_url": "http://localhost:8004/logout", "logo_url": "https://aai-dev.egi.eu/proxy/module.php/themeegi/resources/images/logo.svg", "home_page_title": "EGI Metrics (Development)", "contact": "faai@grnet.gr", From 1f1e0a8859a26239cbeec85af01b890cc69b0914 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 12 May 2023 14:54:38 +0300 Subject: [PATCH 137/331] Fix fastapi logout (#19) --- app/routers/authenticate.py | 4 ++- javascript/src/app.css | 6 ++-- javascript/src/components/Common/navbarTop.js | 30 +++++++++++-------- 3 files changed, 24 insertions(+), 16 deletions(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index bdb745a..8bb7d18 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -84,12 +84,13 @@ async def authorize_rciam(request: Request): @router.get('/logout', include_in_schema=False, response_class=RedirectResponse) -async def logout(request): +async def logout(request: Request): logout_start_url = request.cookies.get("logout_start") # pprint(request.cookies.get("logout_start")) if not logout_start_url: logout_start_url = "/" + print(logout_start_url) # Set cookies when returning a RedirectResponse # https://github.com/tiangolo/fastapi/issues/2452 response = RedirectResponse(url=urllib.parse.unquote(logout_start_url)) @@ -98,3 +99,4 @@ async def logout(request): request.session.pop('user', None) return response + diff --git a/javascript/src/app.css b/javascript/src/app.css index 0ceadc4..3b505e3 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -119,9 +119,9 @@ body .nav-header { margin-left: 0.2rem; } -.drop-container-header .dropdown-menu { - font-size: 4rem!important; -} +/*.drop-container-header .dropdown-menu {*/ +/* font-size: 4rem!important;*/ +/*}*/ .drop-container-header .dropdown-menu a { padding:0.3rem 1rem!important; diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index 75ef5d4..8619934 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -1,6 +1,4 @@ import React, {useContext} from 'react'; -import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; -import {faUser, faUserShield, faSignOutAlt} from '@fortawesome/free-solid-svg-icons'; import Navbar from 'react-bootstrap/Navbar'; import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; @@ -10,13 +8,15 @@ import {useCookies} from 'react-cookie'; import {useParams} from "react-router-dom"; import config from "./../../config_react.json"; import Login from "../../Pages/Authentication/Login" +import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; +import {faSignOutAlt} from "@fortawesome/free-solid-svg-icons"; const NavbarTop = (props) => { // eslint-disable-next-line const [userInfo, setUserInfo] = useContext(userinfoContext); // eslint-disable-next-line const {t, i18n} = useTranslation(); - const [cookies, setCookies] = useCookies(); + const [cookies, setCookie] = useCookies(); const {project, environment} = useParams(); const getConfig = key => config[project][environment][key] @@ -24,8 +24,12 @@ const NavbarTop = (props) => { return null } - console.log('userinfo', userInfo) - console.log('config', getConfig("config")) + const handleLogoutClick = () => { + // Set a cookie with the current location so the backend knows where to go + setCookie('logout_start', window.location.href, {path: '/'}); + // Redirect to the logout endpoint + window.location.href = getConfig("config")["logout_url"] + } return ( @@ -46,13 +50,15 @@ const NavbarTop = (props) => { } id="dropdown-menu-align-left" > - - {userInfo.sub} (sub) - - { - window.location.assign(getConfig("config")["logout_uri"]); - }}> - {t('logout')} + + + {userInfo.sub}(sub) + +
              + {t('logout')} + +
              : From 8c41ae094ee315ba560534825261464a71d6f1d9 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Mon, 15 May 2023 10:26:26 +0300 Subject: [PATCH 138/331] Improve side navigation (#20) * Improve side navigation.Fix keycloak logout. * cleaning --- app/routers/authenticate.py | 28 +- javascript/src/Pages/Idps/idp.js | 141 +++--- .../src/components/Common/entityInfo.js | 59 +-- javascript/src/components/Common/footer.js | 115 ++--- javascript/src/components/Common/header.js | 71 +-- javascript/src/components/Common/navbarTop.js | 3 - javascript/src/components/Common/sideNav.js | 110 +++-- .../Communities/communitiesChart.js | 325 +++++++------- .../Communities/communitiesDataTable.js | 232 +++++----- .../components/Communities/communitiesMap.js | 304 ++++++------- .../components/Dashboard/loginDataTable.js | 2 - .../components/Dashboard/loginIdpPieChart.js | 175 ++++---- .../components/Dashboard/loginLineChart.js | 217 +++++---- .../components/Dashboard/loginSpPieChart.js | 5 - javascript/src/components/Idps/idpMap.js | 122 +++-- .../src/components/Idps/idpsDataTable.js | 1 - javascript/src/components/Sps/spsDataTable.js | 1 - .../components/Users/registeredUsersChart.js | 2 - .../Users/registeredUsersDataTable.js | 5 +- .../components/Users/registeredUsersTiles.js | 5 - javascript/src/components/datatable.js | 422 +++++++++--------- 21 files changed, 1162 insertions(+), 1183 deletions(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 8bb7d18..bc4fd90 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -4,7 +4,6 @@ from fastapi.responses import JSONResponse import json, jwt - from app.utils import configParser import urllib.parse from starlette.responses import HTMLResponse, RedirectResponse @@ -29,12 +28,14 @@ client_kwargs={'scope': 'openid profile email eduperson_entitlement'} ) + @router.get('/login', include_in_schema=False) async def login_endpoint(request: Request): rciam = oauth.create_client('rciam') redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['host'] + SERVER_config['api_path'] + "/auth" return await rciam.authorize_redirect(request, redirect_uri) + @router.get('/auth', include_in_schema=False, response_class=RedirectResponse) @@ -55,6 +56,8 @@ async def authorize_rciam(request: Request): except OAuthError as error: return HTMLResponse(f'

              {error.error}

              ') user = token.get('userinfo') + pprint(token) + if user: request.session['user'] = dict(user) # Fetch the userinfo data @@ -66,6 +69,7 @@ async def authorize_rciam(request: Request): user_info = await rciam.get(metadata['userinfo_endpoint'], token=token) user_info.raise_for_status() user_info_data = user_info.json() + print(user_info_data) # Encode the data to jwt # todo: the key could become configurable and per tenant jwt_user = jwt.encode(payload=user_info_data, @@ -79,24 +83,30 @@ async def authorize_rciam(request: Request): secure=None, domain=SERVER_config['domain']) + response.set_cookie(key="idtoken", + value=token.get('id_token'), + secure=None, + domain=SERVER_config['domain']) + return response + @router.get('/logout', include_in_schema=False, response_class=RedirectResponse) async def logout(request: Request): - logout_start_url = request.cookies.get("logout_start") - # pprint(request.cookies.get("logout_start")) - if not logout_start_url: - logout_start_url = "/" + rciam = oauth.create_client('rciam') + metadata = await rciam.load_server_metadata() + redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['host'] + SERVER_config['api_path'] + "egi/devel" + logout_endpoint = metadata['end_session_endpoint'] + "?redirect=" + urllib.parse.unquote( + redirect_uri) + "&id_token_hint=" + request.cookies.get("idtoken") - print(logout_start_url) + print(logout_endpoint) # Set cookies when returning a RedirectResponse # https://github.com/tiangolo/fastapi/issues/2452 - response = RedirectResponse(url=urllib.parse.unquote(logout_start_url)) - response.delete_cookie("logout_start") + response = RedirectResponse(url=logout_endpoint) response.delete_cookie("userinfo") + response.delete_cookie("idtoken") request.session.pop('user', None) return response - diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index d1f09a2..a3f7b5f 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -1,9 +1,9 @@ -import { useState, useEffect, useContext } from "react"; -import { useParams } from "react-router-dom"; -import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; -import { useNavigate } from "react-router-dom"; -import { client } from '../../utils/api'; -import { envContext, projectContext } from "../../Context/context"; +import {useState, useEffect, useContext, useId} from "react"; +import {useParams} from "react-router-dom"; +import {Tab, Tabs, TabList, TabPanel} from 'react-tabs'; +import {useNavigate} from "react-router-dom"; +import {client} from '../../utils/api'; +import {envContext, projectContext} from "../../Context/context"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; @@ -20,74 +20,73 @@ import Header from "../../components/Common/header"; import 'react-tabs/style/react-tabs.css'; const Idp = () => { - const { project, environment, id } = useParams(); - const [tenantId, setTenantId] = useState(0); - const [uniqueLogins, setUniqueLogins] = useState(false); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) + const {project, environment, id} = useParams(); + const [tenantId, setTenantId] = useState(0); + const [uniqueLogins, setUniqueLogins] = useState(false); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { - setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment).then(response => { - setTenantId(response["data"][0]["id"]) - }) + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) + client.get("tenant/" + project + "/" + environment).then(response => { + setTenantId(response["data"][0]["id"]) + }) - }, []) - const handleChange = event => { - setUniqueLogins(event.target.checked); - console.log(uniqueLogins) - } - let navigate = useNavigate(); - const goToSpecificProvider = (id, provider) => { - var path = "" - if (provider === "sp") { - path = "/" + project + "/" + environment + "/services/" + id; - } - else { - path = "/" + project + "/" + environment + "/identity-providers/" + id; - } - navigate(path); - } - if (tenantId === 0) return; - else - return ( - -
              - -
              - - - - - - - - - - - - - - - Map - Datatable - + }, []) + const handleChange = event => { + setUniqueLogins(event.target.checked); + } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + var path = "" + if (provider === "sp") { + path = "/" + project + "/" + environment + "/services/" + id; + } else { + path = "/" + project + "/" + environment + "/identity-providers/" + id; + } + navigate(path); + } + if (tenantId === 0) return; + else + return ( + +
              + +
              + + + + + + + + + + + + + + + Map + Datatable + - - - - - - - - - ) + + + + + + + + + ) } export default Idp \ No newline at end of file diff --git a/javascript/src/components/Common/entityInfo.js b/javascript/src/components/Common/entityInfo.js index 5322050..bbc54e6 100644 --- a/javascript/src/components/Common/entityInfo.js +++ b/javascript/src/components/Common/entityInfo.js @@ -1,42 +1,45 @@ - -import { useState, useContext, useEffect } from "react"; -import { client } from '../../utils/api'; +import {useState, useContext, useEffect} from "react"; +import {client} from '../../utils/api'; import Container from 'react-bootstrap/Container'; import Select from 'react-select'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import {convertDateByGroup, getWeekNumber} from "../Common/utils"; import 'bootstrap/dist/css/bootstrap.min.css'; const EntityInfo = (parameters) => { - const [idp, setIdp] = useState([]) - const [sp, setSp] = useState([]) - useEffect(() => { - if (parameters['idpId']) { - client.get("idps", { params: { 'tenant_id': parameters['tenantId'], 'idpId': parameters['idpId']} }). - then(idp_response => { - setIdp(idp_response["data"][0]) - console.log(idp_response) - }) + const [idp, setIdp] = useState([]) + const [sp, setSp] = useState([]) + useEffect(() => { + if (parameters['idpId']) { + client.get("idps", { + params: { + 'tenant_id': parameters['tenantId'], + 'idpId': parameters['idpId'] } - else if (parameters['spId']) { - client.get("sps", { params: { 'tenant_id': parameters['tenantId'], 'spId': parameters['spId']} }). - then(sp_response => { - setSp(sp_response["data"][0]) - console.log(sp_response) - }) + }).then(idp_response => { + setIdp(idp_response["data"][0]) + }) + } else if (parameters['spId']) { + client.get("sps", { + params: { + 'tenant_id': parameters['tenantId'], + 'spId': parameters['spId'] } - }, []) - if(idp.name) { + }).then(sp_response => { + setSp(sp_response["data"][0]) + }) + } + }, []) + if (idp.name) { return ( -

              {idp.name} ({idp.entityid})

              +

              {idp.name} ({idp.entityid})

              ) - } - else if (sp.name) { - return ( -

              {sp.name} ({sp.identifier})

              - ) - } + } else if (sp.name) { + return ( +

              {sp.name} ({sp.identifier})

              + ) + } } export default EntityInfo \ No newline at end of file diff --git a/javascript/src/components/Common/footer.js b/javascript/src/components/Common/footer.js index 626457f..4031508 100644 --- a/javascript/src/components/Common/footer.js +++ b/javascript/src/components/Common/footer.js @@ -1,6 +1,6 @@ -import React, { useState, useEffect, useContext } from 'react'; -import { useParams } from "react-router-dom"; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import React, {useState, useEffect, useContext} from 'react'; +import {useParams} from "react-router-dom"; +import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; import Image from 'react-bootstrap/Image'; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; @@ -9,63 +9,68 @@ import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; import parse from 'html-react-parser'; import config from "./../../config_react.json"; -import { languageContext } from '../../Context/context'; -import { useTranslation } from 'react-i18next'; +import {languageContext} from '../../Context/context'; +import {useTranslation} from 'react-i18next'; const Footer = (props) => { - const [language,setLanguage] = useContext(languageContext) - const { project, environment } = useParams(); - const getConfig = key => config[project][environment][key] - const { t, i18n } = useTranslation(); - console.log(language) - return ( -
              -
              - -
              -
              - { setLanguage(e); i18n.changeLanguage(e) }} - className="ssp-btn btn ssp-btn__footer dropdown-toggle" - id='dropdown-button-drop-up' key="up" - title={ + const [language, setLanguage] = useContext(languageContext) + const {project, environment} = useParams(); + const getConfig = key => config[project][environment][key] + const {t, i18n} = useTranslation(); + return ( +
              +
              + +
              +
              + { + setLanguage(e); + i18n.changeLanguage(e) + }} + className="ssp-btn btn ssp-btn__footer dropdown-toggle" + id='dropdown-button-drop-up' key="up" + title={ - {language === 'en' ? 'English' : 'Greek'} - } drop="up" variant="link"> - English - Greek - -
              - - -
              - - - -
              - Copyright ©2023 -
              -
              - - - - - - -
              - {getConfig("config") && getConfig("config")["footer_description"] && parse(getConfig("config")["footer_description"])} | Powered by RCIAM -
              -
              + {language === 'en' ? 'English' : 'Greek'} + } drop="up" variant="link"> + English + Greek + - + + +
              + + + +
              + Copyright ©2023 +
              +
              + + + + + + +
              + {getConfig("config") && getConfig("config")["footer_description"] && parse(getConfig("config")["footer_description"])} | + Powered by RCIAM +
              +
              + + - ) + ) } export default Footer \ No newline at end of file diff --git a/javascript/src/components/Common/header.js b/javascript/src/components/Common/header.js index d0dc60e..d58db4f 100644 --- a/javascript/src/components/Common/header.js +++ b/javascript/src/components/Common/header.js @@ -1,6 +1,6 @@ -import React, { useState, useEffect } from 'react'; -import { useParams } from "react-router-dom"; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import React, {useState, useEffect} from 'react'; +import {useParams} from "react-router-dom"; +import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; import Image from 'react-bootstrap/Image'; import {faTimes} from '@fortawesome/free-solid-svg-icons'; import parse from 'html-react-parser'; @@ -10,41 +10,42 @@ import NavbarTop from './navbarTop'; const Header = (props) => { - const [bannerAlertInfo, setBannerAlertInfo] = useState([]); - const { project, environment } = useParams(); - const getConfig = key => config[project][environment][key] + const [bannerAlertInfo, setBannerAlertInfo] = useState([]); + const {project, environment} = useParams(); + const getConfig = key => config[project][environment][key] - console.log(getConfig("config")["logo_url"]) - useEffect(() => { - setBannerAlertInfo(props.bannerAlertInfo); - }, [props.bannerAlertInfo]) + useEffect(() => { + setBannerAlertInfo(props.bannerAlertInfo); + }, [props.bannerAlertInfo]) - return ( -
              - {bannerAlertInfo && bannerAlertInfo[0] && -
              -
              - {parse(bannerAlertInfo[0].alert_message)} -
              - -
              - } - 0} /> - -
              -
              - - - -
              -

              - {getConfig("config")["home_page_title"]} -

              -
              + return ( +
              + {bannerAlertInfo && bannerAlertInfo[0] && +
              +
              + {parse(bannerAlertInfo[0].alert_message)} +
              +
              - ); + } + 0}/> + +
              +
              + + + +
              +

              + {getConfig("config")["home_page_title"]} +

              +
              +
              + ); } export default Header \ No newline at end of file diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index 8619934..37cc57f 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -16,7 +16,6 @@ const NavbarTop = (props) => { const [userInfo, setUserInfo] = useContext(userinfoContext); // eslint-disable-next-line const {t, i18n} = useTranslation(); - const [cookies, setCookie] = useCookies(); const {project, environment} = useParams(); const getConfig = key => config[project][environment][key] @@ -25,8 +24,6 @@ const NavbarTop = (props) => { } const handleLogoutClick = () => { - // Set a cookie with the current location so the backend knows where to go - setCookie('logout_start', window.location.href, {path: '/'}); // Redirect to the logout endpoint window.location.href = getConfig("config")["logout_url"] } diff --git a/javascript/src/components/Common/sideNav.js b/javascript/src/components/Common/sideNav.js index c912aef..42dae3a 100644 --- a/javascript/src/components/Common/sideNav.js +++ b/javascript/src/components/Common/sideNav.js @@ -1,65 +1,59 @@ -import React, { useContext } from 'react'; -// import { useTranslation } from 'react-i18next'; +import React, {useContext} from 'react'; +import {Link} from 'react-router-dom' import Sidebar from "react-bootstrap-sidebar-menu"; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faDoorOpen, faHome, faUser, faUsers, faWarehouse } from '@fortawesome/free-solid-svg-icons'; -import { envContext, projectContext } from '../../Context/context'; +import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; +import {faDoorOpen, faHome, faUser, faUsers, faWarehouse} from '@fortawesome/free-solid-svg-icons'; +import {envContext, projectContext} from '../../Context/context'; const SideNav = (props) => { - // const { t, i18n } = useTranslation(); - const [project] = useContext(projectContext); - const [environment] = useContext(envContext); - console.log(project) - return ( + // const { t, i18n } = useTranslation(); + const [project] = useContext(projectContext); + const [environment] = useContext(envContext); + return ( - - - - {/* Logo */} - - - - - - - - Home - - - - Identity Providers - - - - Services - - - - Users - - - - Communities - - {/* - - - Submenu - - - - - 1.1 - Sub menu item - - - - */} - - - - - ) + + + + {/* Logo */} + + + + + {/* Home */} + + + Home + + {/* Identity Providers */} + + + Identity Providers + + {/* Services */} + + + Services + + {/* Users */} + + + Users + + {/* Communities */} + + + Communities + + + + + + ) } export default SideNav \ No newline at end of file diff --git a/javascript/src/components/Communities/communitiesChart.js b/javascript/src/components/Communities/communitiesChart.js index 2919d39..e9c5e88 100644 --- a/javascript/src/components/Communities/communitiesChart.js +++ b/javascript/src/components/Communities/communitiesChart.js @@ -1,7 +1,7 @@ -import { useState, useEffect } from "react"; -import { Chart } from "react-google-charts"; -import { client } from '../../utils/api'; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import {useState, useEffect} from "react"; +import {Chart} from "react-google-charts"; +import {client} from '../../utils/api'; +import {convertDateByGroup, getWeekNumber} from "../Common/utils"; import Select from 'react-select'; import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; @@ -10,175 +10,172 @@ import ListCommunities from "./listCommunities"; import 'bootstrap/dist/css/bootstrap.min.css'; export const options = { - year: { - title: "Number of Communities created per year", - hAxis: { - format: 'Y', - }, - count_interval: 12 + year: { + title: "Number of Communities created per year", + hAxis: { + format: 'Y', }, - month: { - title: "Number of Communities created per month", - hAxis: { - format: 'YYYY-MM', - }, - count_interval: 24 + count_interval: 12 + }, + month: { + title: "Number of Communities created per month", + hAxis: { + format: 'YYYY-MM', }, - week: { - title: "Number of Communities created per week", - hAxis: { - format: '', - }, - count_interval: 24 - } + count_interval: 24 + }, + week: { + title: "Number of Communities created per week", + hAxis: { + format: '', + }, + count_interval: 24 + } }; const options_group_by = [ - { value: 'year', label: 'yearly' }, - { value: 'month', label: 'monthly' }, - { value: 'week', label: 'weekly' }, + {value: 'year', label: 'yearly'}, + {value: 'month', label: 'monthly'}, + {value: 'week', label: 'weekly'}, ]; const CommunitiesChart = (parameters) => { - const [selected, setSelected] = useState(options_group_by[0].value); - const [communities, setCommunities] = useState(); - const [communitiesList, setcommunitiesList] = useState([]); - var communitiesArray = [["Date", "Communities"]]; - const [global_options, setGlobalOptions] = useState(); - - useEffect(() => { - var communitiesListArray = []; - var hticksArray = []; - var fValues = [['Date', 'Count', { 'type': 'string', 'role': 'tooltip', 'p': { 'html': true } }]] - // Get data for the last 4 years - client.get("communities_groupby/" + selected, - { - params: - { - 'interval': selected, - 'count_interval': options[selected]["count_interval"], - 'tenant_id': parameters["tenantId"], - } - }).then(response => { - console.log(response); - - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - var range_date = new Date(element.range_date); - var community = [range_date, element.count] - communitiesArray.push(community) - - // Construct the list with COUs - var createdDate = element.created_date.split(", ") - var description = element.description.split("|| ") - element.names.split("|| ").forEach(function (name, index) { - communitiesListArray.push({ name: name, created: createdDate[index], description: description[index] + '
              Created Date: ' + createdDate[index] }) - }) - - if (selected === "week") { - hticksArray.push({ v: range_date, f: getWeekNumber(range_date) }) - } - else { - hticksArray.push({ v: range_date, f: range_date }) - } - - // Construct element & tooltip - var temp = []; - temp.push(range_date); - temp.push(parseInt(element['count'])); - temp.push('
              ' - + convertDateByGroup(range_date, selected) - + '
              Communities' - + ": " + parseInt(element['count']) + '
              '); - fValues.push(temp); - }); - - // sort by value - communitiesListArray = communitiesListArray.sort(function (a, b) { - var nameA = a.name.toUpperCase(); // ignore upper and lowercase - var nameB = b.name.toUpperCase(); // ignore upper and lowercase - if (nameA < nameB) { - return -1; - } - if (nameA > nameB) { - return 1; - } - // names must be equal - return 0; - }); - //communitiesList.push({name:element.names, created: element.created_date, description: element.description}) - setcommunitiesList(communitiesListArray) - //console.log(communitiesArray) - setCommunities(fValues) - - - setGlobalOptions({ - title: options[selected]["title"], - backgroundColor: { fill: 'transparent' }, - vAxis: { - //title: vAxisTitle[tab], - format: '0' - }, - hAxis: { - format: options[selected]["hAxis"]["format"], - maxTextLines: 2, - //title: registeredUsersBy[type], // globar variable found at index.ctp - textStyle: { fontSize: 15 }, - ticks: hticksArray, - //showTextEvery: 5 - }, - tooltip: { isHtml: true }, - width: '100%', - height: '350', - bar: { groupWidth: "92%" }, - legend: { position: "none" }, - }) - - }) - - }, [selected, parameters]) - - - - const handleChange = event => { - console.log(event.value); - setSelected(event.value); - }; - - - return -
              -
              -

              Number of Communities created -

              -
              - - - - - - - - - - Select Period: - - - - - - - - - - - - - - - + const [selected, setSelected] = useState(options_group_by[0].value); + const [communities, setCommunities] = useState(); + const [communitiesList, setcommunitiesList] = useState([]); + var communitiesArray = [["Date", "Communities"]]; + const [global_options, setGlobalOptions] = useState(); + + useEffect(() => { + var communitiesListArray = []; + var hticksArray = []; + var fValues = [['Date', 'Count', {'type': 'string', 'role': 'tooltip', 'p': {'html': true}}]] + // Get data for the last 4 years + client.get("communities_groupby/" + selected, + { + params: + { + 'interval': selected, + 'count_interval': options[selected]["count_interval"], + 'tenant_id': parameters["tenantId"], + } + }).then(response => { + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} + var range_date = new Date(element.range_date); + var community = [range_date, element.count] + communitiesArray.push(community) + + // Construct the list with COUs + var createdDate = element.created_date.split(", ") + var description = element.description.split("|| ") + element.names.split("|| ").forEach(function (name, index) { + communitiesListArray.push({ + name: name, + created: createdDate[index], + description: description[index] + '
              Created Date: ' + createdDate[index] + }) + }) + + if (selected === "week") { + hticksArray.push({v: range_date, f: getWeekNumber(range_date)}) + } else { + hticksArray.push({v: range_date, f: range_date}) + } + + // Construct element & tooltip + var temp = []; + temp.push(range_date); + temp.push(parseInt(element['count'])); + temp.push('
              ' + + convertDateByGroup(range_date, selected) + + '
              Communities' + + ": " + parseInt(element['count']) + '
              '); + fValues.push(temp); + }); + + // sort by value + communitiesListArray = communitiesListArray.sort(function (a, b) { + var nameA = a.name.toUpperCase(); // ignore upper and lowercase + var nameB = b.name.toUpperCase(); // ignore upper and lowercase + if (nameA < nameB) { + return -1; + } + if (nameA > nameB) { + return 1; + } + // names must be equal + return 0; + }); + setcommunitiesList(communitiesListArray) + setCommunities(fValues) + + + setGlobalOptions({ + title: options[selected]["title"], + backgroundColor: {fill: 'transparent'}, + vAxis: { + //title: vAxisTitle[tab], + format: '0' + }, + hAxis: { + format: options[selected]["hAxis"]["format"], + maxTextLines: 2, + //title: registeredUsersBy[type], // globar variable found at index.ctp + textStyle: {fontSize: 15}, + ticks: hticksArray, + //showTextEvery: 5 + }, + tooltip: {isHtml: true}, + width: '100%', + height: '350', + bar: {groupWidth: "92%"}, + legend: {position: "none"}, + }) + + }) + + }, [selected, parameters]) + + + const handleChange = event => { + setSelected(event.value); + }; + + + return + +
              +

              Number of Communities created +

              +
              + + + + + + + + + + Select Period: + + + + + + + + + + + + + + + } diff --git a/javascript/src/components/Communities/communitiesDataTable.js b/javascript/src/components/Communities/communitiesDataTable.js index bc36bb4..2421652 100644 --- a/javascript/src/components/Communities/communitiesDataTable.js +++ b/javascript/src/components/Communities/communitiesDataTable.js @@ -1,6 +1,6 @@ -import { useState, useContext, useEffect } from "react"; -import { client } from '../../utils/api'; -import { communitiesGroupBy } from "../../utils/queryKeys"; +import {useState, useContext, useEffect} from "react"; +import {client} from '../../utils/api'; +import {communitiesGroupBy} from "../../utils/queryKeys"; import "jquery/dist/jquery.min.js"; import $ from "jquery"; import Datatable from "../../components/datatable"; @@ -9,128 +9,130 @@ import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import DatePicker from "react-datepicker"; import Dropdown from 'react-dropdown'; -import { ToastContainer, toast } from 'react-toastify'; -import { convertDateByGroup } from "../Common/utils"; +import {ToastContainer, toast} from 'react-toastify'; +import {convertDateByGroup} from "../Common/utils"; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; const dropdownOptions = [ - { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, - { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, - { value: 'month', label: 'Monthly Basis' }, - { value: 'year', label: 'Yearly Basis' }, + {value: 'day', label: 'Daily Basis', className: 'myOptionClassName'}, + {value: 'week', label: 'Weekly Basis', className: 'myOptionClassName'}, + {value: 'month', label: 'Monthly Basis'}, + {value: 'year', label: 'Yearly Basis'}, ] const CommunitiesDataTable = (parameters) => { - const [communities, setCommunities] = useState(); - var communitiesArray = []; - const [minDate, setMinDate] = useState(""); - const [startDate, setStartDate] = useState(); - const [endDate, setEndDate] = useState(); - useEffect(() => { - client.get("communities_groupby/month", - { - params: - { - 'tenant_id': parameters["tenantId"], - } - }).then(response => { - console.log(response); - var minDateFromData = "" - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - - var range_date = new Date(element.range_date); - if (minDateFromData == "") { - minDateFromData = new Date(element.min_date) - } - var community = { "Date": dateFormat(range_date, "yyyy-mm"), "Number of Communities": element.count, "Names": element.names } - communitiesArray.push(community) - - }); - - setMinDate(minDateFromData) - setCommunities(communitiesArray) - }) - // - - }, []) - - const handleChange = event => { - console.log(event.value); - communitiesArray = [] - if (!startDate || !endDate) { - toast.error('You have to fill both startDate and endDate.', { - position: "top-center", - autoClose: 5000, - hideProgressBar: false, - closeOnClick: true, - pauseOnHover: true, - draggable: true, - progress: undefined, - theme: "dark", - }); - return + const [communities, setCommunities] = useState(); + var communitiesArray = []; + const [minDate, setMinDate] = useState(""); + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + useEffect(() => { + client.get("communities_groupby/month", + { + params: + { + 'tenant_id': parameters["tenantId"], + } + }).then(response => { + var minDateFromData = "" + response["data"].forEach(element => { + + var range_date = new Date(element.range_date); + if (minDateFromData == "") { + minDateFromData = new Date(element.min_date) + } + var community = { + "Date": dateFormat(range_date, "yyyy-mm"), + "Number of Communities": element.count, + "Names": element.names } - client.get("communities_groupby/" + event.value, - { - params: - { - 'startDate': startDate, - 'endDate': endDate, - 'tenant_id': parameters["tenantId"] - } - }). - then(response => { - //console.log(response); - - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - var range_date = new Date(element.range_date); - - var community = { "Date": convertDateByGroup(range_date, event.value), "Number of Communities": element.count, "Names": element.names } - communitiesArray.push(community) - - }); - if (communitiesArray.length == 0) { - communitiesArray.push({ "Data": "No data available." }) - - } - // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#table").DataTable().destroy() - setCommunities(communitiesArray) - }) - //setSelected(event.value); - }; - - return - -
              -

              Number of logins

              -
              - - - - From: setStartDate(date)}> - To: setEndDate(date)}> - - - - - - - + communitiesArray.push(community) + + }); + + setMinDate(minDateFromData) + setCommunities(communitiesArray) + }) + + }, []) + + const handleChange = event => { + communitiesArray = [] + if (!startDate || !endDate) { + toast.error('You have to fill both startDate and endDate.', { + position: "top-center", + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: true, + draggable: true, + progress: undefined, + theme: "dark", + }); + return + } + client.get("communities_groupby/" + event.value, + { + params: + { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': parameters["tenantId"] + } + }).then(response => { + + response["data"].forEach(element => { + var range_date = new Date(element.range_date); + + var community = { + "Date": convertDateByGroup(range_date, event.value), + "Number of Communities": element.count, + "Names": element.names + } + communitiesArray.push(community) + + }); + if (communitiesArray.length == 0) { + communitiesArray.push({"Data": "No data available."}) + + } + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#table").DataTable().destroy() + setCommunities(communitiesArray) + }) + }; + + return + +
              +

              Number of logins

              +
              + + + + From: setStartDate(date)}> + To: setEndDate(date)}> + + + + + + + } diff --git a/javascript/src/components/Communities/communitiesMap.js b/javascript/src/components/Communities/communitiesMap.js index 3a2cf44..778cbe9 100644 --- a/javascript/src/components/Communities/communitiesMap.js +++ b/javascript/src/components/Communities/communitiesMap.js @@ -1,166 +1,166 @@ -import { useState, useEffect } from "react"; +import {useState, useEffect} from "react"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Select from 'react-select'; -import { client } from '../../utils/api'; +import {client} from '../../utils/api'; import $ from "jquery"; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; -import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import {calculateLegends, setMapConfiguration, setLegend} from "../Common/utils"; const CommunitiesMap = (parameters) => { - const StatusEnumeration = { - 'A': 'Active', - 'GP': 'Grace Period', - 'O': 'Other' - } - - const [communities, setCommunities] = useState(); - const [selectedCommunity, setSelectedCommunity] = useState({}); - const [membersStatus, setMembersStatus] = useState([]); - var communitiesArray = []; - useEffect(() => { - client.get("communities", - { - params: - { - 'tenant_id': parameters["tenantId"], - } - }).then(response => { - - response["data"].forEach(element => { - var community = { label: element.name, value: element.id } - communitiesArray.push(community) - }) - - setCommunities(communitiesArray) - - }) - }, []) - - const createMap = (id, mapData, tooltipLabel = "Users", legendLabel = 'Users per country') => { - var areas = {}; - var maxSum = 0; - mapData[0].forEach(function (mapRow) { - - var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + "
              " - var other_status = 0; - // Get statuses per country - mapData[1].forEach(function (status_per_country) { - if (status_per_country.country === mapRow.country) { - if (status_per_country.status !== 'A' && status_per_country.status !== 'GP') { - other_status += status_per_country.sum - } - else { - contentTooltip += StatusEnumeration[status_per_country.status] + ": " + status_per_country.sum + "
              " - } - } - - }) - if (other_status > 0) { - contentTooltip += StatusEnumeration['O'] + ": " + other_status - } - //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; - areas[mapRow.countrycode] = { - value: mapRow.sum, - tooltip: { content: contentTooltip } - } - if (mapRow.sum > maxSum) { - maxSum = mapRow.sum; - } - }) - // Calculate Legends - var legends = calculateLegends(maxSum) - $(".areaLegend").show() - $("#" + id).mapael({ - map: setMapConfiguration(), - legend: setLegend(legendLabel, legends), - areas: areas - }) - - } - - const handleChange = event => { - - var community_id = event.value; - console.log(community_id) - client.get("members_bystatus", { params: { 'community_id': community_id, 'tenant_id': parameters['tenantId'] } }).then(response => { - var statuses = { 'A': 0, 'GP': 0, 'O': 0 } - response["data"].forEach(function (memberStatus, index) { - if (memberStatus['status'] === 'A' || memberStatus['status'] === 'GP') { - statuses[memberStatus['status']] = memberStatus['count'] - } - else { - statuses['O'] += memberStatus['count'] - } - }) - setMembersStatus(statuses) - }) - client.get("communities/" + community_id, - { - params: { - 'tenant_id': parameters["tenantId"], - } - }).then(result => { - console.log(result) - var community = result["data"] - setSelectedCommunity({ "name": community[0]["name"], "description": community[0]["description"] }) - } - ) - client.get("country_stats_by_vo/" + community_id, - { - params: - { - 'tenant_id': parameters["tenantId"], - } - }).then(result => { - console.log(result) - var stats = result["data"] - createMap("communitiesMap", stats) - }) - } - return ( - - -
              -

              Statistics Per Community

              -
              - - - - {selectedCommunity["name"] && {selectedCommunity["name"]} - {selectedCommunity["description"]} - - - } - - -
              -
              -
              -
              - - - {membersStatus["A"] !== undefined && - - ACTIVE USERS - {membersStatus["A"]} - - - GRACE PERIOD USERS - {membersStatus["GP"]} - - - OTHER STATUS USERS - {membersStatus["O"]} - - - } - + const StatusEnumeration = { + 'A': 'Active', + 'GP': 'Grace Period', + 'O': 'Other' + } + + const [communities, setCommunities] = useState(); + const [selectedCommunity, setSelectedCommunity] = useState({}); + const [membersStatus, setMembersStatus] = useState([]); + var communitiesArray = []; + useEffect(() => { + client.get("communities", + { + params: + { + 'tenant_id': parameters["tenantId"], + } + }).then(response => { + + response["data"].forEach(element => { + var community = {label: element.name, value: element.id} + communitiesArray.push(community) + }) + + setCommunities(communitiesArray) + + }) + }, []) + + const createMap = (id, mapData, tooltipLabel = "Users", legendLabel = 'Users per country') => { + var areas = {}; + var maxSum = 0; + mapData[0].forEach(function (mapRow) { + + var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + "
              " + var other_status = 0; + // Get statuses per country + mapData[1].forEach(function (status_per_country) { + if (status_per_country.country === mapRow.country) { + if (status_per_country.status !== 'A' && status_per_country.status !== 'GP') { + other_status += status_per_country.sum + } else { + contentTooltip += StatusEnumeration[status_per_country.status] + ": " + status_per_country.sum + "
              " + } + } + + }) + if (other_status > 0) { + contentTooltip += StatusEnumeration['O'] + ": " + other_status + } + //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; + areas[mapRow.countrycode] = { + value: mapRow.sum, + tooltip: {content: contentTooltip} + } + if (mapRow.sum > maxSum) { + maxSum = mapRow.sum; + } + }) + // Calculate Legends + var legends = calculateLegends(maxSum) + $(".areaLegend").show() + $("#" + id).mapael({ + map: setMapConfiguration(), + legend: setLegend(legendLabel, legends), + areas: areas + }) + + } + + const handleChange = event => { + + var community_id = event.value; + client.get("members_bystatus", { + params: { + 'community_id': community_id, + 'tenant_id': parameters['tenantId'] + } + }).then(response => { + var statuses = {'A': 0, 'GP': 0, 'O': 0} + response["data"].forEach(function (memberStatus, index) { + if (memberStatus['status'] === 'A' || memberStatus['status'] === 'GP') { + statuses[memberStatus['status']] = memberStatus['count'] + } else { + statuses['O'] += memberStatus['count'] + } + }) + setMembersStatus(statuses) + }) + client.get("communities/" + community_id, + { + params: { + 'tenant_id': parameters["tenantId"], + } + }).then(result => { + var community = result["data"] + setSelectedCommunity({"name": community[0]["name"], "description": community[0]["description"]}) + } + ) + client.get("country_stats_by_vo/" + community_id, + { + params: + { + 'tenant_id': parameters["tenantId"], + } + }).then(result => { + var stats = result["data"] + createMap("communitiesMap", stats) + }) + } + return ( + + +
              +

              Statistics Per Community

              +
              + + + + {selectedCommunity["name"] && {selectedCommunity["name"]} + {selectedCommunity["description"]} + + } + + +
              +
              +
              +
              + + + {membersStatus["A"] !== undefined && + + ACTIVE USERS + {membersStatus["A"]} - ) + + GRACE PERIOD USERS + {membersStatus["GP"]} + + + OTHER STATUS USERS + {membersStatus["O"]} + + + } + + + + ) } export default CommunitiesMap; \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginDataTable.js b/javascript/src/components/Dashboard/loginDataTable.js index d8e28c2..779ddde 100644 --- a/javascript/src/components/Dashboard/loginDataTable.js +++ b/javascript/src/components/Dashboard/loginDataTable.js @@ -36,10 +36,8 @@ const LoginDataTable = ({startDateHandler, endDateHandler, tenantId, uniqueLogin 'unique_logins': uniqueLogins } }).then(response => { - console.log(response); var minDateFromData = "" response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} var range_date = new Date(element.range_date); if (minDateFromData == "") { diff --git a/javascript/src/components/Dashboard/loginIdpPieChart.js b/javascript/src/components/Dashboard/loginIdpPieChart.js index 49b024b..eba18c7 100644 --- a/javascript/src/components/Dashboard/loginIdpPieChart.js +++ b/javascript/src/components/Dashboard/loginIdpPieChart.js @@ -1,6 +1,6 @@ -import { useState, useContext, useEffect } from "react"; -import { Chart } from "react-google-charts"; -import { client } from '../../utils/api'; +import {useState, useContext, useEffect} from "react"; +import {Chart} from "react-google-charts"; +import {client} from '../../utils/api'; import Select from 'react-select'; import Container from 'react-bootstrap/Container'; @@ -9,104 +9,103 @@ import Col from 'react-bootstrap/Col'; import 'bootstrap/dist/css/bootstrap.min.css'; import "jquery/dist/jquery.min.js"; import $ from "jquery"; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import {convertDateByGroup, getWeekNumber} from "../Common/utils"; export const options = { - pieSliceText: 'value', - width: '100%', - height: '350', - chartArea: { - left: "3%", - top: "3%", - height: "94%", - width: "94%" - }, - sliceVisibilityThreshold: .005, - tooltip: { isHtml: true, trigger: "selection" } + pieSliceText: 'value', + width: '100%', + height: '350', + chartArea: { + left: "3%", + top: "3%", + height: "94%", + width: "94%" + }, + sliceVisibilityThreshold: .005, + tooltip: {isHtml: true, trigger: "selection"} }; var idpsArray = []; -const LoginIdpPieChart = ({ setShowModalHandler, spId, tenantId, uniqueLogins, goToSpecificProviderHandler }) => { - const [idps, setIdps] = useState([["Identity Provider", "Identifier", "Logins"]]); - var idpsChartArray = [["Identity Provider", "Logins"]]; +const LoginIdpPieChart = ({setShowModalHandler, spId, tenantId, uniqueLogins, goToSpecificProviderHandler}) => { + const [idps, setIdps] = useState([["Identity Provider", "Identifier", "Logins"]]); + var idpsChartArray = [["Identity Provider", "Logins"]]; - useEffect(() => { - var params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } - if (spId) { - params["params"]["sp"] = spId - } - client.get("logins_per_idp/", params). - then(response => { - console.log(response) - response["data"].forEach(element => { - idpsChartArray.push([element.name, element.count]) - idpsArray.push([element.id, element.name, element.entityid]) - }) - setIdps(idpsChartArray) - console.log(idpsChartArray) - }) + useEffect(() => { + var params = {params: {tenant_id: tenantId, 'unique_logins': uniqueLogins}} + if (spId) { + params["params"]["sp"] = spId + } + client.get("logins_per_idp/", params).then(response => { + console.log(response) + response["data"].forEach(element => { + idpsChartArray.push([element.name, element.count]) + idpsArray.push([element.id, element.name, element.entityid]) + }) + setIdps(idpsChartArray) + console.log(idpsChartArray) + }) - }, [uniqueLogins]) + }, [uniqueLogins]) - return ( - - -
              -

              Overall number of logins per IdP

              -
              - { - const chart = chartWrapper.getChart(); - // if(!managed){ - // console.log(managed) - // setZerosIfNoDate(chartWrapper.getDataTable(), google) - // } + return ( + + +
              +

              Overall number of logins per IdP

              +
              + { + const chart = chartWrapper.getChart(); + // if(!managed){ + // console.log(managed) + // setZerosIfNoDate(chartWrapper.getDataTable(), google) + // } - google.visualization.events.addListener(chart, 'click', selectHandler); - google.visualization.events.addListener(chart, 'onmouseover', showTooltip); - google.visualization.events.addListener(chart, 'onmouseout', hideTooltip); + google.visualization.events.addListener(chart, 'click', selectHandler); + google.visualization.events.addListener(chart, 'onmouseover', showTooltip); + google.visualization.events.addListener(chart, 'onmouseout', hideTooltip); - function showTooltip(entry) { + function showTooltip(entry) { - chart.setSelection([{ row: entry.row }]); - $('.pieChart').css('cursor', 'pointer') - } - function hideTooltip() { + chart.setSelection([{row: entry.row}]); + $('.pieChart').css('cursor', 'pointer') + } - chart.setSelection([]); - $('.pieChart').css('cursor', 'default') - } - function selectHandler() { + function hideTooltip() { - var selection = chart.getSelection(); - if (selection.length) { - var identifier = idpsArray[selection[0].row]; - //var legend = data.getValue(selection[0].row, 0); - console.log(selection[0]) - console.log(identifier[0]+"??????") - // Show Modal - //setShowModalHandler(true) - goToSpecificProviderHandler(identifier[0]) - // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); - // unique_logins = $("#myModal").is(':visible') ? $("#unique-logins-modal").is(":checked") : $("#unique-logins-"+activeTab).is(":checked"); - // goToSpecificProvider(identifier, legend, type, unique_logins); - } - } - } - } - ]} - /> - - ); + chart.setSelection([]); + $('.pieChart').css('cursor', 'default') + } + + function selectHandler() { + + var selection = chart.getSelection(); + if (selection.length) { + var identifier = idpsArray[selection[0].row]; + //var legend = data.getValue(selection[0].row, 0); + // Show Modal + //setShowModalHandler(true) + goToSpecificProviderHandler(identifier[0]) + // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); + // unique_logins = $("#myModal").is(':visible') ? $("#unique-logins-modal").is(":checked") : $("#unique-logins-"+activeTab).is(":checked"); + // goToSpecificProvider(identifier, legend, type, unique_logins); + } + } + } + } + ]} + /> + + ); } export default LoginIdpPieChart \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginLineChart.js b/javascript/src/components/Dashboard/loginLineChart.js index 337ffea..220daa5 100644 --- a/javascript/src/components/Dashboard/loginLineChart.js +++ b/javascript/src/components/Dashboard/loginLineChart.js @@ -1,6 +1,6 @@ -import { useState, useContext, useEffect } from "react"; -import { Chart } from "react-google-charts"; -import { client } from '../../utils/api'; +import {useState, useContext, useEffect} from "react"; +import {Chart} from "react-google-charts"; +import {client} from '../../utils/api'; import Select from 'react-select'; import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; @@ -9,130 +9,121 @@ import 'bootstrap/dist/css/bootstrap.min.css'; export const options = { - // title: "Overall number of logins per day", - //curveType: "function", - legend: 'none' + // title: "Overall number of logins per day", + //curveType: "function", + legend: 'none' }; -const LoginLineChart = ({ type, id, tenantId, uniqueLogins }) => { +const LoginLineChart = ({type, id, tenantId, uniqueLogins}) => { - const [managed, setManaged] = useState(false); - const [lineData, setLineData] = useState(["Date", "Logins"]) - useEffect(() => { - var params = null - console.log(type) - params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } - if (type) { - params["params"][[type]] = id - } - console.log(params) - client.get("logins_groupby/day", params). - then(response => { - console.log(response) - var lineDataArray = [["Date", "Logins"]]; - response["data"].forEach(element => { - lineDataArray.push([new Date(element.date), element.count]) - }) - console.log(lineDataArray) - setLineData(lineDataArray) - }) - }, [uniqueLogins]) + const [managed, setManaged] = useState(false); + const [lineData, setLineData] = useState(["Date", "Logins"]) + useEffect(() => { + var params = null + params = {params: {tenant_id: tenantId, 'unique_logins': uniqueLogins}} + if (type) { + params["params"][[type]] = id + } + client.get("logins_groupby/day", params).then(response => { + var lineDataArray = [["Date", "Logins"]]; + response["data"].forEach(element => { + lineDataArray.push([new Date(element.date), element.count]) + }) + setLineData(lineDataArray) + }) + }, [uniqueLogins]) - // This is for Dates with no logins, we have to set 0 for these dates - function setZerosIfNoDate(dataTable, google) { - var lineDataArray = [["Date", "Logins"]] - var datePattern = 'd.M.yy'; - var formatDate = new google.visualization.DateFormat({ - pattern: datePattern - }); - var startDate = dataTable.getColumnRange(0).min; - console.log(startDate) - console.log(startDate.getTime()) - var endDate = dataTable.getColumnRange(0).max; - var oneDay = (1000 * 60 * 60 * 24); - for (var i = startDate.getTime(); i < endDate.getTime(); i = i + oneDay) { - var coffeeData = dataTable.getFilteredRows([{ - column: 0, - test: function (value, row, column, table) { - var coffeeDate = formatDate.formatValue(table.getValue(row, column)); - var testDate = formatDate.formatValue(new Date(i)); - return (coffeeDate === testDate); - } - }]); - if (coffeeData.length === 0) { - dataTable.addRow([ - new Date(i), - 0 - ]); - } + // This is for Dates with no logins, we have to set 0 for these dates + function setZerosIfNoDate(dataTable, google) { + var lineDataArray = [["Date", "Logins"]] + var datePattern = 'd.M.yy'; + var formatDate = new google.visualization.DateFormat({ + pattern: datePattern + }); + var startDate = dataTable.getColumnRange(0).min; + var endDate = dataTable.getColumnRange(0).max; + var oneDay = (1000 * 60 * 60 * 24); + for (var i = startDate.getTime(); i < endDate.getTime(); i = i + oneDay) { + var coffeeData = dataTable.getFilteredRows([{ + column: 0, + test: function (value, row, column, table) { + var coffeeDate = formatDate.formatValue(table.getValue(row, column)); + var testDate = formatDate.formatValue(new Date(i)); + return (coffeeDate === testDate); } - dataTable.sort({ - column: 0 - }); - for (var i = 0; i < dataTable.getNumberOfRows(); i++) { - var row = [dataTable.getValue(i, 0), dataTable.getValue(i, 1)] - - lineDataArray.push([row[0], row[1]]) + }]); + if (coffeeData.length === 0) { + dataTable.addRow([ + new Date(i), + 0 + ]); + } + } + dataTable.sort({ + column: 0 + }); + for (var i = 0; i < dataTable.getNumberOfRows(); i++) { + var row = [dataTable.getValue(i, 0), dataTable.getValue(i, 1)] - } - console.log(lineDataArray) - setManaged(true); - setLineData(lineDataArray) + lineDataArray.push([row[0], row[1]]) - return dataTable; } + setManaged(true); + setLineData(lineDataArray) + + return dataTable; + } - return ( - - -
              -

              Overall number of logins per day

              -
              - { - const chart = chartWrapper.getChart(); - if (!managed) { - console.log(managed) - setZerosIfNoDate(chartWrapper.getDataTable(), google) - } - google.visualization.events.addListener(chart, "click", (e) => { - console.log("CLICK"); - }); - } - } - ]} - controls={[ - { + return ( + + +
              +

              Overall number of logins per day

              +
              + { + const chart = chartWrapper.getChart(); + if (!managed) { + setZerosIfNoDate(chartWrapper.getDataTable(), google) + } + google.visualization.events.addListener(chart, "click", (e) => { + console.log("CLICK"); + }); + } + } + ]} + controls={[ + { - controlType: "ChartRangeFilter", - options: { - filterColumnIndex: 0, - ui: { - chartType: "LineChart", - chartOptions: { - chartArea: { width: "80%", height: "100%" }, - hAxis: { baselineColor: "none" }, - }, - }, - }, - controlPosition: "bottom", + controlType: "ChartRangeFilter", + options: { + filterColumnIndex: 0, + ui: { + chartType: "LineChart", + chartOptions: { + chartArea: {width: "80%", height: "100%"}, + hAxis: {baselineColor: "none"}, + }, + }, + }, + controlPosition: "bottom", - }, - ]} - /> - - - ); + }, + ]} + /> + + + ); } export default LoginLineChart \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginSpPieChart.js b/javascript/src/components/Dashboard/loginSpPieChart.js index 9b6c6cb..ee81468 100644 --- a/javascript/src/components/Dashboard/loginSpPieChart.js +++ b/javascript/src/components/Dashboard/loginSpPieChart.js @@ -31,7 +31,6 @@ const LoginSpPieChart = ({ setShowModalHandler, idpId, tenantId, uniqueLogins, g useEffect(() => { var params = null - console.log(idpId) params = { params: { tenant_id: tenantId, unique_logins: uniqueLogins } } if (idpId) { params["params"]["idp"] = idpId @@ -39,14 +38,12 @@ const LoginSpPieChart = ({ setShowModalHandler, idpId, tenantId, uniqueLogins, g client.get("logins_per_sp/", params). then(response => { - console.log(response) response["data"].forEach(element => { spsChartArray.push([element.name, element.count]) spsArray.push([element.id, element.name, element.identifier]) }) setSps(spsChartArray) - console.log(spsChartArray) }) }, [uniqueLogins]) @@ -88,8 +85,6 @@ const LoginSpPieChart = ({ setShowModalHandler, idpId, tenantId, uniqueLogins, g if (selection.length) { var identifier = spsArray[selection[0].row]; //var legend = data.getValue(selection[0].row, 0); - console.log(selection[0]) - console.log(identifier) // Show Modal // setShowModalHandler(true) // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); diff --git a/javascript/src/components/Idps/idpMap.js b/javascript/src/components/Idps/idpMap.js index 31d9734..cf9ec5c 100644 --- a/javascript/src/components/Idps/idpMap.js +++ b/javascript/src/components/Idps/idpMap.js @@ -1,77 +1,75 @@ -import { useState, useContext, useEffect } from "react"; +import {useState, useContext, useEffect} from "react"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Select from 'react-select'; -import { client } from '../../utils/api'; -import $, { map } from "jquery"; -import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; +import {client} from '../../utils/api'; +import $, {map} from "jquery"; +import {calculateLegends, setMapConfiguration, setLegend} from "../Common/utils"; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; const IdpMap = ({startDate, endDate, tenantId, uniqueLogins, idpId}) => { - - useEffect(() => { - client.get("logins_per_country", - { - params: { - 'startDate':startDate, - 'endDate':endDate, - 'tenant_id': tenantId, - 'unique_logins': uniqueLogins, - 'idpId': idpId - } - }).then(response => { - console.log("MAP????") - console.log(response["data"]) - createMap("idpMapDraw", response["data"]) - }) - }, [startDate, endDate, uniqueLogins]) - const createMap = (id, mapData, tooltipLabel = "Logins", legendLabel = 'Logins per country') => { - var areas = {}; - var i = 1; - var maxSum = 0; - mapData.forEach(function (mapRow) { - - var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + useEffect(() => { + client.get("logins_per_country", + { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'idpId': idpId + } + }).then(response => { + createMap("idpMapDraw", response["data"]) + }) + }, [startDate, endDate, uniqueLogins]) - //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; - areas[mapRow.countrycode] = { - value: mapRow.sum, - tooltip: { content: contentTooltip } - } - if (mapRow.sum > maxSum) { - maxSum = mapRow.sum; - } - i++; - }) - // Calculate Legends - var legends = calculateLegends(maxSum) - $(".areaLegend").show() - $("#" + id).mapael({ - map: setMapConfiguration(), - legend: setLegend(legendLabel, legends), - areas: areas - }) - - } + const createMap = (id, mapData, tooltipLabel = "Logins", legendLabel = 'Logins per country') => { + var areas = {}; + var i = 1; + var maxSum = 0; + mapData.forEach(function (mapRow) { - return ( - - -
              -
              -

              Logins Per Country

              -
              -
              -
              -
              -
              - + var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum - - ) + //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; + areas[mapRow.countrycode] = { + value: mapRow.sum, + tooltip: {content: contentTooltip} + } + if (mapRow.sum > maxSum) { + maxSum = mapRow.sum; + } + i++; + }) + // Calculate Legends + var legends = calculateLegends(maxSum) + $(".areaLegend").show() + $("#" + id).mapael({ + map: setMapConfiguration(), + legend: setLegend(legendLabel, legends), + areas: areas + }) + + } + + return ( + + + +
              +

              Logins Per Country

              +
              +
              +
              +
              +
              + + + + ) } export default IdpMap; \ No newline at end of file diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index 3b65fdf..9ec7f9d 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -86,7 +86,6 @@ const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "t } client.get("logins_per_idp/", params). then(response => { - //console.log(response); response["data"].forEach(element => { var perIdp = { "Identity Provider Name": element.name, "Identity Provider Identifier": element.entityid, "Number of Logins": element.count } diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index e47c64f..178c36d 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -48,7 +48,6 @@ const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = " }, [uniqueLogins]) const handleChange = () => { - //console.log(event.value); spsLoginsArray = [] if (!startDate || !endDate) { toast.error('You have to fill both startDate and endDate.', { diff --git a/javascript/src/components/Users/registeredUsersChart.js b/javascript/src/components/Users/registeredUsersChart.js index f585949..1b3fdc4 100644 --- a/javascript/src/components/Users/registeredUsersChart.js +++ b/javascript/src/components/Users/registeredUsersChart.js @@ -79,7 +79,6 @@ const RegisteredUsersChart = (parameters) => { fValues.push(temp); }); - console.log(fValues) setRegisteredUsers(fValues) setGlobalOptions({ @@ -109,7 +108,6 @@ const RegisteredUsersChart = (parameters) => { }, [selected]) const handleChange = event => { - console.log(event.value); setSelected(event.value); }; diff --git a/javascript/src/components/Users/registeredUsersDataTable.js b/javascript/src/components/Users/registeredUsersDataTable.js index ee78e95..7700496 100644 --- a/javascript/src/components/Users/registeredUsersDataTable.js +++ b/javascript/src/components/Users/registeredUsersDataTable.js @@ -35,7 +35,6 @@ const RegisteredUsersDataTable =({startDateHandler, endDateHandler, tenantId}) = } }). then(response => { - console.log(response); var minDateFromData = "" response["data"].forEach(element => { //var community = {"created":element.created, "name":element.community_info.name} @@ -56,7 +55,6 @@ const RegisteredUsersDataTable =({startDateHandler, endDateHandler, tenantId}) = }, []) const handleChange = event => { - console.log(event.value); usersPerCountryPerPeriodArray = [] if(!startDate || !endDate) { toast.error('You have to fill both startDate and endDate.', { @@ -84,8 +82,7 @@ const RegisteredUsersDataTable =({startDateHandler, endDateHandler, tenantId}) = } }). then(response => { - //console.log(response); - response["data"].forEach(element => { + response["data"].forEach(element => { var range_date = new Date(element.range_date); diff --git a/javascript/src/components/Users/registeredUsersTiles.js b/javascript/src/components/Users/registeredUsersTiles.js index 7604e5b..37fef94 100644 --- a/javascript/src/components/Users/registeredUsersTiles.js +++ b/javascript/src/components/Users/registeredUsersTiles.js @@ -21,12 +21,9 @@ const RegisteredUsersTiles = (parameters) => { return response; })); }).then(function (data) { - // Log the data to the console // You would do something with both sets of data here - console.log(data); var tilesArray = {} data.forEach(element => { - console.log(element) if (element["config"]["params"]["interval"]) { var name = element["config"]["params"]["interval"] + "_" + element["config"]["params"]["count_interval"] tilesArray[[name]] = element["data"][0]["count"] @@ -36,12 +33,10 @@ const RegisteredUsersTiles = (parameters) => { } }) - console.log(tilesArray) setTiles(tilesArray) }).catch(function (error) { // if there's an error, log it - console.log(error); }); diff --git a/javascript/src/components/datatable.js b/javascript/src/components/datatable.js index 741735d..a1a95a7 100644 --- a/javascript/src/components/datatable.js +++ b/javascript/src/components/datatable.js @@ -1,4 +1,4 @@ -import { useState, useContext, useEffect, Component } from "react"; +import {useState, useContext, useEffect, Component} from "react"; import "jquery/dist/jquery.min.js"; import "datatables.net-dt/js/dataTables.dataTables"; import "datatables.net-dt/css/jquery.dataTables.min.css"; @@ -16,224 +16,226 @@ pdfMake.vfs = pdfFonts.pdfMake.vfs; var table; -const title=''; +const title = ''; + class Datatable extends Component { - - componentDidUpdate(prevProps, prevState) { - console.log(this.props.items) - var dataTableId = this.props.dataTableId - if (prevProps.items !== this.props.items) { - - this.setState({ - items: this.props.items, - dataTableId: this.props.dataTableId - }) - if (!$.fn.DataTable.isDataTable("#myTable")) { - setTimeout(function () { - console.log(dataTableId) - table = $("#" + dataTableId).DataTable({ - pagingType: "full_numbers", - pageLength: 10, - //processing: true, - dom: "Bfrtip", - // select: { - // style: "single", - // }, - + + componentDidUpdate(prevProps, prevState) { + var dataTableId = this.props.dataTableId + if (prevProps.items !== this.props.items) { + + this.setState({ + items: this.props.items, + dataTableId: this.props.dataTableId + }) + if (!$.fn.DataTable.isDataTable("#myTable")) { + setTimeout(function () { + table = $("#" + dataTableId).DataTable({ + pagingType: "full_numbers", + pageLength: 10, + //processing: true, + dom: "Bfrtip", + // select: { + // style: "single", + // }, + + buttons: [ + { + extend: 'collection', + text: 'Export', buttons: [ - { - extend: 'collection', - text: 'Export', - buttons: [ - { - extend:'copy', - exportOptions: { - stripHtml: false, - format: { - body: function (data, row, column, node) { - if (column === 3) - return data.replace(/
            • /g, "").replace(/<\/li>/g, ",").replace(/
                /g, "").replace(/<\/ul>/g, "") - else - return data.replace(/(<([^>]+)>)/ig, ""); - } - } - } - }, - { - extend: 'excel', - title: title, - exportOptions: { - stripHtml: false, - format: { - body: function (data, row, column, node) { - if (column === 3) - return data.replace("
              • ","").replace(/
              • /g, ", ").replace(/<\/li>/g, "").replace(/
                  /g, "").replace(/<\/ul>/g, "") - else - return data.replace(/(<([^>]+)>)/ig, ""); - } - } - } - }, - { - extend: 'csv', - title: title, - exportOptions: { - stripHtml: false, - format: { - body: function (data, row, column, node) { - if (column === 3) - return data.replace("
                • ","").replace(/
                • /g, ", ").replace(/<\/li>/g, "").replace(/
                    /g, "").replace(/<\/ul>/g, "") - else - return data.replace(/(<([^>]+)>)/ig, ""); - } - } - } - }, - { - extend: 'pdfHtml5', - title: title, - exportOptions: { - stripHtml: false, - format: { - body: function (data, row, column, node) { - if (column === 3) - return data.replace(/
                  • /g, "• ").replace(/<\/li>/g, "\n").replace(/
                      /g, "").replace(/<\/ul>/g, "") - else - return data.replace(/(<([^>]+)>)/ig, ""); - } - } - } - }, - { - extend: 'print', - title: title - } - ] + { + extend: 'copy', + exportOptions: { + stripHtml: false, + format: { + body: function (data, row, column, node) { + if (column === 3) + return data.replace(/
                    • /g, "").replace(/<\/li>/g, ",").replace(/
                        /g, "").replace(/<\/ul>/g, "") + else + return data.replace(/(<([^>]+)>)/ig, ""); + } + } } - ], - "autoWidth": false, - fnRowCallback: function ( - nRow, - aData, - iDisplayIndex, - iDisplayIndexFull - ) { - - var index = iDisplayIndexFull + 1; - $("td", nRow).each(function (){ - var text = $(this).html() - $(this).html(text.replaceAll('<','<').replaceAll('>', '>')); - }); - return nRow; - }, - - // lengthMenu: [ - // [10, 20, 30, 50, -1], - // [10, 20, 30, 50, "All"], - // ], - // columnDefs: [ - // { - // targets: 0, - // render: function (data, type, row, meta) { - // return type === "export" ? meta.row + 1 : data; - // }, - // }, - // ], - }); - }, 1000) - } - } - } - componentDidMount() { - - } - - listNames = (names, key) => { - if (this.props.columnSep && key == this.props.columnSep && typeof names === 'string') { - return ( -
                          - { - names.split("||").map((name, keyIndex) => ( -
                        • {name}
                        • - )) + }, + { + extend: 'excel', + title: title, + exportOptions: { + stripHtml: false, + format: { + body: function (data, row, column, node) { + if (column === 3) + return data.replace("
                        • ", "").replace(/
                        • /g, ", ").replace(/<\/li>/g, "").replace(/
                            /g, "").replace(/<\/ul>/g, "") + else + return data.replace(/(<([^>]+)>)/ig, ""); + } + } } - -
                          - ) - } - else return ( - names - ) - + }, + { + extend: 'csv', + title: title, + exportOptions: { + stripHtml: false, + format: { + body: function (data, row, column, node) { + if (column === 3) + return data.replace("
                        • ", "").replace(/
                        • /g, ", ").replace(/<\/li>/g, "").replace(/
                            /g, "").replace(/<\/ul>/g, "") + else + return data.replace(/(<([^>]+)>)/ig, ""); + } + } + } + }, + { + extend: 'pdfHtml5', + title: title, + exportOptions: { + stripHtml: false, + format: { + body: function (data, row, column, node) { + if (column === 3) + return data.replace(/
                          • /g, "• ").replace(/<\/li>/g, "\n").replace(/
                              /g, "").replace(/<\/ul>/g, "") + else + return data.replace(/(<([^>]+)>)/ig, ""); + } + } + } + }, + { + extend: 'print', + title: title + } + ] + } + ], + "autoWidth": false, + fnRowCallback: function ( + nRow, + aData, + iDisplayIndex, + iDisplayIndexFull + ) { + + var index = iDisplayIndexFull + 1; + $("td", nRow).each(function () { + var text = $(this).html() + $(this).html(text.replaceAll('<', '<').replaceAll('>', '>')); + }); + return nRow; + }, + + // lengthMenu: [ + // [10, 20, 30, 50, -1], + // [10, 20, 30, 50, "All"], + // ], + // columnDefs: [ + // { + // targets: 0, + // render: function (data, type, row, meta) { + // return type === "export" ? meta.row + 1 : data; + // }, + // }, + // ], + }); + }, 1000) + } } + } - showTable = (items) => { - if(!items || items.length==0) return (
            • ) - // try { - return items.map((item, index) => { - - return ( - - - { - Object.keys(item).map((key, keyIndex) => - - ( - - - ) - ) - } + componentDidMount() { - - ); - }); - // } catch (e) { - // //alert(e.message); - // } - - }; - - showColumns = (items) => { - try { - return ( - - - { - items && items.length>0 ? - Object.keys(items[0]).map((key, keyIndex) => ( - - )) - : - - } - + } + + listNames = (names, key) => { + if (this.props.columnSep && key == this.props.columnSep && typeof names === 'string') { + return ( +
                + { + names.split("||").map((name, keyIndex) => ( +
              • {name}
              • + )) + } + +
              + ) + } else return ( + names + ) + + } + + showTable = (items) => { + if (!items || items.length == 0) return ( + + + ) + // try { + return items.map((item, index) => { + + return ( + + + { + Object.keys(item).map((key, keyIndex) => + + ( + + + ) ) - } - catch (e) { - //alert(e.message); - } - } - render() { - - return ( -
              -
              -
              No data available in the table
              {index + 1} - {this.listNames(item[key], key)} -
              S/N{key}Data
              No data available in the table
              {index + 1} + {this.listNames(item[key], key)} +
              - - {this.showColumns(this.props.items)} - - - - {this.showTable(this.props.items)} - -
              -
              -
              - ) + } + + + ); + }); + // } catch (e) { + // //alert(e.message); + // } + + }; + + showColumns = (items) => { + try { + return ( + + S/N + { + items && items.length > 0 ? + Object.keys(items[0]).map((key, keyIndex) => ( + {key} + )) + : + Data + } + + ) + } catch (e) { + //alert(e.message); } + } + + render() { + + return ( +
              +
              + + + {this.showColumns(this.props.items)} + + + + {this.showTable(this.props.items)} + +
              +
              +
              + ) + } } export default Datatable; \ No newline at end of file From 2503b752825e96e54ec1894eaf475463dee34b47 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Mon, 15 May 2023 12:30:35 +0300 Subject: [PATCH 139/331] Fix datatable element id. Fix redirect uri for logout. (#21) --- app/main.py | 21 ++++++++++++++----- app/routers/authenticate.py | 6 +++--- javascript/src/components/Common/navbarTop.js | 3 +-- .../Communities/communitiesDataTable.js | 4 ++-- .../components/Dashboard/loginDataTable.js | 6 +++--- .../src/components/Idps/idpMapToDataTable.js | 4 ++-- .../src/components/Idps/idpsDataTable.js | 2 +- .../src/components/Sps/spMapToDataTable.js | 4 ++-- javascript/src/components/Sps/spsDataTable.js | 2 +- .../Users/registeredUsersDataTable.js | 4 ++-- 10 files changed, 33 insertions(+), 23 deletions(-) diff --git a/app/main.py b/app/main.py index cba525a..561e4e9 100644 --- a/app/main.py +++ b/app/main.py @@ -1,9 +1,10 @@ -from typing import List, Optional, Union import os import sys -from xmlrpc.client import boolean +import time +from pprint import pprint -from fastapi import Depends, FastAPI, HTTPException, Query, Request +from xmlrpc.client import boolean +from fastapi import Depends, FastAPI, HTTPException, Query, Request, HTTPException, status from starlette.middleware.cors import CORSMiddleware from starlette.middleware.sessions import SessionMiddleware @@ -25,11 +26,20 @@ sys.path.insert(0, os.path.realpath('__file__')) # Development Environment: dev environment = os.getenv('API_ENVIRONMENT') + +async def is_authenticated(request: Request): + pprint(request.cookies.get('userinfo')) + pprint(request.body) + pprint(request.headers) + pprint(request.client.host) + # Instantiate app according to the environment configuration -app = FastAPI() if environment == "dev" else FastAPI(root_path="/api/v1", +app = FastAPI(dependencies=[Depends(is_authenticated)]) if environment == "dev" else FastAPI(root_path="/api/v1", + dependencies=[Depends(is_authenticated)], root_path_in_servers=False, servers=[{"url": "/api/v1"}]) + if environment == "dev": app.add_middleware( CORSMiddleware, @@ -56,7 +66,6 @@ app.include_router(logins.router) - @app.get("/tenant/{project_name}/{environment_name}") async def read_tenant_byname( *, @@ -92,6 +101,7 @@ async def read_environment_byname( """.format(environment_name)).all() return environment + @app.get("/idps") async def read_idps( *, @@ -110,6 +120,7 @@ async def read_idps( """.format(tenant_id, idpId_subquery)).all() return idps + @app.get("/sps") async def read_sps( *, diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index bc4fd90..c64ad06 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -25,7 +25,7 @@ client_id=OIDC_config['client_id'], client_secret=OIDC_config['client_secret'], server_metadata_url=OIDC_config['issuer'] + "/.well-known/openid-configuration", - client_kwargs={'scope': 'openid profile email eduperson_entitlement'} + client_kwargs={'scope': 'openid profile email voperson_id eduperson_entitlement'} ) @@ -97,8 +97,8 @@ async def authorize_rciam(request: Request): async def logout(request: Request): rciam = oauth.create_client('rciam') metadata = await rciam.load_server_metadata() - redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['host'] + SERVER_config['api_path'] + "egi/devel" - logout_endpoint = metadata['end_session_endpoint'] + "?redirect=" + urllib.parse.unquote( + redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['client'] + SERVER_config['api_path'] + "egi/devel" + logout_endpoint = metadata['end_session_endpoint'] + "?post_logout_redirect_uri=" + urllib.parse.unquote( redirect_uri) + "&id_token_hint=" + request.cookies.get("idtoken") print(logout_endpoint) diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index 37cc57f..cd23b90 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -35,7 +35,6 @@ const NavbarTop = (props) => { userInfo != undefined ? @@ -50,7 +49,7 @@ const NavbarTop = (props) => { - {userInfo.sub}(sub) + {userInfo.voperson_id}(voPerson)
              {t('logout')} diff --git a/javascript/src/components/Communities/communitiesDataTable.js b/javascript/src/components/Communities/communitiesDataTable.js index 2421652..b29ab9b 100644 --- a/javascript/src/components/Communities/communitiesDataTable.js +++ b/javascript/src/components/Communities/communitiesDataTable.js @@ -100,7 +100,7 @@ const CommunitiesDataTable = (parameters) => { } // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#table").DataTable().destroy() + $("#table-community").DataTable().destroy() setCommunities(communitiesArray) }) }; @@ -130,7 +130,7 @@ const CommunitiesDataTable = (parameters) => { theme="dark"/> - + diff --git a/javascript/src/components/Dashboard/loginDataTable.js b/javascript/src/components/Dashboard/loginDataTable.js index 779ddde..929dd75 100644 --- a/javascript/src/components/Dashboard/loginDataTable.js +++ b/javascript/src/components/Dashboard/loginDataTable.js @@ -52,7 +52,7 @@ const LoginDataTable = ({startDateHandler, endDateHandler, tenantId, uniqueLogin }); setMinDate(minDateFromData) - $("#table").DataTable().destroy() + $("#table-login").DataTable().destroy() setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) }) // @@ -102,7 +102,7 @@ const LoginDataTable = ({startDateHandler, endDateHandler, tenantId, uniqueLogin }); // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#table").DataTable().destroy() + $("#table-login").DataTable().destroy() setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) }) @@ -134,7 +134,7 @@ const LoginDataTable = ({startDateHandler, endDateHandler, tenantId, uniqueLogin theme="dark"/> - diff --git a/javascript/src/components/Idps/idpMapToDataTable.js b/javascript/src/components/Idps/idpMapToDataTable.js index 35099bb..e86fcf3 100644 --- a/javascript/src/components/Idps/idpMapToDataTable.js +++ b/javascript/src/components/Idps/idpMapToDataTable.js @@ -38,7 +38,7 @@ const IdpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, idpId}) }); // setMinDate(minDateFromData) - $("#table").DataTable().destroy() + $("#table-idp").DataTable().destroy() setLoginsPerCountry(loginsPerCountryArray) }) }, [uniqueLogins]) @@ -50,7 +50,7 @@ const IdpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, idpId})

              Logins Per Country

              - + diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index 9ec7f9d..97f4c90 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -24,7 +24,7 @@ const dropdownOptions = [ { value: 'year', label: 'Yearly Basis' }, ] -const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "table", tenantId, uniqueLogins }) => { +const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "table-idp", tenantId, uniqueLogins }) => { const [idpsLogins, setIdpsLogins] = useState(); var idpsLoginsArray = []; const [minDate, setMinDate] = useState(""); diff --git a/javascript/src/components/Sps/spMapToDataTable.js b/javascript/src/components/Sps/spMapToDataTable.js index 122e35c..21ca716 100644 --- a/javascript/src/components/Sps/spMapToDataTable.js +++ b/javascript/src/components/Sps/spMapToDataTable.js @@ -38,7 +38,7 @@ const SpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, spId}) => }); // setMinDate(minDateFromData) - $("#table").DataTable().destroy() + $("#table-sp").DataTable().destroy() setLoginsPerCountry(loginsPerCountryArray) }) }, [uniqueLogins]) @@ -50,7 +50,7 @@ const SpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, spId}) =>

              Logins Per Country

              - + diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index 178c36d..ad748ea 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -13,7 +13,7 @@ import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; -const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = "table", tenantId, uniqueLogins }) => { +const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = "table-sp", tenantId, uniqueLogins }) => { const [spsLogins, setSpsLogins] = useState(); var spsLoginsArray = []; const [minDate, setMinDate] = useState(""); diff --git a/javascript/src/components/Users/registeredUsersDataTable.js b/javascript/src/components/Users/registeredUsersDataTable.js index 7700496..3a0ef0b 100644 --- a/javascript/src/components/Users/registeredUsersDataTable.js +++ b/javascript/src/components/Users/registeredUsersDataTable.js @@ -91,7 +91,7 @@ const RegisteredUsersDataTable =({startDateHandler, endDateHandler, tenantId}) = }); // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#table").DataTable().destroy() + $("#table-users").DataTable().destroy() setusersPerCountryPerPeriod(usersPerCountryPerPeriodArray) }) @@ -121,7 +121,7 @@ const RegisteredUsersDataTable =({startDateHandler, endDateHandler, tenantId}) = theme="dark" /> - + From 23326bd010252a85feea254314ec41d4722592c2 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Mon, 15 May 2023 12:43:44 +0300 Subject: [PATCH 140/331] Fix redirect uri (#22) --- app/routers/authenticate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index c64ad06..92c1534 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -97,7 +97,7 @@ async def authorize_rciam(request: Request): async def logout(request: Request): rciam = oauth.create_client('rciam') metadata = await rciam.load_server_metadata() - redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['client'] + SERVER_config['api_path'] + "egi/devel" + redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['client'] + "/egi/devel" logout_endpoint = metadata['end_session_endpoint'] + "?post_logout_redirect_uri=" + urllib.parse.unquote( redirect_uri) + "&id_token_hint=" + request.cookies.get("idtoken") From 23b1d3e6932688b1fa724296d8aee22f60d68256 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Mon, 15 May 2023 15:36:41 +0300 Subject: [PATCH 141/331] Improve logout response handling (#24) --- app/routers/authenticate.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 92c1534..8bb8d99 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -1,6 +1,6 @@ from pprint import pprint -from fastapi import APIRouter, Depends, HTTPException, status, Security, Request +from fastapi import APIRouter, Depends, HTTPException, status, Security, Request, Response from fastapi.responses import JSONResponse import json, jwt @@ -94,7 +94,7 @@ async def authorize_rciam(request: Request): @router.get('/logout', include_in_schema=False, response_class=RedirectResponse) -async def logout(request: Request): +async def logout(request: Request, response: Response): rciam = oauth.create_client('rciam') metadata = await rciam.load_server_metadata() redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['client'] + "/egi/devel" @@ -102,11 +102,13 @@ async def logout(request: Request): redirect_uri) + "&id_token_hint=" + request.cookies.get("idtoken") print(logout_endpoint) - # Set cookies when returning a RedirectResponse - # https://github.com/tiangolo/fastapi/issues/2452 - response = RedirectResponse(url=logout_endpoint) response.delete_cookie("userinfo") response.delete_cookie("idtoken") + # Set cookies when returning a RedirectResponse + # https://github.com/tiangolo/fastapi/issues/2452 + rresponse = RedirectResponse(url=logout_endpoint) + rresponse.delete_cookie("userinfo") + rresponse.delete_cookie("idtoken") request.session.pop('user', None) - return response + return rresponse From d0f9b0093106bceedab57320bf06afd8b16d1f8d Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 15 May 2023 22:35:28 +0300 Subject: [PATCH 142/331] add responsive to tiles, datatable, and center logo when logged in --- javascript/src/app.css | 1 + javascript/src/components/datatable.js | 1 + javascript/src/style.scss | 10 ++++++++++ 3 files changed, 12 insertions(+) diff --git a/javascript/src/app.css b/javascript/src/app.css index 3b505e3..fb85b36 100644 --- a/javascript/src/app.css +++ b/javascript/src/app.css @@ -400,6 +400,7 @@ button.reg-form { .range_inputs { display: flex; align-items: center; + flex-wrap: wrap; } .range_inputs input { padding: 0.5em; diff --git a/javascript/src/components/datatable.js b/javascript/src/components/datatable.js index a1a95a7..a7dbb43 100644 --- a/javascript/src/components/datatable.js +++ b/javascript/src/components/datatable.js @@ -31,6 +31,7 @@ class Datatable extends Component { if (!$.fn.DataTable.isDataTable("#myTable")) { setTimeout(function () { table = $("#" + dataTableId).DataTable({ + responsive: true, pagingType: "full_numbers", pageLength: 10, //processing: true, diff --git a/javascript/src/style.scss b/javascript/src/style.scss index 5c92b6d..430e672 100644 --- a/javascript/src/style.scss +++ b/javascript/src/style.scss @@ -43,6 +43,7 @@ .navbar-fixed-top { float: right; + position: absolute; } .sidebar-menu-toggle:focus { @@ -76,6 +77,8 @@ justify-content: space-around; width: 97%; margin: 2%; + flex-direction: row; + flex-wrap: wrap; } .small-box { border-radius: 2px; @@ -138,3 +141,10 @@ .select-community { padding-top:20px; } +@media(max-width:780px) { + + .Dropdown-root { + margin: auto; + padding: 20px; + } +} \ No newline at end of file From f82859fe0ee32801deb35c8793fbbafb24403fb1 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 15 May 2023 22:44:07 +0300 Subject: [PATCH 143/331] fix navbar-fixed-top width for smaller screens --- javascript/src/style.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/javascript/src/style.scss b/javascript/src/style.scss index 430e672..33f4b41 100644 --- a/javascript/src/style.scss +++ b/javascript/src/style.scss @@ -44,6 +44,7 @@ .navbar-fixed-top { float: right; position: absolute; + z-index: 0!important; } .sidebar-menu-toggle:focus { @@ -141,8 +142,15 @@ .select-community { padding-top:20px; } -@media(max-width:780px) { +@media(max-width:1200px) { + .navbar-fixed-top button { + width: 200px; + word-wrap: break-word; + white-space: break-spaces; + } +} +@media(max-width:780px) { .Dropdown-root { margin: auto; padding: 20px; From 0690808643dcbbacf9d4ddb0ec9110788b196084 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 16 May 2023 10:00:57 +0300 Subject: [PATCH 144/331] Logout response improve (#26) --- app/routers/authenticate.py | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 8bb8d99..7a483d5 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -1,6 +1,6 @@ from pprint import pprint -from fastapi import APIRouter, Depends, HTTPException, status, Security, Request, Response +from fastapi import APIRouter, Depends, HTTPException, status, Security, Request from fastapi.responses import JSONResponse import json, jwt @@ -94,21 +94,26 @@ async def authorize_rciam(request: Request): @router.get('/logout', include_in_schema=False, response_class=RedirectResponse) -async def logout(request: Request, response: Response): +async def logout(request: Request): rciam = oauth.create_client('rciam') metadata = await rciam.load_server_metadata() redirect_uri = SERVER_config['protocol'] + "://" + SERVER_config['client'] + "/egi/devel" logout_endpoint = metadata['end_session_endpoint'] + "?post_logout_redirect_uri=" + urllib.parse.unquote( redirect_uri) + "&id_token_hint=" + request.cookies.get("idtoken") - print(logout_endpoint) - response.delete_cookie("userinfo") - response.delete_cookie("idtoken") + request.session.pop('user', None) + # Set cookies when returning a RedirectResponse # https://github.com/tiangolo/fastapi/issues/2452 - rresponse = RedirectResponse(url=logout_endpoint) - rresponse.delete_cookie("userinfo") - rresponse.delete_cookie("idtoken") + response = RedirectResponse(url=logout_endpoint) + response.set_cookie('userinfo', + expires=0, + max_age=0, + domain=SERVER_config['domain']) - request.session.pop('user', None) - return rresponse + response.set_cookie('idtoken', + expires=0, + max_age=0, + domain=SERVER_config['domain']) + + return response From 753367c98aba880b6308f64f3ba10d7117ba90f8 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 16 May 2023 10:47:46 +0300 Subject: [PATCH 145/331] Refactor requests (#27) * Make tabs to spaces * Refactor Communities query * Communities page refactor 2 --- javascript/src/Pages/Communities/index.js | 67 ++++++++++--------- javascript/src/Pages/Idps/idpModal.js | 48 ++++++------- .../components/Users/registeredUsersMap.js | 1 + javascript/src/utils/queries/index.js | 28 +------- javascript/src/utils/queryKeys/index.js | 9 +-- 5 files changed, 67 insertions(+), 86 deletions(-) diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index 26275a6..9f1551d 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -1,7 +1,7 @@ -import { useState, useContext, useEffect } from "react"; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; -import { envContext, projectContext } from "../../Context/context"; +import {useState, useContext, useEffect} from "react"; +import {useParams} from "react-router-dom"; +import {useQuery} from 'react-query'; +import {envContext, projectContext} from "../../Context/context"; import Container from "react-bootstrap/Container"; import CommunitiesChart from "../../components/Communities/communitiesChart"; import CommunitiesDataTable from "../../components/Communities/communitiesDataTable"; @@ -10,37 +10,44 @@ import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; +import {tenantKey} from '../../utils/queryKeys' +import {getTenant} from '../../utils/queries' const Communities = () => { - const { project, environment } = useParams(); - const [tenantId, setTenantId] = useState(0); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) + const {project, environment} = useParams(); + const [tenantId, setTenantId] = useState(0); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { - setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment). - then(response => { + const tenant = useQuery( + [tenantKey, {projectId: project, environment: environment}], + getTenant, { + retry: 0, + }) - setTenantId(response["data"][0]["id"]) - }) - }, []) + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) + setTenantId(tenant?.data?.[0]?.id) + }, [!tenant.isLoading + && tenant.isSuccess + && !tenant.isFetching]) - if (tenantId == 0) return - else return ( - -
              - - -

              Communities

              - -
              - - - -
              -
              ) + if (tenantId == 0) return + + return ( + +
              + + +

              Communities

              + +
              + + + +
              +
              ) } export default Communities; diff --git a/javascript/src/Pages/Idps/idpModal.js b/javascript/src/Pages/Idps/idpModal.js index 0ff33a9..e205377 100644 --- a/javascript/src/Pages/Idps/idpModal.js +++ b/javascript/src/Pages/Idps/idpModal.js @@ -1,4 +1,4 @@ -import { useState, useContext, useEffect } from "react"; +import {useState, useContext, useEffect} from "react"; import Button from 'react-bootstrap/Button'; import Modal from "react-bootstrap/Modal"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; @@ -7,30 +7,30 @@ import LoginTiles from "../../components/Dashboard/loginTiles"; import SpsDataTable from "../../components/Sps/spsDataTable"; const IdpModal = ({showModal, setShowModalHandler, tenantId}) => { - + const handleClose = () => setShowModalHandler(false); - const handleClose = () => setShowModalHandler(false); - //const handleShow = () => setShow(true); - - return ( - - - Modal heading - - - - - - - Woohoo, you're reading this text in a modal! - - - - - - ) + return ( + + + Modal heading + + + + + + + + Woohoo, you're reading this text in a modal! + + + + + + ) } export default IdpModal \ No newline at end of file diff --git a/javascript/src/components/Users/registeredUsersMap.js b/javascript/src/components/Users/registeredUsersMap.js index 1ef79fc..90cb8cd 100644 --- a/javascript/src/components/Users/registeredUsersMap.js +++ b/javascript/src/components/Users/registeredUsersMap.js @@ -9,6 +9,7 @@ import 'jquery-mapael/js/maps/world_countries_mercator.js'; const RegisteredUsersMap = ({ startDate, endDate, tenantId }) => { + useEffect(() => { client.get("registered_users_country", { diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 8726409..39bcd7e 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -1,30 +1,8 @@ import { client as apiClient } from '../api'; -// Users - -// GET Users -export const getUsers = async ({queryKey}) => { - const [_, params] = queryKey - const response = await apiClient.get('/users') - return response.data -} -// GET User -export const getUser = async({queryKey}) => { - const [_, params] = queryKey - const response = await apiClient.get('/users/' + params.userId) - return response.data -} -// Delete User -export const delUser = async({queryKey}) => { - const [_, params] = queryKey - const response = await apiClient.delete('/users/' + params.userId) - return response.data -} - -// Authorization -// Login -export const loginQuery = async ({queryKey}) => { +// Tenant +export const getTenant = async({queryKey}) => { const [_, params] = queryKey - const response = await apiClient.get('/login') + const response = await apiClient.get("tenant/" + params.projectId + "/" + params.environment) return response.data } \ No newline at end of file diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index 994e795..f868f8d 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -1,7 +1,2 @@ -// Users -export const allUsers = "users" -export const loginUser = "users/login" -export const oneUser = "users/:id" -// Auhtentication -export const loginQueryKey = "/login" -export const logoutQueryKey = "/logout" \ No newline at end of file +// Tenant +export const tenantKey = "tenant" From c333db5135c396f4e481bc5e8b9f44efda737b40 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 16 May 2023 10:59:38 +0300 Subject: [PATCH 146/331] fix logo position when logged in --- javascript/src/components/Common/header.js | 26 +++++++++++----------- javascript/src/style.scss | 4 ++++ 2 files changed, 17 insertions(+), 13 deletions(-) diff --git a/javascript/src/components/Common/header.js b/javascript/src/components/Common/header.js index d58db4f..ef2e208 100644 --- a/javascript/src/components/Common/header.js +++ b/javascript/src/components/Common/header.js @@ -20,21 +20,21 @@ const Header = (props) => { return (
              - {bannerAlertInfo && bannerAlertInfo[0] && -
              -
              - {parse(bannerAlertInfo[0].alert_message)} +
              + {bannerAlertInfo && bannerAlertInfo[0] && +
              +
              + {parse(bannerAlertInfo[0].alert_message)} +
              +
              - -
              - } - 0}/> + } + 0}/> -
              diff --git a/javascript/src/style.scss b/javascript/src/style.scss index 33f4b41..605e74d 100644 --- a/javascript/src/style.scss +++ b/javascript/src/style.scss @@ -6,6 +6,10 @@ .container { max-width: none !important; } +.tenant_logo_container { + position: relative; +} + .main-wrapper { width: 100%; height: 100%; From a371532ef2ff06270c81a55d3c34a2699a025b86 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 16 May 2023 11:10:32 +0300 Subject: [PATCH 147/331] Idps, Sps refactor requests (#28) --- javascript/src/Pages/Idps/idp.js | 95 ++++++++++--------- javascript/src/Pages/Sps/sp.js | 156 ++++++++++++++++--------------- 2 files changed, 134 insertions(+), 117 deletions(-) diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index a3f7b5f..1615676 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -2,7 +2,6 @@ import {useState, useEffect, useContext, useId} from "react"; import {useParams} from "react-router-dom"; import {Tab, Tabs, TabList, TabPanel} from 'react-tabs'; import {useNavigate} from "react-router-dom"; -import {client} from '../../utils/api'; import {envContext, projectContext} from "../../Context/context"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; @@ -16,8 +15,10 @@ import EntityInfo from "../../components/Common/entityInfo"; import IdpMap from "../../components/Idps/idpMap"; import IdpMapToDataTable from "../../components/Idps/idpMapToDataTable"; import Header from "../../components/Common/header"; - import 'react-tabs/style/react-tabs.css'; +import {useQuery} from "react-query"; +import {tenantKey} from "../../utils/queryKeys"; +import {getTenant} from "../../utils/queries"; const Idp = () => { const {project, environment, id} = useParams(); @@ -26,14 +27,21 @@ const Idp = () => { const [projectCon, setProjectCon] = useContext(projectContext); const [envCon, setEnvCon] = useContext(envContext) + const tenant = useQuery( + [tenantKey, {projectId: project, environment: environment}], + getTenant, { + retry: 0, + }) + + useEffect(() => { setProjectCon(project) setEnvCon(environment) - client.get("tenant/" + project + "/" + environment).then(response => { - setTenantId(response["data"][0]["id"]) - }) + setTenantId(tenant?.data?.[0]?.id) + }, [!tenant.isLoading + && tenant.isSuccess + && !tenant.isFetching]) - }, []) const handleChange = event => { setUniqueLogins(event.target.checked); } @@ -47,46 +55,47 @@ const Idp = () => { } navigate(path); } + if (tenantId === 0) return; - else - return ( - -
              - - - - -
              - - - + + return ( + +
              + + + + +
              + + -
              - - - - - - - Map - Datatable - + +
              + + + + + + + Map + Datatable + - - - - - - - -
              - ) + + + + + + + + + ) } export default Idp \ No newline at end of file diff --git a/javascript/src/Pages/Sps/sp.js b/javascript/src/Pages/Sps/sp.js index 343d8a7..7d87eb4 100644 --- a/javascript/src/Pages/Sps/sp.js +++ b/javascript/src/Pages/Sps/sp.js @@ -1,9 +1,8 @@ -import { useState, useEffect, useContext } from "react"; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; -import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'; -import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../Context/context"; +import {useState, useEffect, useContext} from "react"; +import {useParams} from "react-router-dom"; +import {Tab, Tabs, TabList, TabPanel} from 'react-tabs'; +import {useNavigate} from "react-router-dom"; +import {envContext, projectContext} from "../../Context/context"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import Form from 'react-bootstrap/Form'; @@ -16,81 +15,90 @@ import IdpsDataTable from "../../components/Idps/idpsDataTable"; import SpMap from "../../components/Sps/spMap"; import SpMapToDataTable from "../../components/Sps/spMapToDataTable"; import Header from "../../components/Common/header"; - import 'react-tabs/style/react-tabs.css'; +import {useQuery} from "react-query"; +import {tenantKey} from "../../utils/queryKeys"; +import {getTenant} from "../../utils/queries"; const Sp = () => { - const { project, environment, id } = useParams(); - const [tenantId, setTenantId] = useState(0); - const [uniqueLogins, setUniqueLogins] = useState(false); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) + const {project, environment, id} = useParams(); + const [tenantId, setTenantId] = useState(0); + const [uniqueLogins, setUniqueLogins] = useState(false); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) + + const tenant = useQuery( + [tenantKey, {projectId: project, environment: environment}], + getTenant, { + retry: 0, + }) + + + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) + setTenantId(tenant?.data?.[0]?.id) + }, [!tenant.isLoading + && tenant.isSuccess + && !tenant.isFetching]) + + const handleChange = event => { + setUniqueLogins(event.target.checked); + } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + var path = "" + if (provider === "sp") { + path = "/" + project + "/" + environment + "/services/" + id; + } else { + path = "/" + project + "/" + environment + "/identity-providers/" + id; + } + navigate(path); + } + + + if (tenantId === 0) return; - //const [identifier, setIdentifier] = useState(""); - useEffect(() => { - setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment).then(response => { - setTenantId(response["data"][0]["id"]) - console.log(tenantId) - }) - }, []) - const handleChange = event => { - setUniqueLogins(event.target.checked); - console.log(uniqueLogins) - } - let navigate = useNavigate(); - const goToSpecificProvider = (id, provider) => { - var path = "" - if (provider === "sp") { - path = "/" + project + "/" + environment + "/services/" + id; - } - else { - path = "/" + project + "/" + environment + "/identity-providers/" + id; - } - navigate(path); - } - if (tenantId === 0) return; - else - return ( - -
              - - - - -
              - - - - -
              - - - - - - - Map - Datatable - + return ( + +
              + + + + +
              + + + + +
              + + + + + + + Map + Datatable + - - - - - - - -
              - ) + + + + + + +
              +
              + ) } export default Sp \ No newline at end of file From 22c2baba57bbde27ec8aec8a66eef13a2814594c Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 16 May 2023 11:57:43 +0300 Subject: [PATCH 148/331] Refactor users request. Tenantid check for all empty values. (#29) --- javascript/src/Pages/Communities/index.js | 4 +- javascript/src/Pages/Idps/idp.js | 2 +- javascript/src/Pages/Sps/sp.js | 2 +- javascript/src/Pages/Users/index.js | 76 +++++++++++++---------- 4 files changed, 49 insertions(+), 35 deletions(-) diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index 9f1551d..f0203f4 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -33,8 +33,10 @@ const Communities = () => { && tenant.isSuccess && !tenant.isFetching]) - if (tenantId == 0) return + if (tenantId == undefined || tenantId == 0 || tenantId == "") return + console.log("hi") + console.log("tenant id 2:", tenant?.data?.[0]?.id) return (
              diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index 1615676..44a8525 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -56,7 +56,7 @@ const Idp = () => { navigate(path); } - if (tenantId === 0) return; + if (tenantId == undefined || tenantId == 0 || tenantId == "") return; return ( diff --git a/javascript/src/Pages/Sps/sp.js b/javascript/src/Pages/Sps/sp.js index 7d87eb4..7f9a17c 100644 --- a/javascript/src/Pages/Sps/sp.js +++ b/javascript/src/Pages/Sps/sp.js @@ -58,7 +58,7 @@ const Sp = () => { } - if (tenantId === 0) return; + if (tenantId == undefined || tenantId == 0 || tenantId == "") return; return ( diff --git a/javascript/src/Pages/Users/index.js b/javascript/src/Pages/Users/index.js index b3cb402..5bdd9f8 100644 --- a/javascript/src/Pages/Users/index.js +++ b/javascript/src/Pages/Users/index.js @@ -1,7 +1,7 @@ -import { useState, useContext, useEffect } from "react"; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; -import { envContext, projectContext } from "../../Context/context"; +import {useState, useContext, useEffect} from "react"; +import {useParams} from "react-router-dom"; +import {client} from '../../utils/api'; +import {envContext, projectContext} from "../../Context/context"; import Container from "react-bootstrap/Container"; import RegisteredUsersChart from "../../components/Users/registeredUsersChart"; import RegisteredUsersDataTable from "../../components/Users/registeredUsersDataTable"; @@ -11,38 +11,50 @@ import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; +import {useQuery} from "react-query"; +import {tenantKey} from "../../utils/queryKeys"; +import {getTenant} from "../../utils/queries"; const Users = () => { - const { project, environment } = useParams(); - const [tenantId, setTenantId] = useState(0); - const [startDate, setStartDate] = useState(""); - const [endDate, setEndDate] = useState(""); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) + const {project, environment} = useParams(); + const [tenantId, setTenantId] = useState(0); + const [startDate, setStartDate] = useState(""); + const [endDate, setEndDate] = useState(""); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { - setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment).then(response => { - setTenantId(response["data"][0]["id"]) - }) - }, []) + const tenant = useQuery( + [tenantKey, {projectId: project, environment: environment}], + getTenant, { + retry: 0, + }) - if (tenantId === 0) return - else return ( - -
              - - -

              Users

              - -
              - - - - -
              -
              ) + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) + setTenantId(tenant?.data?.[0]?.id) + }, [!tenant.isLoading + && tenant.isSuccess + && !tenant.isFetching]) + + + if (tenantId == undefined || tenantId == 0 || tenantId == "") return + + return ( + +
              + + +

              Users

              + +
              + + + + +
              +
              ) } export default Users; From c5276f75203a8033f7743459fede5ab6224d5d0a Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 17 May 2023 09:12:34 +0300 Subject: [PATCH 149/331] fix links for idps at datatable --- javascript/src/components/Idps/idpsDataTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index 97f4c90..8c87d8a 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -43,7 +43,7 @@ const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "t //var minDateFromData = "" response["data"].forEach(element => { - var perIdp = { "Identity Provider Name": '
              ' + element.name + '', "Identity Provider Identifier": element.entityid, "Number of Logins": element.count } + var perIdp = { "Identity Provider Name": '' + element.name + '', "Identity Provider Identifier": element.entityid, "Number of Logins": element.count } idpsLoginsArray.push(perIdp) }); From dd944467797adba93fd85f30635bb90d5d16764b Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Wed, 17 May 2023 13:30:43 +0300 Subject: [PATCH 150/331] Refactor requests 4 (#30) * Remove console.logs * Refactor Dashboard * Idps, Sps * login sp pie chart refactor --- app/main.py | 4 +- javascript/src/App.jsx | 1 - javascript/src/Pages/Communities/index.js | 2 - javascript/src/Pages/Dashboard/index.js | 138 ++++++------ javascript/src/Pages/Idps/index.js | 122 ++++++----- javascript/src/Pages/Sps/index.js | 122 ++++++----- .../components/Dashboard/loginDataTable.js | 2 - .../components/Dashboard/loginIdpPieChart.js | 6 - .../components/Dashboard/loginLineChart.js | 1 - .../components/Dashboard/loginSpPieChart.js | 201 ++++++++++-------- .../src/components/Dashboard/loginTiles.js | 2 - .../src/components/Dashboard/loginsMap.js | 2 - .../src/components/Idps/idpMapToDataTable.js | 1 - .../src/components/Idps/idpsDataTable.js | 2 - .../src/components/Sps/spMapToDataTable.js | 1 - javascript/src/components/Sps/spsDataTable.js | 2 - javascript/src/utils/queries/index.js | 9 +- javascript/src/utils/queryKeys/index.js | 1 + 18 files changed, 321 insertions(+), 298 deletions(-) diff --git a/app/main.py b/app/main.py index 561e4e9..5cc5441 100644 --- a/app/main.py +++ b/app/main.py @@ -28,10 +28,8 @@ environment = os.getenv('API_ENVIRONMENT') async def is_authenticated(request: Request): - pprint(request.cookies.get('userinfo')) - pprint(request.body) pprint(request.headers) - pprint(request.client.host) + # Instantiate app according to the environment configuration app = FastAPI(dependencies=[Depends(is_authenticated)]) if environment == "dev" else FastAPI(root_path="/api/v1", diff --git a/javascript/src/App.jsx b/javascript/src/App.jsx index ed079c2..04f0749 100644 --- a/javascript/src/App.jsx +++ b/javascript/src/App.jsx @@ -42,7 +42,6 @@ function App() { }, [cookies]) useEffect(() => { - console.log('userinfo', userInfo) if (userInfo != undefined) { toast.info(`Welcome ${userInfo.name}`) } diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index f0203f4..a8cca7d 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -35,8 +35,6 @@ const Communities = () => { if (tenantId == undefined || tenantId == 0 || tenantId == "") return - console.log("hi") - console.log("tenant id 2:", tenant?.data?.[0]?.id) return (
              diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index f006795..64e4176 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -1,8 +1,7 @@ -import { useState, useEffect, useContext } from "react"; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; -import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../Context/context"; +import {useState, useEffect, useContext} from "react"; +import {useParams} from "react-router-dom"; +import {useNavigate} from "react-router-dom"; +import {envContext, projectContext} from "../../Context/context"; import Form from 'react-bootstrap/Form'; import LoginDataTable from "../../components/Dashboard/loginDataTable"; import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; @@ -14,73 +13,82 @@ import Header from "../../components/Common/header"; import Footer from "../../components/Common/footer"; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; -import { Container } from "react-bootstrap"; +import {Container} from "react-bootstrap"; +import {useQuery} from "react-query"; +import {tenantKey} from "../../utils/queryKeys"; +import {getTenant} from "../../utils/queries"; const Dashboard = () => { - const [startDate, setStartDate] = useState(""); - const [endDate, setEndDate] = useState(""); - const [uniqueLogins, setUniqueLogins] = useState(false); - const [tenantId, setTenantId] = useState(0); - const [showModal, setShowModal] = useState(false); - const { project, environment } = useParams(); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { - setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment). - then(response => { + const [startDate, setStartDate] = useState(""); + const [endDate, setEndDate] = useState(""); + const [uniqueLogins, setUniqueLogins] = useState(false); + const [tenantId, setTenantId] = useState(0); + const [showModal, setShowModal] = useState(false); + const {project, environment} = useParams(); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - setTenantId(response["data"][0]["id"]) - }) - }, []) + const tenant = useQuery( + [tenantKey, {projectId: project, environment: environment}], + getTenant, { + retry: 0, + }) - const handleChange = event => { - setUniqueLogins(event.target.checked); - console.log(uniqueLogins) - } - let navigate = useNavigate(); - const goToSpecificProvider = (id, provider) => { - if (provider == "sp") { - var path = "/" + project + "/" + environment + "/services/" + id; - } - else { - var path = "/" + project + "/" + environment + "/identity-providers/" + id; - } - navigate(path); + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) + setTenantId(tenant?.data?.[0]?.id) + }, [!tenant.isLoading + && tenant.isSuccess + && !tenant.isFetching]) + + const handleChange = event => { + setUniqueLogins(event.target.checked); + } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + if (provider == "sp") { + var path = "/" + project + "/" + environment + "/services/" + id; + } else { + var path = "/" + project + "/" + environment + "/identity-providers/" + id; } - if (tenantId == 0) - return - else return ( + navigate(path); + } + + if (tenantId == undefined || tenantId == 0 || tenantId == "") return - -
              - - -

              Dashboard

              - -
              - - - - -
              - - - - - - + return ( + +
              + + +

              Dashboard

              + +
              + + + + +
              + + + + + + - {/* */} -
              -
              - ) + {/* */} +
              +
              + ) } export default Dashboard; diff --git a/javascript/src/Pages/Idps/index.js b/javascript/src/Pages/Idps/index.js index 05a10ba..f26a610 100644 --- a/javascript/src/Pages/Idps/index.js +++ b/javascript/src/Pages/Idps/index.js @@ -1,8 +1,7 @@ -import { useState, useContext, useEffect } from "react"; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; -import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../Context/context"; +import {useState, useContext, useEffect} from "react"; +import {useParams} from "react-router-dom"; +import {useNavigate} from "react-router-dom"; +import {envContext, projectContext} from "../../Context/context"; import Container from "react-bootstrap/Container"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; @@ -12,65 +11,74 @@ import LoginTiles from "../../components/Dashboard/loginTiles"; import IdpsDataTable from "../../components/Idps/idpsDataTable"; import IdpModal from "./idpModal"; import Header from "../../components/Common/header"; +import {useQuery} from "react-query"; +import {tenantKey} from "../../utils/queryKeys"; +import {getTenant} from "../../utils/queries"; const Idps = () => { - const [uniqueLogins, setUniqueLogins] = useState(false); - const { project, environment } = useParams(); - const [tenantId, setTenantId] = useState(0); - const [showModal, setShowModal] = useState(false); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) + const [uniqueLogins, setUniqueLogins] = useState(false); + const {project, environment} = useParams(); + const [tenantId, setTenantId] = useState(0); + const [showModal, setShowModal] = useState(false); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { - setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment).then(response => { - setTenantId(response["data"][0]["id"]) - }) - }, []) - const handleChange = event => { - setUniqueLogins(event.target.checked); - console.log(uniqueLogins) - } - let navigate = useNavigate(); - const goToSpecificProvider = (id, provider) => { - var path = "" - if (provider === "sp") { - path = "/" + project + "/" + environment + "/services/" + id; - } - else { - path = "/" + project + "/" + environment + "/identity-providers/" + id; - } - navigate(path); + const tenant = useQuery( + [tenantKey, {projectId: project, environment: environment}], + getTenant, { + retry: 0, + }) + + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) + setTenantId(tenant?.data?.[0]?.id) + }, [!tenant.isLoading + && tenant.isSuccess + && !tenant.isFetching]) + + const handleChange = event => { + setUniqueLogins(event.target.checked); + } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + var path = "" + if (provider === "sp") { + path = "/" + project + "/" + environment + "/services/" + id; + } else { + path = "/" + project + "/" + environment + "/identity-providers/" + id; } + navigate(path); + } + + if (tenantId == undefined || tenantId == 0 || tenantId == "") return - if (tenantId === 0) - return - else return ( - -
              - - -

              Identity Providers Logins

              - -
              - - - - -
              + return ( + +
              + + +

              Identity Providers Logins

              + +
              + + + + +
              - - - - -
              ) + + + + +
              ) } export default Idps; diff --git a/javascript/src/Pages/Sps/index.js b/javascript/src/Pages/Sps/index.js index e49cef1..6a0b901 100644 --- a/javascript/src/Pages/Sps/index.js +++ b/javascript/src/Pages/Sps/index.js @@ -1,8 +1,7 @@ -import { useState, useContext, useEffect } from "react"; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; -import { useNavigate } from "react-router-dom"; -import { envContext, projectContext } from "../../Context/context"; +import {useState, useContext, useEffect} from "react"; +import {useParams} from "react-router-dom"; +import {useNavigate} from "react-router-dom"; +import {envContext, projectContext} from "../../Context/context"; import Container from "react-bootstrap/Container"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; @@ -11,63 +10,72 @@ import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import SpsDataTable from "../../components/Sps/spsDataTable"; import Header from "../../components/Common/header"; +import {useQuery} from "react-query"; +import {tenantKey} from "../../utils/queryKeys"; +import {getTenant} from "../../utils/queries"; const Sps = () => { - const [uniqueLogins, setUniqueLogins] = useState(false); - const { project, environment } = useParams(); - const [tenantId, setTenantId] = useState(0); - const [showModal, setShowModal] = useState(false); - const [projectCon, setProjectCon] = useContext(projectContext); - const [envCon, setEnvCon] = useContext(envContext) + const [uniqueLogins, setUniqueLogins] = useState(false); + const {project, environment} = useParams(); + const [tenantId, setTenantId] = useState(0); + const [showModal, setShowModal] = useState(false); + const [projectCon, setProjectCon] = useContext(projectContext); + const [envCon, setEnvCon] = useContext(envContext) - useEffect(() => { - setProjectCon(project) - setEnvCon(environment) - client.get("tenant/" + project + "/" + environment).then(response => { - setTenantId(response["data"][0]["id"]) - }) - }, []) - const handleChange = event => { - setUniqueLogins(event.target.checked); - console.log(uniqueLogins) - } - let navigate = useNavigate(); - const goToSpecificProvider = (id, provider) => { - var path = "" - if (provider === "sp") { - path = "/" + project + "/" + environment + "/services/" + id; - } - else { - path = "/" + project + "/" + environment + "/identity-providers/" + id; - } - navigate(path); + const tenant = useQuery( + [tenantKey, {projectId: project, environment: environment}], + getTenant, { + retry: 0, + }) + + useEffect(() => { + setProjectCon(project) + setEnvCon(environment) + setTenantId(tenant?.data?.[0]?.id) + }, [!tenant.isLoading + && tenant.isSuccess + && !tenant.isFetching]) + + const handleChange = event => { + setUniqueLogins(event.target.checked); + } + let navigate = useNavigate(); + const goToSpecificProvider = (id, provider) => { + var path = "" + if (provider === "sp") { + path = "/" + project + "/" + environment + "/services/" + id; + } else { + path = "/" + project + "/" + environment + "/identity-providers/" + id; } - if (tenantId === 0) - return - else return ( - -
              - - -

              Service Providers Logins

              - -
              - - - - -
              - - - - {/* */} -
              ) + navigate(path); + } + if (tenantId == undefined || tenantId == 0 || tenantId == "") return + + return ( + +
              + + +

              Service Providers Logins

              + +
              + + + + +
              + + + + {/* */} +
              ) } export default Sps; diff --git a/javascript/src/components/Dashboard/loginDataTable.js b/javascript/src/components/Dashboard/loginDataTable.js index 929dd75..0143613 100644 --- a/javascript/src/components/Dashboard/loginDataTable.js +++ b/javascript/src/components/Dashboard/loginDataTable.js @@ -60,7 +60,6 @@ const LoginDataTable = ({startDateHandler, endDateHandler, tenantId, uniqueLogin }, [uniqueLogins]) const handleChange = event => { - console.log(event.value); loginsPerCountryPerPeriodArray = [] if (!startDate || !endDate) { toast.error('You have to fill both startDate and endDate.', { @@ -88,7 +87,6 @@ const LoginDataTable = ({startDateHandler, endDateHandler, tenantId, uniqueLogin 'unique_logins': uniqueLogins } }).then(response => { - //console.log(response); response["data"].forEach(element => { var range_date = new Date(element.range_date); diff --git a/javascript/src/components/Dashboard/loginIdpPieChart.js b/javascript/src/components/Dashboard/loginIdpPieChart.js index eba18c7..4e7a88f 100644 --- a/javascript/src/components/Dashboard/loginIdpPieChart.js +++ b/javascript/src/components/Dashboard/loginIdpPieChart.js @@ -36,13 +36,11 @@ const LoginIdpPieChart = ({setShowModalHandler, spId, tenantId, uniqueLogins, go params["params"]["sp"] = spId } client.get("logins_per_idp/", params).then(response => { - console.log(response) response["data"].forEach(element => { idpsChartArray.push([element.name, element.count]) idpsArray.push([element.id, element.name, element.entityid]) }) setIdps(idpsChartArray) - console.log(idpsChartArray) }) }, [uniqueLogins]) @@ -65,10 +63,6 @@ const LoginIdpPieChart = ({setShowModalHandler, spId, tenantId, uniqueLogins, go eventName: "ready", callback: ({chartWrapper, google}) => { const chart = chartWrapper.getChart(); - // if(!managed){ - // console.log(managed) - // setZerosIfNoDate(chartWrapper.getDataTable(), google) - // } google.visualization.events.addListener(chart, 'click', selectHandler); google.visualization.events.addListener(chart, 'onmouseover', showTooltip); diff --git a/javascript/src/components/Dashboard/loginLineChart.js b/javascript/src/components/Dashboard/loginLineChart.js index 220daa5..23c4eca 100644 --- a/javascript/src/components/Dashboard/loginLineChart.js +++ b/javascript/src/components/Dashboard/loginLineChart.js @@ -97,7 +97,6 @@ const LoginLineChart = ({type, id, tenantId, uniqueLogins}) => { setZerosIfNoDate(chartWrapper.getDataTable(), google) } google.visualization.events.addListener(chart, "click", (e) => { - console.log("CLICK"); }); } } diff --git a/javascript/src/components/Dashboard/loginSpPieChart.js b/javascript/src/components/Dashboard/loginSpPieChart.js index ee81468..5039995 100644 --- a/javascript/src/components/Dashboard/loginSpPieChart.js +++ b/javascript/src/components/Dashboard/loginSpPieChart.js @@ -1,105 +1,120 @@ -import { useState, useContext, useEffect } from "react"; -import { Chart } from "react-google-charts"; -import { client } from '../../utils/api'; -import Select from 'react-select'; -import Container from 'react-bootstrap/Container'; +import {useState, useEffect} from "react"; +import {Chart} from "react-google-charts"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import 'bootstrap/dist/css/bootstrap.min.css'; import "jquery/dist/jquery.min.js"; import $ from "jquery"; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; +import {loginsPerSpKey} from "../../utils/queryKeys"; +import {getLoginsPerSP} from "../../utils/queries"; +import {useQuery} from "react-query"; export const options = { - pieSliceText: 'value', - width: '100%', - height: '350', - chartArea: { - left: "3%", - top: "3%", - height: "94%", - width: "94%" - }, - sliceVisibilityThreshold: .005, - tooltip: { isHtml: true, trigger: "selection" } + pieSliceText: 'value', + width: '100%', + height: '350', + chartArea: { + left: "3%", + top: "3%", + height: "94%", + width: "94%" + }, + sliceVisibilityThreshold: .005, + tooltip: {isHtml: true, trigger: "selection"} }; + var spsArray = []; -const LoginSpPieChart = ({ setShowModalHandler, idpId, tenantId, uniqueLogins, goToSpecificProviderHandler }) => { - const [sps, setSps] = useState([["Service Provider", "Logins"]]); - var spsChartArray = [["Service Provider", "Logins"]]; - - - useEffect(() => { - var params = null - params = { params: { tenant_id: tenantId, unique_logins: uniqueLogins } } - if (idpId) { - params["params"]["idp"] = idpId - } - - client.get("logins_per_sp/", params). - then(response => { - response["data"].forEach(element => { - spsChartArray.push([element.name, element.count]) - spsArray.push([element.id, element.name, element.identifier]) - }) - - setSps(spsChartArray) - }) - - }, [uniqueLogins]) - return ( - - -
              -

              Overall number of logins per SP

              -
              - { - const chart = chartWrapper.getChart(); - - google.visualization.events.addListener(chart, 'click', selectHandler); - google.visualization.events.addListener(chart, 'onmouseover', showTooltip); - google.visualization.events.addListener(chart, 'onmouseout', hideTooltip); - - function showTooltip(entry) { - - chart.setSelection([{ row: entry.row }]); - $('.pieChart').css('cursor', 'pointer') - } - function hideTooltip() { - - chart.setSelection([]); - $('.pieChart').css('cursor', 'default') - } - function selectHandler() { - var selection = chart.getSelection(); - if (selection.length) { - var identifier = spsArray[selection[0].row]; - //var legend = data.getValue(selection[0].row, 0); - // Show Modal - // setShowModalHandler(true) - // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); - // unique_logins = $("#myModal").is(':visible') ? $("#unique-logins-modal").is(":checked") : $("#unique-logins-"+activeTab).is(":checked"); - // goToSpecificProvider(identifier, legend, type, unique_logins); - goToSpecificProviderHandler(identifier[0], "sp") - } - } - } - } - ]} - /> - -
              - ); + + +const LoginSpPieChart = ({ + setShowModalHandler, + idpId, + tenantId, + uniqueLogins, + goToSpecificProviderHandler + }) => { + const params = { + params: + { + tenant_id: tenantId, + unique_logins: uniqueLogins, + idp: idpId + } + } + + let spsChartArray = [["Service Provider", "Logins"]]; + const [sps, setSps] = useState(spsChartArray); + + const loginsPerSp = useQuery( + [loginsPerSpKey, params], + getLoginsPerSP, + { + enabled: false + } + ) + + useEffect(() => { + loginsPerSp.refetch() + .then(response => { + response?.data.forEach(element => { + spsChartArray.push([element.name, element.count]) + spsArray.push([element.id, element.name, element.identifier]) + }) + setSps(spsChartArray) + }) + }, [uniqueLogins]) + + if (loginsPerSp.isLoading || loginsPerSp.isFetching) return null + + return ( + + +
              +

              Overall number of logins per SP

              +
              + { + const chart = chartWrapper.getChart(); + + google.visualization.events.addListener(chart, 'click', selectHandler); + google.visualization.events.addListener(chart, 'onmouseover', showTooltip); + google.visualization.events.addListener(chart, 'onmouseout', hideTooltip); + + function showTooltip(entry) { + + chart.setSelection([{row: entry.row}]); + $('.pieChart').css('cursor', 'pointer') + } + + function hideTooltip() { + + chart.setSelection([]); + $('.pieChart').css('cursor', 'default') + } + + function selectHandler() { + var selection = chart.getSelection(); + if (selection.length) { + var identifier = spsArray[selection[0].row]; + goToSpecificProviderHandler(identifier[0], "sp") + } + } + } + } + ]} + /> + +
              + ); } export default LoginSpPieChart \ No newline at end of file diff --git a/javascript/src/components/Dashboard/loginTiles.js b/javascript/src/components/Dashboard/loginTiles.js index 6fce319..71067a1 100644 --- a/javascript/src/components/Dashboard/loginTiles.js +++ b/javascript/src/components/Dashboard/loginTiles.js @@ -39,7 +39,6 @@ const LoginTiles = (parameters) => { }).then(function (data) { // Log the data to the console // You would do something with both sets of data here - console.log(data); var tilesArray = {} data.forEach(element => { @@ -52,7 +51,6 @@ const LoginTiles = (parameters) => { } }) - console.log(tilesArray) setTiles(tilesArray) }).catch(function (error) { diff --git a/javascript/src/components/Dashboard/loginsMap.js b/javascript/src/components/Dashboard/loginsMap.js index 0888a62..6ccf7f7 100644 --- a/javascript/src/components/Dashboard/loginsMap.js +++ b/javascript/src/components/Dashboard/loginsMap.js @@ -21,8 +21,6 @@ const LoginsMap = ({startDate, endDate, tenantId, uniqueLogins}) => { 'unique_logins': uniqueLogins } }).then(response => { - console.log("MAP????") - console.log(response["data"]) createMap("loginsMap", response["data"]) }) }, [startDate, endDate, uniqueLogins]) diff --git a/javascript/src/components/Idps/idpMapToDataTable.js b/javascript/src/components/Idps/idpMapToDataTable.js index e86fcf3..aebc730 100644 --- a/javascript/src/components/Idps/idpMapToDataTable.js +++ b/javascript/src/components/Idps/idpMapToDataTable.js @@ -26,7 +26,6 @@ const IdpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, idpId}) } }).then(response => { //var community = {"created":element.created, "name":element.community_info.name} - console.log(response); var minDateFromData = "" response["data"].forEach(element => { //var range_date = new Date(element.range_date); diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index 8c87d8a..7481bc1 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -39,7 +39,6 @@ const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "t } client.get("logins_per_idp/", params). then(response => { - console.log(project); //var minDateFromData = "" response["data"].forEach(element => { @@ -56,7 +55,6 @@ const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "t }, [uniqueLogins]) const handleChange = () => { - //console.log(event.value); idpsLoginsArray = [] if (!startDate || !endDate) { toast.error('You have to fill both startDate and endDate.', { diff --git a/javascript/src/components/Sps/spMapToDataTable.js b/javascript/src/components/Sps/spMapToDataTable.js index 21ca716..74ca8bb 100644 --- a/javascript/src/components/Sps/spMapToDataTable.js +++ b/javascript/src/components/Sps/spMapToDataTable.js @@ -26,7 +26,6 @@ const SpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, spId}) => } }).then(response => { //var community = {"created":element.created, "name":element.community_info.name} - console.log(response); var minDateFromData = "" response["data"].forEach(element => { //var range_date = new Date(element.range_date); diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index ad748ea..b030bc8 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -26,7 +26,6 @@ const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = " if (idpId) params["params"]["idp"] = idpId client.get("logins_per_sp/", params).then(response => { - console.log(response); //var minDateFromData = "" response["data"].forEach(element => { //var community = {"created":element.created, "name":element.community_info.name} @@ -75,7 +74,6 @@ const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = " } } client.get("logins_per_sp/", params).then(response => { - //console.log(response); response["data"].forEach(element => { var perSp = { "Service Provider Name": element.name, "Service Provider Identifier": element.entityid, "Number of Logins": element.count } diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 39bcd7e..9d5a6ef 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -5,4 +5,11 @@ export const getTenant = async({queryKey}) => { const [_, params] = queryKey const response = await apiClient.get("tenant/" + params.projectId + "/" + params.environment) return response.data -} \ No newline at end of file +} + +// Logins +export const getLoginsPerSP = async({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get("logins_per_sp", params) + return response.data +} diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index f868f8d..26bfa4b 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -1,2 +1,3 @@ // Tenant export const tenantKey = "tenant" +export const loginsPerSpKey = "logins_per_sp" \ No newline at end of file From b05880e58d8dc8038e066a58977ed491a2b62884 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 18 May 2023 11:09:34 +0300 Subject: [PATCH 151/331] Fetch userinfo using access token (#31) * Fetch userinfo using access token * Lock endpoints that require authentication --- app/main.py | 9 ++--- app/routers/authenticate.py | 10 ++++++ app/routers/communities.py | 17 +++------ app/routers/countries.py | 4 ++- app/routers/logins.py | 2 ++ app/routers/users.py | 4 ++- app/utils/globalMethods.py | 36 +++++++++++++++++++ javascript/src/components/Common/navbarTop.js | 1 - javascript/src/utils/api/index.js | 13 ++++++- 9 files changed, 72 insertions(+), 24 deletions(-) create mode 100644 app/utils/globalMethods.py diff --git a/app/main.py b/app/main.py index 5cc5441..2c75635 100644 --- a/app/main.py +++ b/app/main.py @@ -1,7 +1,5 @@ import os import sys -import time -from pprint import pprint from xmlrpc.client import boolean from fastapi import Depends, FastAPI, HTTPException, Query, Request, HTTPException, status @@ -22,18 +20,15 @@ from app.models.country_hashed_user_model import * from .routers import authenticate, communities, countries, logins, users +from app.utils.globalMethods import is_authenticated sys.path.insert(0, os.path.realpath('__file__')) # Development Environment: dev environment = os.getenv('API_ENVIRONMENT') -async def is_authenticated(request: Request): - pprint(request.headers) - # Instantiate app according to the environment configuration -app = FastAPI(dependencies=[Depends(is_authenticated)]) if environment == "dev" else FastAPI(root_path="/api/v1", - dependencies=[Depends(is_authenticated)], +app = FastAPI() if environment == "dev" else FastAPI(root_path="/api/v1", root_path_in_servers=False, servers=[{"url": "/api/v1"}]) diff --git a/app/routers/authenticate.py b/app/routers/authenticate.py index 7a483d5..24b97e1 100644 --- a/app/routers/authenticate.py +++ b/app/routers/authenticate.py @@ -88,6 +88,11 @@ async def authorize_rciam(request: Request): secure=None, domain=SERVER_config['domain']) + response.set_cookie(key="atoken", + value=token.get('access_token'), + secure=None, + domain=SERVER_config['domain']) + return response @@ -116,4 +121,9 @@ async def logout(request: Request): max_age=0, domain=SERVER_config['domain']) + response.set_cookie(key="atoken", + expires=0, + max_age=0, + domain=SERVER_config['domain']) + return response diff --git a/app/routers/communities.py b/app/routers/communities.py index 5b43d5a..840989e 100644 --- a/app/routers/communities.py +++ b/app/routers/communities.py @@ -1,11 +1,13 @@ from fastapi import APIRouter, Depends, HTTPException from sqlmodel import Field, Session, SQLModel, create_engine, select -from typing import List, Union +from typing import Union from app.database import get_session from app.models.community_info_model import * from app.models.community_model import * from app.models.member_model import MembersReadWithCommunityInfo +from app.utils.globalMethods import is_authenticated + # from ..dependencies import get_token_header @@ -15,21 +17,10 @@ router = APIRouter( tags=["communities"], - # dependencies=[Depends(get_token_header)], + dependencies=[Depends(is_authenticated)] # responses={404: {"description": "Not found"}}, ) - -# @router.get("/communities/", response_model=List[CommunityReadwithInfo]) -# async def read_communities( -# *, -# session: Session = Depends(get_session), -# offset: int = 0 -# ): - -# communities = session.exec(select(Community).offset(offset)).all() -# return communities - @router.get("/members/", response_model=List[MembersReadWithCommunityInfo]) async def read_members( *, diff --git a/app/routers/countries.py b/app/routers/countries.py index 10ac4c7..9f27735 100644 --- a/app/routers/countries.py +++ b/app/routers/countries.py @@ -5,12 +5,14 @@ from app.models.country_model import * from app.models.country_hashed_user_model import * +from app.utils.globalMethods import is_authenticated + # from ..dependencies import get_token_header router = APIRouter( tags=["countries"], - # dependencies=[Depends(get_token_header)], + dependencies=[Depends(is_authenticated)], # responses={404: {"description": "Not found"}}, ) diff --git a/app/routers/logins.py b/app/routers/logins.py index 0e7b007..6c14558 100644 --- a/app/routers/logins.py +++ b/app/routers/logins.py @@ -7,6 +7,8 @@ # from ..dependencies import get_token_header +# LOGINS ROUTES ARE OPEN + router = APIRouter( tags=["logins"], # dependencies=[Depends(get_token_header)], diff --git a/app/routers/users.py b/app/routers/users.py index 7921ea3..a73202c 100644 --- a/app/routers/users.py +++ b/app/routers/users.py @@ -3,12 +3,14 @@ from typing import Union from app.database import get_session +from app.utils.globalMethods import is_authenticated + # from ..dependencies import get_token_header router = APIRouter( tags=["users"], - # dependencies=[Depends(get_token_header)], + dependencies=[Depends(is_authenticated)], # responses={404: {"description": "Not found"}}, ) diff --git a/app/utils/globalMethods.py b/app/utils/globalMethods.py new file mode 100644 index 0000000..778ae9a --- /dev/null +++ b/app/utils/globalMethods.py @@ -0,0 +1,36 @@ +from pprint import pprint +import requests as reqs +from fastapi import Depends, FastAPI, HTTPException, Query, Request, HTTPException, status + +from app.utils import configParser +from authlib.integrations.starlette_client import OAuth, OAuthError + +# TODO: Tenant hardcoded for now +OIDC_config = configParser.getConfig('oidc_client_egi') +SERVER_config = configParser.getConfig('server_config') +oauth = OAuth() + +oauth.register( + 'rciam', + client_id=OIDC_config['client_id'], + client_secret=OIDC_config['client_secret'], + server_metadata_url=OIDC_config['issuer'] + "/.well-known/openid-configuration", + client_kwargs={'scope': 'openid profile email voperson_id eduperson_entitlement'} +) + +async def is_authenticated(request: Request): + access_token = request.headers.get('x-access-token') + try: + rciam = oauth.create_client('rciam') + metadata = await rciam.load_server_metadata() + + headers = {'Authorization': f'Bearer {access_token}'} + resp = reqs.get(metadata['userinfo_endpoint'], headers=headers) + # pprint(resp) + # pprint(resp.status_code) + # pprint(resp.reason) + resp.raise_for_status() + data = resp.json() + pprint(data) + except Exception as er: + raise HTTPException(status_code=401) \ No newline at end of file diff --git a/javascript/src/components/Common/navbarTop.js b/javascript/src/components/Common/navbarTop.js index cd23b90..b719540 100644 --- a/javascript/src/components/Common/navbarTop.js +++ b/javascript/src/components/Common/navbarTop.js @@ -4,7 +4,6 @@ import DropdownButton from 'react-bootstrap/DropdownButton'; import Dropdown from 'react-bootstrap/Dropdown'; import {userinfoContext} from '../../Context/context'; import {useTranslation} from 'react-i18next'; -import {useCookies} from 'react-cookie'; import {useParams} from "react-router-dom"; import config from "./../../config_react.json"; import Login from "../../Pages/Authentication/Login" diff --git a/javascript/src/utils/api/index.js b/javascript/src/utils/api/index.js index 98559fb..9ceb2ac 100644 --- a/javascript/src/utils/api/index.js +++ b/javascript/src/utils/api/index.js @@ -1,13 +1,24 @@ import axios from "axios" +import {useCookies} from 'react-cookie'; import config from "./../../config_react.json"; const getConfig = key => config["configReact"][key] +const getCookie = (name) => { + var pattern = RegExp(name + "=.[^;]*") + var matched = document.cookie.match(pattern) + if(matched){ + var cookie = matched[0].split('=') + return cookie[1] + } + return false +} + const client = axios.create({ baseURL: getConfig('apiUrl'), headers: { "Access-Control-Allow-Origin": "*", "Content-type": "application/json", - // 'Authorization': `token ${access_token}` + 'x-access-token': `${getCookie('atoken')}` }, transformResponse: [function (data) { try { From 50226c50013ad961571cf0ddf7e250bb63346670 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 18 May 2023 12:08:05 +0300 Subject: [PATCH 152/331] Locking frontend part 1 and locking backend part 2 (#32) --- app/routers/logins.py | 13 +++++++- javascript/src/components/Common/sideNav.js | 33 ++++++++++++------- .../src/components/Idps/idpMapToDataTable.js | 3 +- 3 files changed, 34 insertions(+), 15 deletions(-) diff --git a/app/routers/logins.py b/app/routers/logins.py index 6c14558..ce4c219 100644 --- a/app/routers/logins.py +++ b/app/routers/logins.py @@ -1,9 +1,10 @@ -from fastapi import APIRouter, Depends, HTTPException +from fastapi import APIRouter, Depends, HTTPException, Request from sqlmodel import Field, Session, SQLModel, create_engine, select from typing import Union from xmlrpc.client import boolean from app.database import get_session +from app.utils.globalMethods import is_authenticated # from ..dependencies import get_token_header @@ -19,6 +20,7 @@ @router.get("/logins_per_idp") async def read_logins_per_idp( *, + request: Request, session: Session = Depends(get_session), offset: int = 0, sp: str = None, @@ -30,6 +32,10 @@ async def read_logins_per_idp( interval_subquery = "" sp_subquery_join = "" if sp: + # Is the user authenticated? + await is_authenticated(request) + + # Fetch the data sp_subquery_join = """ JOIN serviceprovidersmap ON serviceprovidersmap.id=serviceid AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id @@ -68,6 +74,7 @@ async def read_logins_per_idp( async def read_logins_per_sp( *, session: Session = Depends(get_session), + request: Request, offset: int = 0, idp: str = None, startDate: str = None, @@ -78,6 +85,10 @@ async def read_logins_per_sp( interval_subquery = "" idp_subquery_join = "" if idp: + # Is the user authenticated? + await is_authenticated(request) + + # Fetch the data idp_subquery_join = """ JOIN identityprovidersmap ON identityprovidersmap.id=sourceidpid AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id diff --git a/javascript/src/components/Common/sideNav.js b/javascript/src/components/Common/sideNav.js index 42dae3a..4dafedb 100644 --- a/javascript/src/components/Common/sideNav.js +++ b/javascript/src/components/Common/sideNav.js @@ -4,8 +4,12 @@ import Sidebar from "react-bootstrap-sidebar-menu"; import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; import {faDoorOpen, faHome, faUser, faUsers, faWarehouse} from '@fortawesome/free-solid-svg-icons'; import {envContext, projectContext} from '../../Context/context'; +import {useCookies} from 'react-cookie'; + const SideNav = (props) => { + const [cookies, setCookie] = useCookies(); + // const { t, i18n } = useTranslation(); const [project] = useContext(projectContext); @@ -38,18 +42,23 @@ const SideNav = (props) => { Services - {/* Users */} - - - Users - - {/* Communities */} - - - Communities - + { + cookies.userinfo != undefined ? + <> + {/* Users */} + + + Users + + {/* Communities */} + + + Communities + + : null + } diff --git a/javascript/src/components/Idps/idpMapToDataTable.js b/javascript/src/components/Idps/idpMapToDataTable.js index aebc730..022241c 100644 --- a/javascript/src/components/Idps/idpMapToDataTable.js +++ b/javascript/src/components/Idps/idpMapToDataTable.js @@ -22,7 +22,7 @@ const IdpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, idpId}) 'endDate':endDate, 'tenant_id': tenantId, 'unique_logins': uniqueLogins, - 'idpId': idpId + 'idpId': idpId } }).then(response => { //var community = {"created":element.created, "name":element.community_info.name} @@ -44,7 +44,6 @@ const IdpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, idpId}) return ( -

              Logins Per Country

              From a6cda8b9247e7bbd9e52cdfb8c34e701c29f0f0d Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 18 May 2023 16:26:38 +0300 Subject: [PATCH 153/331] Refactor idps dataTable (#33) * Refactor idps dataTable * Disable idp links --- app/routers/logins.py | 9 + javascript/src/Pages/Idps/index.js | 7 +- .../src/components/Idps/idpsDataTable.js | 228 +++++++++--------- javascript/src/components/Sps/spsDataTable.js | 200 +++++++-------- javascript/src/utils/helpers/methods.js | 6 + javascript/src/utils/queries/index.js | 7 + javascript/src/utils/queryKeys/index.js | 3 +- 7 files changed, 245 insertions(+), 215 deletions(-) create mode 100644 javascript/src/utils/helpers/methods.js diff --git a/app/routers/logins.py b/app/routers/logins.py index ce4c219..78b4cee 100644 --- a/app/routers/logins.py +++ b/app/routers/logins.py @@ -245,6 +245,7 @@ async def read_logins_countby( async def read_logins_groupby( *, session: Session = Depends(get_session), + request: Request, offset: int = 0, group_by: str, idp: str = None, @@ -254,12 +255,20 @@ async def read_logins_groupby( ): interval_subquery = "" if idp != None: + # Is the user authenticated? + await is_authenticated(request) + + # Fetch the data interval_subquery = """ JOIN identityprovidersmap ON sourceidpid=identityprovidersmap.id AND identityprovidersmap.tenant_id=statistics_country_hashed.tenant_id WHERE identityprovidersmap.id = '{0}' """.format(idp) elif sp != None: + # Is the user authenticated? + await is_authenticated(request) + + # Fetch the data interval_subquery = """ JOIN serviceprovidersmap ON serviceid=serviceprovidersmap.id AND serviceprovidersmap.tenant_id=statistics_country_hashed.tenant_id diff --git a/javascript/src/Pages/Idps/index.js b/javascript/src/Pages/Idps/index.js index f26a610..45c7ee9 100644 --- a/javascript/src/Pages/Idps/index.js +++ b/javascript/src/Pages/Idps/index.js @@ -73,8 +73,11 @@ const Idps = () => { - - + diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index 7481bc1..6b80025 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -1,131 +1,125 @@ -import { useState, useEffect } from "react"; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; +import {useState, useEffect} from "react"; +import {useParams} from "react-router-dom"; import "jquery/dist/jquery.min.js"; import $ from "jquery"; import Datatable from "../datatable"; -import dateFormat from 'dateformat'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Button from 'react-bootstrap/Button'; import DatePicker from "react-datepicker"; -import Dropdown from 'react-dropdown'; -import { ToastContainer, toast } from 'react-toastify'; -import { convertDateByGroup, getWeekNumber } from "../Common/utils"; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; - -const dropdownOptions = [ - - { value: 'day', label: 'Daily Basis', className: 'myOptionClassName' }, - { value: 'week', label: 'Weekly Basis', className: 'myOptionClassName' }, - { value: 'month', label: 'Monthly Basis' }, - { value: 'year', label: 'Yearly Basis' }, -] - -const IdpsDataTable = ({ startDateHandler, endDateHandle, spId, dataTableId = "table-idp", tenantId, uniqueLogins }) => { - const [idpsLogins, setIdpsLogins] = useState(); - var idpsLoginsArray = []; - const [minDate, setMinDate] = useState(""); - const [startDate, setStartDate] = useState(); - const [endDate, setEndDate] = useState(); - const { project, environment } = useParams(); - - useEffect(() => { - var params = { params: { tenant_id: tenantId, 'unique_logins': uniqueLogins } } - if (spId) { - params["params"]["sp"] = spId - } - client.get("logins_per_idp/", params). - then(response => { - //var minDateFromData = "" - response["data"].forEach(element => { - - var perIdp = { "Identity Provider Name": '' + element.name + '', "Identity Provider Identifier": element.entityid, "Number of Logins": element.count } - idpsLoginsArray.push(perIdp) - - }); - // setMinDate(minDateFromData) - $("#" + dataTableId).DataTable().destroy() - setIdpsLogins(idpsLoginsArray) - }) - // - - }, [uniqueLogins]) - - const handleChange = () => { - idpsLoginsArray = [] - if (!startDate || !endDate) { - toast.error('You have to fill both startDate and endDate.', { - position: "top-center", - autoClose: 5000, - hideProgressBar: false, - closeOnClick: true, - pauseOnHover: true, - draggable: true, - progress: undefined, - theme: "dark", - }); - return - } - // set parent states - // startDateHandler(startDate) - // endDateHandler(endDate) - - var params = { - params: { - 'startDate': startDate, - 'endDate': endDate, - 'sp': spId ? spId : null, - 'tenant_id': tenantId, - 'unique_logins': uniqueLogins - } - } - client.get("logins_per_idp/", params). - then(response => { - response["data"].forEach(element => { - - var perIdp = { "Identity Provider Name": element.name, "Identity Provider Identifier": element.entityid, "Number of Logins": element.count } - idpsLoginsArray.push(perIdp) - - }); - // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#" + dataTableId).DataTable().destroy() - setIdpsLogins(idpsLoginsArray) - - }) - //setSelected(event.value); - }; - - return - -
              -

              Number of logins

              -
              - - - - - From: setStartDate(date)}> - To: setEndDate(date)}> - - - - - - +import {useQuery, useQueryClient} from "react-query"; +import {loginsPerIdpKey} from "../../utils/queryKeys"; +import {getLoginsPerIdp} from "../../utils/queries"; +import {useCookies} from "react-cookie"; + +const IdpsDataTable = ({ + startDateHandler, + endDateHandle, + spId, + dataTableId = "table-idp", + tenantId, + uniqueLogins + }) => { + const [cookies, setCookie] = useCookies(); + const [idpsLogins, setIdpsLogins] = useState([]); + const [minDate, setMinDate] = useState(""); + const [btnPressed, setBtnPressed] = useState(false); + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + const {project, environment} = useParams(); + const queryClient = useQueryClient(); + + let params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'sp': spId, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } + + const loginsPerIpd = useQuery( + [loginsPerIdpKey, params], + getLoginsPerIdp, + { + enabled: false + } + ) + + console.log('loginsPerIpd', loginsPerIpd) + + useEffect(() => { + params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'sp': spId, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } + + try { + const response = queryClient.refetchQueries([loginsPerIdpKey, params]) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } + + }, [uniqueLogins, btnPressed]) + + // Construct the data required for the datatable + useEffect(() => { + const perIdp = !loginsPerIpd.isLoading + && !loginsPerIpd.isFetching + && loginsPerIpd.isSuccess + && loginsPerIpd?.data?.map(idp => ({ + "Identity Provider Name": cookies.userinfo == undefined ? idp.name : '' + idp.name + '', + "Identity Provider Identifier": idp.entityid, + "Number of Logins": idp.count + })) + + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#" + dataTableId).DataTable().destroy() + setIdpsLogins(perIdp) + }, [!loginsPerIpd.isLoading + && !loginsPerIpd.isFetching + && loginsPerIpd.isSuccess]) + + if (loginsPerIpd.isLoading + || loginsPerIpd.isFetching + || idpsLogins.length === 0) { + return null + } + + return ( + + +
              +

              Number of logins

              +
              + + + From: setStartDate(date)}> + To: setEndDate(date)}> + {/* Probably add a tooltip here that both fields are required */} + + + + +
              - + ) } diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index b030bc8..da0f25e 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -1,6 +1,6 @@ -import { useState, useEffect } from "react"; -import { useParams } from "react-router-dom"; -import { client } from '../../utils/api'; +import {useState, useEffect} from "react"; +import {useParams} from "react-router-dom"; +import {client} from '../../utils/api'; import "jquery/dist/jquery.min.js"; import $ from "jquery"; import Datatable from "../datatable"; @@ -8,112 +8,122 @@ import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Button from 'react-bootstrap/Button'; import DatePicker from "react-datepicker"; -import { ToastContainer, toast } from 'react-toastify'; +import {ToastContainer, toast} from 'react-toastify'; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; -const SpsDataTable = ({ startDateHandler, endDateHandler, idpId, dataTableId = "table-sp", tenantId, uniqueLogins }) => { - const [spsLogins, setSpsLogins] = useState(); - var spsLoginsArray = []; - const [minDate, setMinDate] = useState(""); - const [startDate, setStartDate] = useState(); - const [endDate, setEndDate] = useState(); - const { project, environment } = useParams(); +const SpsDataTable = ({startDateHandler, endDateHandler, idpId, dataTableId = "table-sp", tenantId, uniqueLogins}) => { + const [spsLogins, setSpsLogins] = useState(); + var spsLoginsArray = []; + const [minDate, setMinDate] = useState(""); + const [startDate, setStartDate] = useState(); + const [endDate, setEndDate] = useState(); + const {project, environment} = useParams(); - useEffect(() => { - var params = { params: { 'tenant_id': tenantId, 'unique_logins': uniqueLogins } } - if (idpId) - params["params"]["idp"] = idpId - client.get("logins_per_sp/", params).then(response => { - //var minDateFromData = "" - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} + useEffect(() => { + var params = {params: {'tenant_id': tenantId, 'unique_logins': uniqueLogins}} + if (idpId) + params["params"]["idp"] = idpId + client.get("logins_per_sp/", params).then(response => { + //var minDateFromData = "" + response["data"].forEach(element => { + //var community = {"created":element.created, "name":element.community_info.name} - // var range_date = new Date(element.range_date); - // if (minDateFromData == "") { - // minDateFromData = new Date(element.min_date) - // } - var perSp = { "Service Provider Name": '' + element.name + '', "Service Provider Identifier": element.identifier, "Number of Logins": element.count } - spsLoginsArray.push(perSp) + // var range_date = new Date(element.range_date); + // if (minDateFromData == "") { + // minDateFromData = new Date(element.min_date) + // } + var perSp = { + "Service Provider Name": '' + element.name + '', + "Service Provider Identifier": element.identifier, + "Number of Logins": element.count + } + spsLoginsArray.push(perSp) - }); - // setMinDate(minDateFromData) - $("#" + dataTableId).DataTable().destroy() - setSpsLogins(spsLoginsArray) - }) - // + }); + // setMinDate(minDateFromData) + $("#" + dataTableId).DataTable().destroy() + setSpsLogins(spsLoginsArray) + }) + // - }, [uniqueLogins]) + }, [uniqueLogins]) - const handleChange = () => { - spsLoginsArray = [] - if (!startDate || !endDate) { - toast.error('You have to fill both startDate and endDate.', { - position: "top-center", - autoClose: 5000, - hideProgressBar: false, - closeOnClick: true, - pauseOnHover: true, - draggable: true, - progress: undefined, - theme: "dark", - }); - return - } - // set parent states - // startDateHandler(startDate) - // endDateHandler(endDate) - var params = { - params: { - 'startDate': startDate, - 'endDate': endDate, - 'idp': idpId ? idpId : null, - 'tenant_id': tenantId, - 'unique_logins': uniqueLogins - } - } - client.get("logins_per_sp/", params).then(response => { - response["data"].forEach(element => { + const handleChange = () => { + spsLoginsArray = [] + if (!startDate || !endDate) { + toast.error('You have to fill both startDate and endDate.', { + position: "top-center", + autoClose: 5000, + hideProgressBar: false, + closeOnClick: true, + pauseOnHover: true, + draggable: true, + progress: undefined, + theme: "dark", + }); + return + } + // set parent states + // startDateHandler(startDate) + // endDateHandler(endDate) + var params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'idp': idpId ? idpId : null, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } + client.get("logins_per_sp/", params).then(response => { + response["data"].forEach(element => { - var perSp = { "Service Provider Name": element.name, "Service Provider Identifier": element.entityid, "Number of Logins": element.count } - spsLoginsArray.push(perSp) + var perSp = { + "Service Provider Name": element.name, + "Service Provider Identifier": element.entityid, + "Number of Logins": element.count + } + spsLoginsArray.push(perSp) - }); - // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#" + dataTableId).DataTable().destroy() - setSpsLogins(spsLoginsArray) + }); + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#" + dataTableId).DataTable().destroy() + setSpsLogins(spsLoginsArray) - }) - //setSelected(event.value); - }; + }) + //setSelected(event.value); + }; - return - -
              -

              Number of logins

              -
              - - + return + +
              +

              Number of logins

              +
              + + - From: setStartDate(date)}> - To: setEndDate(date)}> - - - - - - -
              + From: setStartDate(date)}> + To: setEndDate(date)}> + + + + + + +
              } diff --git a/javascript/src/utils/helpers/methods.js b/javascript/src/utils/helpers/methods.js new file mode 100644 index 0000000..4f61481 --- /dev/null +++ b/javascript/src/utils/helpers/methods.js @@ -0,0 +1,6 @@ +export const dropdownOptions = [ + {value: 'day', label: 'Daily Basis', className: 'myOptionClassName'}, + {value: 'week', label: 'Weekly Basis', className: 'myOptionClassName'}, + {value: 'month', label: 'Monthly Basis'}, + {value: 'year', label: 'Yearly Basis'}, +] diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 9d5a6ef..a327fe2 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -13,3 +13,10 @@ export const getLoginsPerSP = async({queryKey}) => { const response = await apiClient.get("logins_per_sp", params) return response.data } + +export const getLoginsPerIdp = async({queryKey}) => { + const [_, params] = queryKey + + const response = await apiClient.get("logins_per_idp", params) + return response.data +} diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index 26bfa4b..0ac3213 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -1,3 +1,4 @@ // Tenant export const tenantKey = "tenant" -export const loginsPerSpKey = "logins_per_sp" \ No newline at end of file +export const loginsPerSpKey = "logins_per_sp" +export const loginsPerIdpKey = "logins_per_idp" \ No newline at end of file From bf1babbb5355d8eaef37dabdbd9cc6f47083d75e Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 19 May 2023 08:59:55 +0300 Subject: [PATCH 154/331] Refactor entryInfo (#34) --- .../src/components/Common/entityInfo.js | 62 ++++++++----------- .../src/components/Idps/idpsDataTable.js | 2 - javascript/src/utils/queries/index.js | 14 ++++- javascript/src/utils/queryKeys/index.js | 4 +- 4 files changed, 41 insertions(+), 41 deletions(-) diff --git a/javascript/src/components/Common/entityInfo.js b/javascript/src/components/Common/entityInfo.js index bbc54e6..3d64fb1 100644 --- a/javascript/src/components/Common/entityInfo.js +++ b/javascript/src/components/Common/entityInfo.js @@ -1,45 +1,33 @@ -import {useState, useContext, useEffect} from "react"; -import {client} from '../../utils/api'; -import Container from 'react-bootstrap/Container'; -import Select from 'react-select'; -import Row from 'react-bootstrap/Row'; -import Col from 'react-bootstrap/Col'; -import {convertDateByGroup, getWeekNumber} from "../Common/utils"; -import 'bootstrap/dist/css/bootstrap.min.css'; +import {getIdps, getSps} from "../../utils/queries"; +import {idpsKey, spsKey} from "../../utils/queryKeys"; +import {useQuery} from "react-query"; const EntityInfo = (parameters) => { - const [idp, setIdp] = useState([]) - const [sp, setSp] = useState([]) - useEffect(() => { - if (parameters['idpId']) { - client.get("idps", { + const entities = parameters?.idpId ? + useQuery( + [idpsKey, { params: { - 'tenant_id': parameters['tenantId'], - 'idpId': parameters['idpId'] + 'tenant_id': parameters?.tenantId, + 'idpId': parameters?.idpId } - }).then(idp_response => { - setIdp(idp_response["data"][0]) - }) - } else if (parameters['spId']) { - client.get("sps", { - params: { - 'tenant_id': parameters['tenantId'], - 'spId': parameters['spId'] - } - }).then(sp_response => { - setSp(sp_response["data"][0]) - }) - } - }, []) - if (idp.name) { - return ( -

              {idp.name} ({idp.entityid})

              - ) - } else if (sp.name) { - return ( -

              {sp.name} ({sp.identifier})

              - ) + }], + getIdps) : + useQuery([spsKey, { + params: { + 'tenant_id': parameters?.tenantId, + 'spId': parameters?.spId + } + }], getSps) + + if (entities.isLoading + || entities.isFetching + || entities?.data?.length == 0) { + return null } + + return ( +

              {entities.data?.[0]?.name} ({!!parameters?.idpId ? entities.data?.[0]?.entityid : entities.data?.[0]?.identifier})

              + ) } export default EntityInfo \ No newline at end of file diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index 6b80025..d417a30 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -50,8 +50,6 @@ const IdpsDataTable = ({ } ) - console.log('loginsPerIpd', loginsPerIpd) - useEffect(() => { params = { params: { diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index a327fe2..29e879f 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -16,7 +16,19 @@ export const getLoginsPerSP = async({queryKey}) => { export const getLoginsPerIdp = async({queryKey}) => { const [_, params] = queryKey - const response = await apiClient.get("logins_per_idp", params) return response.data } + +// Get Idps, Sps +export const getIdps = async({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get("idps", params) + return response.data +} + +export const getSps = async({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get("sps", params) + return response.data +} \ No newline at end of file diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index 0ac3213..0734342 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -1,4 +1,6 @@ // Tenant export const tenantKey = "tenant" export const loginsPerSpKey = "logins_per_sp" -export const loginsPerIdpKey = "logins_per_idp" \ No newline at end of file +export const loginsPerIdpKey = "logins_per_idp" +export const spsKey = "sps" +export const idpsKey = "idps" \ No newline at end of file From 4fc19b1c4af0f587a098439fe115621b91128e61 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 19 May 2023 09:58:30 +0300 Subject: [PATCH 155/331] Entity Info for sp and idp use separate modules (#35) --- javascript/src/Pages/Idps/idp.js | 7 ++-- javascript/src/Pages/Sps/sp.js | 7 ++-- .../src/components/Common/entityInfo.js | 33 ------------------- .../src/components/Common/entityInfoIdp.js | 33 +++++++++++++++++++ .../src/components/Common/entityInfoSp.js | 31 +++++++++++++++++ 5 files changed, 74 insertions(+), 37 deletions(-) delete mode 100644 javascript/src/components/Common/entityInfo.js create mode 100644 javascript/src/components/Common/entityInfoIdp.js create mode 100644 javascript/src/components/Common/entityInfoSp.js diff --git a/javascript/src/Pages/Idps/idp.js b/javascript/src/Pages/Idps/idp.js index 44a8525..557536f 100644 --- a/javascript/src/Pages/Idps/idp.js +++ b/javascript/src/Pages/Idps/idp.js @@ -11,7 +11,7 @@ import Form from 'react-bootstrap/Form'; import Container from "react-bootstrap/Container"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import EntityInfo from "../../components/Common/entityInfo"; +import EntityInfoIdp from "../../components/Common/entityInfoIdp"; import IdpMap from "../../components/Idps/idpMap"; import IdpMapToDataTable from "../../components/Idps/idpMapToDataTable"; import Header from "../../components/Common/header"; @@ -63,7 +63,10 @@ const Idp = () => {
              - + + +
              {
              - + + + { - const entities = parameters?.idpId ? - useQuery( - [idpsKey, { - params: { - 'tenant_id': parameters?.tenantId, - 'idpId': parameters?.idpId - } - }], - getIdps) : - useQuery([spsKey, { - params: { - 'tenant_id': parameters?.tenantId, - 'spId': parameters?.spId - } - }], getSps) - - if (entities.isLoading - || entities.isFetching - || entities?.data?.length == 0) { - return null - } - - return ( -

              {entities.data?.[0]?.name} ({!!parameters?.idpId ? entities.data?.[0]?.entityid : entities.data?.[0]?.identifier})

              - ) -} - -export default EntityInfo \ No newline at end of file diff --git a/javascript/src/components/Common/entityInfoIdp.js b/javascript/src/components/Common/entityInfoIdp.js new file mode 100644 index 0000000..0ab3952 --- /dev/null +++ b/javascript/src/components/Common/entityInfoIdp.js @@ -0,0 +1,33 @@ +import {getIdps, getSps} from "../../utils/queries"; +import {idpsKey, spsKey} from "../../utils/queryKeys"; +import {useQuery} from "react-query"; + +const EntityInfoIdp = ({ + tenantId, + idpId + }) => { + const idpEntities = + useQuery( + [idpsKey, { + params: { + 'tenant_id': tenantId, + 'idpId': idpId + } + }], + getIdps, + { + enabled: !!idpId + }) + + if (idpEntities.isLoading + || idpEntities.isFetching + || idpEntities?.data?.length == 0) { + return null + } + + return ( +

              {idpEntities.data?.[0]?.name} ({idpEntities.data?.[0]?.entityid})

              + ) +} + +export default EntityInfoIdp \ No newline at end of file diff --git a/javascript/src/components/Common/entityInfoSp.js b/javascript/src/components/Common/entityInfoSp.js new file mode 100644 index 0000000..47cd0e5 --- /dev/null +++ b/javascript/src/components/Common/entityInfoSp.js @@ -0,0 +1,31 @@ +import {getIdps, getSps} from "../../utils/queries"; +import {idpsKey, spsKey} from "../../utils/queryKeys"; +import {useQuery} from "react-query"; + +const EntityInfoSp = ({ + tenantId, + spId + }) => { + const spEntities = + useQuery([spsKey, { + params: { + 'tenant_id': tenantId, + 'spId': spId + } + }], getSps, + { + enabled: !!spId + }) + + if (spEntities.isLoading + || spEntities.isFetching + || spEntities?.data?.length == 0) { + return null + } + + return ( +

              {spEntities.data?.[0]?.name} ({spEntities.data?.[0]?.identifier})

              + ) +} + +export default EntityInfoSp \ No newline at end of file From ac1cc7ac829c9a05377f852786d8115fce093a3e Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 19 May 2023 10:35:56 +0300 Subject: [PATCH 156/331] refactor spsDataTable --- javascript/src/components/Sps/spsDataTable.js | 177 +++++++++--------- 1 file changed, 86 insertions(+), 91 deletions(-) diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index da0f25e..925c795 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -12,119 +12,114 @@ import {ToastContainer, toast} from 'react-toastify'; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; +import {useQuery, useQueryClient} from "react-query"; +import {loginsPerSpKey} from "../../utils/queryKeys"; +import {getLoginsPerSp} from "../../utils/queries"; +import {useCookies} from "react-cookie"; -const SpsDataTable = ({startDateHandler, endDateHandler, idpId, dataTableId = "table-sp", tenantId, uniqueLogins}) => { +const SpsDataTable = ({ + startDateHandler, + endDateHandler, + idpId, + dataTableId = "table-sp", + tenantId, + uniqueLogins + }) => { + const [cookies, setCookie] = useCookies(); const [spsLogins, setSpsLogins] = useState(); - var spsLoginsArray = []; const [minDate, setMinDate] = useState(""); + const [btnPressed, setBtnPressed] = useState(false); const [startDate, setStartDate] = useState(); const [endDate, setEndDate] = useState(); const {project, environment} = useParams(); + const queryClient = useQueryClient(); - useEffect(() => { - var params = {params: {'tenant_id': tenantId, 'unique_logins': uniqueLogins}} - if (idpId) - params["params"]["idp"] = idpId - client.get("logins_per_sp/", params).then(response => { - //var minDateFromData = "" - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - - // var range_date = new Date(element.range_date); - // if (minDateFromData == "") { - // minDateFromData = new Date(element.min_date) - // } - var perSp = { - "Service Provider Name": '' + element.name + '', - "Service Provider Identifier": element.identifier, - "Number of Logins": element.count - } - spsLoginsArray.push(perSp) - - }); - // setMinDate(minDateFromData) - $("#" + dataTableId).DataTable().destroy() - setSpsLogins(spsLoginsArray) - }) - // - - }, [uniqueLogins]) + let params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'idp': idpId, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } - const handleChange = () => { - spsLoginsArray = [] - if (!startDate || !endDate) { - toast.error('You have to fill both startDate and endDate.', { - position: "top-center", - autoClose: 5000, - hideProgressBar: false, - closeOnClick: true, - pauseOnHover: true, - draggable: true, - progress: undefined, - theme: "dark", - }); - return + const loginsPerSp = useQuery( + [loginsPerSpKey, params], + getLoginsPerSp, + { + enabled: false } - // set parent states - // startDateHandler(startDate) - // endDateHandler(endDate) - var params = { + ) + + useEffect(() => { + params = { params: { 'startDate': startDate, 'endDate': endDate, - 'idp': idpId ? idpId : null, + 'idp': idpId, 'tenant_id': tenantId, 'unique_logins': uniqueLogins } } - client.get("logins_per_sp/", params).then(response => { - response["data"].forEach(element => { - var perSp = { - "Service Provider Name": element.name, - "Service Provider Identifier": element.entityid, - "Number of Logins": element.count - } - spsLoginsArray.push(perSp) + try { + const response = queryClient.refetchQueries([loginsPerSpKey, params]) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } - }); - // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#" + dataTableId).DataTable().destroy() - setSpsLogins(spsLoginsArray) + }, [uniqueLogins, btnPressed]) - }) - //setSelected(event.value); - }; + // Construct the data required for the datatable + useEffect(() => { + const perSp = !loginsPerSp.isLoading + && !loginsPerSp.isFetching + && loginsPerSp.isSuccess + && loginsPerSp?.data?.map(sp => ({ + "Service Provider Name": cookies.userinfo == undefined ? sp.name : '' + sp.name + '', + "Service Provider Identifier": sp.entityid, + "Number of Logins": sp.count + })) - return - -
              -

              Number of logins

              -
              - - + // This is essential: We must destroy the datatable in order to be refreshed with the new data + $("#" + dataTableId).DataTable().destroy() + setSpsLogins(perSp) + }, [!loginsPerSp.isLoading + && !loginsPerSp.isFetching + && loginsPerSp.isSuccess]) - From: setStartDate(date)}> - To: setEndDate(date)}> - - - - - - -
              + if (loginsPerSp.isLoading + || loginsPerSp.isFetching + || spsLogins.length === 0) { + return null + } + return ( + + +
              +

              Number of logins

              +
              + + + From: setStartDate(date)}> + To: setEndDate(date)}> + {/* Probably add a tooltip here that both fields are required */} + + + + + +
              + ) } From 2bbe8c5cf930437c89945a614c8f730c64f0dc44 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 19 May 2023 10:43:22 +0300 Subject: [PATCH 157/331] refactor spsDataTable 2 --- javascript/src/components/Sps/spsDataTable.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index 925c795..00341b0 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -14,7 +14,7 @@ import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; import {useQuery, useQueryClient} from "react-query"; import {loginsPerSpKey} from "../../utils/queryKeys"; -import {getLoginsPerSp} from "../../utils/queries"; +import {getLoginsPerSP} from "../../utils/queries"; import {useCookies} from "react-cookie"; const SpsDataTable = ({ @@ -26,7 +26,7 @@ const SpsDataTable = ({ uniqueLogins }) => { const [cookies, setCookie] = useCookies(); - const [spsLogins, setSpsLogins] = useState(); + const [spsLogins, setSpsLogins] = useState([]); const [minDate, setMinDate] = useState(""); const [btnPressed, setBtnPressed] = useState(false); const [startDate, setStartDate] = useState(); @@ -46,7 +46,7 @@ const SpsDataTable = ({ const loginsPerSp = useQuery( [loginsPerSpKey, params], - getLoginsPerSp, + getLoginsPerSP, { enabled: false } From 4da1ba49f068adcf79e8c21eb5e0d88486ddcff7 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Fri, 19 May 2023 10:48:43 +0300 Subject: [PATCH 158/331] remove unused imports --- javascript/src/components/Sps/spsDataTable.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index 00341b0..3dd6606 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -1,6 +1,5 @@ import {useState, useEffect} from "react"; import {useParams} from "react-router-dom"; -import {client} from '../../utils/api'; import "jquery/dist/jquery.min.js"; import $ from "jquery"; import Datatable from "../datatable"; @@ -8,7 +7,6 @@ import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Button from 'react-bootstrap/Button'; import DatePicker from "react-datepicker"; -import {ToastContainer, toast} from 'react-toastify'; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; From df18fd5dd04011e9743359473bb0d6a5b72dfc46 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 19 May 2023 11:27:34 +0300 Subject: [PATCH 159/331] Refactor idp pie chart (#36) --- .../components/Dashboard/loginIdpPieChart.js | 58 ++++++++++++------- .../components/Dashboard/loginSpPieChart.js | 13 +++-- .../src/components/Idps/idpMapToDataTable.js | 1 - 3 files changed, 46 insertions(+), 26 deletions(-) diff --git a/javascript/src/components/Dashboard/loginIdpPieChart.js b/javascript/src/components/Dashboard/loginIdpPieChart.js index 4e7a88f..97de1b5 100644 --- a/javascript/src/components/Dashboard/loginIdpPieChart.js +++ b/javascript/src/components/Dashboard/loginIdpPieChart.js @@ -10,7 +10,9 @@ import 'bootstrap/dist/css/bootstrap.min.css'; import "jquery/dist/jquery.min.js"; import $ from "jquery"; import {convertDateByGroup, getWeekNumber} from "../Common/utils"; - +import {useQuery} from "react-query"; +import {loginsPerIdpKey} from "../../utils/queryKeys"; +import {getLoginsPerIdp} from "../../utils/queries"; export const options = { pieSliceText: 'value', @@ -26,25 +28,47 @@ export const options = { tooltip: {isHtml: true, trigger: "selection"} }; var idpsArray = []; -const LoginIdpPieChart = ({setShowModalHandler, spId, tenantId, uniqueLogins, goToSpecificProviderHandler}) => { - const [idps, setIdps] = useState([["Identity Provider", "Identifier", "Logins"]]); - var idpsChartArray = [["Identity Provider", "Logins"]]; +const LoginIdpPieChart = ({ + setShowModalHandler, + spId, + tenantId, + uniqueLogins, + goToSpecificProviderHandler + }) => { + let idpsChartArray = [["Identity Provider", "Logins"]]; + const [idps, setIdps] = useState(idpsChartArray); - useEffect(() => { - var params = {params: {tenant_id: tenantId, 'unique_logins': uniqueLogins}} - if (spId) { - params["params"]["sp"] = spId + const params = { + params: { + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'sp': spId } - client.get("logins_per_idp/", params).then(response => { - response["data"].forEach(element => { - idpsChartArray.push([element.name, element.count]) - idpsArray.push([element.id, element.name, element.entityid]) + } + + const loginsPerIpd = useQuery( + [loginsPerIdpKey, params], + getLoginsPerIdp + ) + + useEffect(() => { + loginsPerIpd.refetch() + .then(response => { + response?.data.forEach(element => { + idpsChartArray.push([element.name, element.count]) + idpsArray.push([element.id, element.name, element.identifier]) + }) + setIdps(idpsChartArray) }) - setIdps(idpsChartArray) - }) }, [uniqueLogins]) + if (loginsPerIpd.isLoading + || loginsPerIpd.isFetching + || idps.length === 1 ) { + return null + } + return ( @@ -85,13 +109,7 @@ const LoginIdpPieChart = ({setShowModalHandler, spId, tenantId, uniqueLogins, go var selection = chart.getSelection(); if (selection.length) { var identifier = idpsArray[selection[0].row]; - //var legend = data.getValue(selection[0].row, 0); - // Show Modal - //setShowModalHandler(true) goToSpecificProviderHandler(identifier[0]) - // activeTab = $("ul.tabset_tabs li.ui-tabs-active").attr("aria-controls").replace("Tab",""); - // unique_logins = $("#myModal").is(':visible') ? $("#unique-logins-modal").is(":checked") : $("#unique-logins-"+activeTab).is(":checked"); - // goToSpecificProvider(identifier, legend, type, unique_logins); } } } diff --git a/javascript/src/components/Dashboard/loginSpPieChart.js b/javascript/src/components/Dashboard/loginSpPieChart.js index 5039995..3db6022 100644 --- a/javascript/src/components/Dashboard/loginSpPieChart.js +++ b/javascript/src/components/Dashboard/loginSpPieChart.js @@ -25,7 +25,6 @@ export const options = { var spsArray = []; - const LoginSpPieChart = ({ setShowModalHandler, idpId, @@ -33,6 +32,9 @@ const LoginSpPieChart = ({ uniqueLogins, goToSpecificProviderHandler }) => { + let spsChartArray = [["Service Provider", "Logins"]]; + const [sps, setSps] = useState(spsChartArray); + const params = { params: { @@ -42,9 +44,6 @@ const LoginSpPieChart = ({ } } - let spsChartArray = [["Service Provider", "Logins"]]; - const [sps, setSps] = useState(spsChartArray); - const loginsPerSp = useQuery( [loginsPerSpKey, params], getLoginsPerSP, @@ -64,7 +63,11 @@ const LoginSpPieChart = ({ }) }, [uniqueLogins]) - if (loginsPerSp.isLoading || loginsPerSp.isFetching) return null + if (loginsPerSp.isLoading + || loginsPerSp.isFetching + || sps.length === 1) { + return null + } return ( diff --git a/javascript/src/components/Idps/idpMapToDataTable.js b/javascript/src/components/Idps/idpMapToDataTable.js index 022241c..60dc2e5 100644 --- a/javascript/src/components/Idps/idpMapToDataTable.js +++ b/javascript/src/components/Idps/idpMapToDataTable.js @@ -50,7 +50,6 @@ const IdpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, idpId})
              -
              ) } From 48151099a74ca0ba58bb5356fd824695e8dc8a38 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 19 May 2023 15:29:55 +0300 Subject: [PATCH 160/331] Refactor SP map (#37) * Refactor SP map * fix Date error * More stylisting refactoring * More fixes --- javascript/src/Pages/Dashboard/index.js | 31 ++-- javascript/src/Pages/Idps/index.js | 11 +- javascript/src/Pages/Sps/sp.js | 25 ++- javascript/src/Pages/Sps/spModal.js | 18 +- .../Communities/communitiesDataTable.js | 4 +- .../components/Dashboard/loginDataTable.js | 5 +- .../src/components/Idps/idpsDataTable.js | 28 +-- javascript/src/components/Sps/spMap.js | 167 +++++++++++------- .../Users/registeredUsersDataTable.js | 4 +- javascript/src/components/datatable.js | 17 +- javascript/src/utils/queries/index.js | 6 + javascript/src/utils/queryKeys/index.js | 1 + 12 files changed, 199 insertions(+), 118 deletions(-) diff --git a/javascript/src/Pages/Dashboard/index.js b/javascript/src/Pages/Dashboard/index.js index 64e4176..bda2193 100644 --- a/javascript/src/Pages/Dashboard/index.js +++ b/javascript/src/Pages/Dashboard/index.js @@ -75,17 +75,26 @@ const Dashboard = () => { - - - - - - - - {/* */} + + + + + +
              ) diff --git a/javascript/src/Pages/Idps/index.js b/javascript/src/Pages/Idps/index.js index 45c7ee9..5b920ff 100644 --- a/javascript/src/Pages/Idps/index.js +++ b/javascript/src/Pages/Idps/index.js @@ -74,13 +74,16 @@ const Idps = () => { + uniqueLogins={uniqueLogins}/> - - + goToSpecificProviderHandler={goToSpecificProvider}/> + + ) } diff --git a/javascript/src/Pages/Sps/sp.js b/javascript/src/Pages/Sps/sp.js index c0df049..8a83a74 100644 --- a/javascript/src/Pages/Sps/sp.js +++ b/javascript/src/Pages/Sps/sp.js @@ -40,8 +40,8 @@ const Sp = () => { setEnvCon(environment) setTenantId(tenant?.data?.[0]?.id) }, [!tenant.isLoading - && tenant.isSuccess - && !tenant.isFetching]) + && tenant.isSuccess + && !tenant.isFetching]) const handleChange = event => { setUniqueLogins(event.target.checked); @@ -68,7 +68,7 @@ const Sp = () => { + spId={id}/> @@ -82,11 +82,14 @@ const Sp = () => { - - + + - + goToSpecificProviderHandler={goToSpecificProvider}/> + Map @@ -94,10 +97,14 @@ const Sp = () => { - + - + diff --git a/javascript/src/Pages/Sps/spModal.js b/javascript/src/Pages/Sps/spModal.js index 4ed2ff7..7ad9351 100644 --- a/javascript/src/Pages/Sps/spModal.js +++ b/javascript/src/Pages/Sps/spModal.js @@ -1,16 +1,15 @@ -import { useState, useContext, useEffect } from "react"; +import {useState, useContext, useEffect} from "react"; import Button from 'react-bootstrap/Button'; import Modal from "react-bootstrap/Modal"; import LoginLineChart from "../../components/Dashboard/loginLineChart"; -import LoginSpPieChart from "../../components/Dashboard/loginSpPieChart"; import LoginTiles from "../../components/Dashboard/loginTiles"; import IdpsDataTable from "../../components/Idps/idpsDataTable"; import LoginIdpPieChart from "../../components/Dashboard/loginIdpPieChart"; + const SpModal = ({showModal, setShowModalHandler, tenantId}) => { const handleClose = () => setShowModalHandler(false); - //const handleShow = () => setShow(true); return ( @@ -18,10 +17,15 @@ const SpModal = ({showModal, setShowModalHandler, tenantId}) => { Modal heading - - - - + + + + Woohoo, you're reading this text in a modal!
              - From: setStartDate(date)}> - To: setEndDate(date)}> + From: setStartDate(date)}/> + To: setEndDate(date)}/> {/* Probably add a tooltip here that both fields are required */}
              Date: Mon, 29 May 2023 09:57:37 +0300 Subject: [PATCH 167/331] refactor loginsMap --- .../src/components/Dashboard/loginsMap.js | 129 +++++++++--------- 1 file changed, 67 insertions(+), 62 deletions(-) diff --git a/javascript/src/components/Dashboard/loginsMap.js b/javascript/src/components/Dashboard/loginsMap.js index 6ccf7f7..bb92523 100644 --- a/javascript/src/components/Dashboard/loginsMap.js +++ b/javascript/src/components/Dashboard/loginsMap.js @@ -1,77 +1,82 @@ -import { useState, useContext, useEffect } from "react"; +import { useCallback, useRef, useEffect } from "react"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import Select from 'react-select'; -import { client } from '../../utils/api'; -import $, { map } from "jquery"; +import $ from "jquery"; import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; +import {useQuery, useQueryClient} from "react-query"; +import {loginsPerCountryKey} from "../../utils/queryKeys"; +import {getLoginsPerCountry} from "../../utils/queries"; +import {createMap} from "../Common/utils"; +const LoginsMap = ({ startDate, endDate, tenantId, uniqueLogins }) => { + const areaLegendRef = useRef(null) + const queryClient = useQueryClient(); -const LoginsMap = ({startDate, endDate, tenantId, uniqueLogins}) => { - - useEffect(() => { - client.get("logins_per_country", - { - params: { - 'startDate':startDate, - 'endDate':endDate, - 'tenant_id': tenantId, - 'unique_logins': uniqueLogins - } - }).then(response => { - createMap("loginsMap", response["data"]) - }) - }, [startDate, endDate, uniqueLogins]) + let params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } + + const loginsPerCountry = useQuery( + [loginsPerCountryKey, params], + getLoginsPerCountry, + { + enabled: false + } + ) + + useEffect(() => { + params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } + try { + var response = queryClient.refetchQueries([loginsPerCountryKey, params]) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } - const createMap = (id, mapData, tooltipLabel = "Logins", legendLabel = 'Logins per country') => { - var areas = {}; - var i = 1; - var maxSum = 0; - mapData.forEach(function (mapRow) { - - var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum + }, [uniqueLogins, startDate, endDate]) - //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; - areas[mapRow.countrycode] = { - value: mapRow.sum, - tooltip: { content: contentTooltip } - } - if (mapRow.sum > maxSum) { - maxSum = mapRow.sum; - } - i++; - }) - // Calculate Legends - var legends = calculateLegends(maxSum) - $(".areaLegend").show() - $("#" + id).mapael({ - map: setMapConfiguration(), - legend: setLegend(legendLabel, legends), - areas: areas - }) - + const loginsMapDrawRef = useCallback(node => { + if (loginsPerCountry?.data !== undefined && node !== undefined) { + createMap(node, areaLegendRef, loginsPerCountry?.data) } + }, [!loginsPerCountry.isLoading && loginsPerCountry.isSuccess && loginsPerCountry?.data]) - return ( - - - -
              -

              Logins Per Country

              -
              - - - -
              -
              -
              -
              - + if (loginsPerCountry.isLoading + || loginsPerCountry.isFetching + || loginsPerCountry.length === 0) { + return null + } -
              - ) + return ( + + +
              +

              Logins Per Country

              +
              +
              +
              +
              +
              + +
              + ) } export default LoginsMap; \ No newline at end of file From 1ee0eaf2eaa4f20178c1b116cb94ad84d0758229 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Mon, 29 May 2023 14:35:49 +0300 Subject: [PATCH 168/331] Refactor loginDataTable (#40) --- javascript/src/Pages/Users/index.js | 13 +- .../components/Dashboard/loginDataTable.js | 225 +++++++++--------- .../src/components/Idps/idpsDataTable.js | 11 +- javascript/src/components/Sps/spsDataTable.js | 2 +- 4 files changed, 129 insertions(+), 122 deletions(-) diff --git a/javascript/src/Pages/Users/index.js b/javascript/src/Pages/Users/index.js index 5bdd9f8..fc005d2 100644 --- a/javascript/src/Pages/Users/index.js +++ b/javascript/src/Pages/Users/index.js @@ -48,11 +48,14 @@ const Users = () => {

              Users

              - - - - + + + +
              ) diff --git a/javascript/src/components/Dashboard/loginDataTable.js b/javascript/src/components/Dashboard/loginDataTable.js index baf7a55..b3a7aff 100644 --- a/javascript/src/components/Dashboard/loginDataTable.js +++ b/javascript/src/components/Dashboard/loginDataTable.js @@ -1,5 +1,4 @@ -import {useState, useContext, useEffect} from "react"; -import {client} from '../../utils/api'; +import {useState, useEffect, useRef} from "react"; import "jquery/dist/jquery.min.js"; import $ from "jquery"; import Datatable from "../datatable"; @@ -8,140 +7,136 @@ import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import DatePicker from "react-datepicker"; import Dropdown from 'react-dropdown'; -import {ToastContainer, toast} from 'react-toastify'; -import {convertDateByGroup, getWeekNumber} from "../Common/utils"; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; - -const dropdownOptions = [ - - {value: 'day', label: 'Daily Basis', className: 'myOptionClassName'}, - {value: 'week', label: 'Weekly Basis', className: 'myOptionClassName'}, - {value: 'month', label: 'Monthly Basis'}, - {value: 'year', label: 'Yearly Basis'}, -] - -const LoginDataTable = ({startDateHandler, endDateHandler, tenantId, uniqueLogins}) => { - const [loginsPerCountryPerPeriod, setLoginsPerCountryPerPeriod] = useState(); - var loginsPerCountryPerPeriodArray = []; - const [minDate, setMinDate] = useState(""); - const [startDate, setStartDate] = useState(); - const [endDate, setEndDate] = useState(); +import {dropdownOptions} from "../../../src/utils/helpers/methods" +import {useQuery, useQueryClient} from "react-query"; +import {loginsPerCountryKey} from "../../utils/queryKeys"; +import {getLoginsPerCountry} from "../../utils/queries"; +import {toast} from "react-toastify"; + +const LoginDataTable = ({ + startDateHandler, + endDateHandler, + tenantId, + uniqueLogins + }) => { + const [loginsPerCountryPerPeriod, setLoginsPerCountryPerPeriod] = useState([]); + const [minDate, setMinDate] = useState(null); + // By default we fetch by month + const [groupBy, setGroupBy] = useState("month"); + const [endDate, setEndDate] = useState(null); + const [startDate, setStartDate] = useState(null); + + const queryClient = useQueryClient(); + + + let params = { + params: { + 'group_by': groupBy, + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins + } + } + + const loginsPerCountry = useQuery( + [loginsPerCountryKey, params], + getLoginsPerCountry, + { + enabled: false, + refetchOnWindowFocus: false + } + ) useEffect(() => { - client.get("logins_per_country/", { + params = { params: { - 'group_by': 'month', + 'group_by': groupBy, + 'startDate': startDate, + 'endDate': endDate, 'tenant_id': tenantId, 'unique_logins': uniqueLogins } - }).then(response => { - // need to be initialized every time gets here - loginsPerCountryPerPeriodArray = [] - - var minDateFromData = "" - response["data"].forEach(element => { + } + + try { + const response = queryClient.refetchQueries([loginsPerCountryKey, params]) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } - var range_date = new Date(element.range_date); - if (minDateFromData == "") { - minDateFromData = new Date(element.min_date) - } - var perPeriod = { - "Date": dateFormat(range_date, "yyyy-mm"), - "Number of Logins": element.count, - "Number of Logins per Country": element.countries - } - loginsPerCountryPerPeriodArray.push(perPeriod) + }, [uniqueLogins, groupBy]) - }); - setMinDate(minDateFromData) + // Construct the data required for the datatable + useEffect(() => { + const loginsPerCountryPerPeriodArray = !loginsPerCountry.isLoading + && !loginsPerCountry.isFetching + && loginsPerCountry.isSuccess + && loginsPerCountry?.data?.map(element => ({ + "Date": !!element?.range_date ? dateFormat(new Date(element?.range_date), "yyyy-mm") : null, + "Number of Logins": element?.count, + "Number of Logins per Country": element?.countries + })) + + if (!!loginsPerCountry?.data && !!loginsPerCountryPerPeriodArray) { + // We only keep the first date because the backend returns the dataset sorted and we only care about the + // min of the min dates. + setMinDate(!!loginsPerCountry?.data?.[0]?.min_date ? new Date(loginsPerCountry?.data?.[0]?.min_date) : null) $("#table-login").DataTable().destroy() setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) - }) - // - - }, [uniqueLogins]) + } + }, [!loginsPerCountry.isLoading + && !loginsPerCountry.isFetching + && loginsPerCountry.isSuccess]) - const handleChange = event => { - loginsPerCountryPerPeriodArray = [] + const handleChange = (event) => { if (!startDate || !endDate) { - toast.error('You have to fill both startDate and endDate.', { - position: "top-center", - autoClose: 5000, - hideProgressBar: false, - closeOnClick: true, - pauseOnHover: true, - draggable: true, - progress: undefined, - theme: "dark", - }); + toast.warning("You have to fill both startDate and endDate") return } - // set parent states + setGroupBy(event.value) startDateHandler(startDate) endDateHandler(endDate) - client.get("logins_per_country/", - { - params: { - 'group_by': event.value, - 'startDate': startDate, - 'endDate': endDate, - 'tenant_id': tenantId, - 'unique_logins': uniqueLogins - } - }).then(response => { - response["data"].forEach(element => { - - var range_date = new Date(element.range_date); - - var perPeriod = { - "Date": convertDateByGroup(range_date, event.value), - "Number of Logins": element.count, - "Number of Logins per Country": element.countries - } - loginsPerCountryPerPeriodArray.push(perPeriod) - - }); - // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#table-login").DataTable().destroy() - setLoginsPerCountryPerPeriod(loginsPerCountryPerPeriodArray) - - }) - //setSelected(event.value); }; - return - -
              -

              Number of logins

              -
              - - - - From: setStartDate(date)}> - To: setEndDate(date)}> - - - - - - -
              - - + if (loginsPerCountry.isLoading + || loginsPerCountry.isFetching + || minDate == undefined + || loginsPerCountryPerPeriod.length === 0) { + return null + } + + return ( + + +
              +

              Number of logins

              +
              + + + From: setStartDate(date)}/> + To: setEndDate(date)}/> + + + + + +
              + ) } export default LoginDataTable \ No newline at end of file diff --git a/javascript/src/components/Idps/idpsDataTable.js b/javascript/src/components/Idps/idpsDataTable.js index 6a2a5c4..122b69f 100644 --- a/javascript/src/components/Idps/idpsDataTable.js +++ b/javascript/src/components/Idps/idpsDataTable.js @@ -15,6 +15,7 @@ import {loginsPerIdpKey} from "../../utils/queryKeys"; import {getLoginsPerIdp} from "../../utils/queries"; import {useCookies} from "react-cookie"; import {createAnchorElement} from "../Common/utils"; +import {toast} from "react-toastify"; const IdpsDataTable = ({ spId, @@ -90,6 +91,14 @@ const IdpsDataTable = ({ && !loginsPerIpd.isFetching && loginsPerIpd.isSuccess]) + const handleBtnclick = () => { + if (!startDate || !endDate) { + toast.warning("You have to fill both startDate and endDate") + return + } + setBtnPressed(!btnPressed) + } + if (loginsPerIpd.isLoading || loginsPerIpd.isFetching || idpsLogins.length === 0) { @@ -115,7 +124,7 @@ const IdpsDataTable = ({ {/* Probably add a tooltip here that both fields are required */} diff --git a/javascript/src/components/Sps/spsDataTable.js b/javascript/src/components/Sps/spsDataTable.js index e000840..f7a094f 100644 --- a/javascript/src/components/Sps/spsDataTable.js +++ b/javascript/src/components/Sps/spsDataTable.js @@ -109,7 +109,7 @@ const SpsDataTable = ({ {/* Probably add a tooltip here that both fields are required */} From 05dcce7c3d765e84f24754d293373e9438a176dd Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Mon, 29 May 2023 14:46:03 +0300 Subject: [PATCH 169/331] refactor loginLineChart --- .../components/Dashboard/loginLineChart.js | 84 +++++++++++++------ javascript/src/utils/queries/index.js | 6 ++ javascript/src/utils/queryKeys/index.js | 1 + 3 files changed, 65 insertions(+), 26 deletions(-) diff --git a/javascript/src/components/Dashboard/loginLineChart.js b/javascript/src/components/Dashboard/loginLineChart.js index 23c4eca..599d223 100644 --- a/javascript/src/components/Dashboard/loginLineChart.js +++ b/javascript/src/components/Dashboard/loginLineChart.js @@ -1,12 +1,11 @@ -import {useState, useContext, useEffect} from "react"; -import {Chart} from "react-google-charts"; -import {client} from '../../utils/api'; -import Select from 'react-select'; -import Container from 'react-bootstrap/Container'; +import { useState, useContext, useEffect } from "react"; +import { Chart } from "react-google-charts"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import 'bootstrap/dist/css/bootstrap.min.css'; - +import { getLoginsGroupByDay } from "../../utils/queries"; +import { useQuery } from "react-query"; +import { loginsGroupByDayKey } from "../../utils/queryKeys"; export const options = { // title: "Overall number of logins per day", @@ -15,24 +14,52 @@ export const options = { }; -const LoginLineChart = ({type, id, tenantId, uniqueLogins}) => { +const LoginLineChart = ({ type, id, tenantId, uniqueLogins }) => { const [managed, setManaged] = useState(false); - const [lineData, setLineData] = useState(["Date", "Logins"]) + let lineDataArray = [["Date", "Logins"]]; + const [lineData, setLineData] = useState(lineDataArray) + + let params = { + params: { + tenant_id: tenantId, + unique_logins: uniqueLogins + } + } + + const loginsGroupByDay = useQuery( + [loginsGroupByDayKey, params], + getLoginsGroupByDay, + { + enabled: false + } + ) + useEffect(() => { - var params = null - params = {params: {tenant_id: tenantId, 'unique_logins': uniqueLogins}} + params = { + params: { + tenant_id: tenantId, + unique_logins: uniqueLogins + } + } if (type) { params["params"][[type]] = id } - client.get("logins_groupby/day", params).then(response => { - var lineDataArray = [["Date", "Logins"]]; - response["data"].forEach(element => { - lineDataArray.push([new Date(element.date), element.count]) - }) - setLineData(lineDataArray) - }) - }, [uniqueLogins]) + try { + loginsGroupByDay.refetch() + .then(response => { + + response?.data.forEach(element => { + lineDataArray.push([new Date(element.date), element.count]) + }) + setLineData(lineDataArray) + setManaged(false); + }) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } + }, [!loginsGroupByDay.isLoading && loginsGroupByDay.isSuccess && loginsGroupByDay?.data, uniqueLogins]) // This is for Dates with no logins, we have to set 0 for these dates @@ -46,15 +73,15 @@ const LoginLineChart = ({type, id, tenantId, uniqueLogins}) => { var endDate = dataTable.getColumnRange(0).max; var oneDay = (1000 * 60 * 60 * 24); for (var i = startDate.getTime(); i < endDate.getTime(); i = i + oneDay) { - var coffeeData = dataTable.getFilteredRows([{ + var rowsData = dataTable.getFilteredRows([{ column: 0, test: function (value, row, column, table) { - var coffeeDate = formatDate.formatValue(table.getValue(row, column)); + var rowDate = formatDate.formatValue(table.getValue(row, column)); var testDate = formatDate.formatValue(new Date(i)); - return (coffeeDate === testDate); + return (rowDate === testDate); } }]); - if (coffeeData.length === 0) { + if (rowsData.length === 0) { dataTable.addRow([ new Date(i), 0 @@ -76,6 +103,11 @@ const LoginLineChart = ({type, id, tenantId, uniqueLogins}) => { return dataTable; } + if (loginsGroupByDay.isLoading + || loginsGroupByDay.isFetching + || lineData.length === 1) { + return null + } return ( @@ -86,12 +118,12 @@ const LoginLineChart = ({type, id, tenantId, uniqueLogins}) => { { + callback: ({ chartWrapper, google }) => { const chart = chartWrapper.getChart(); if (!managed) { setZerosIfNoDate(chartWrapper.getDataTable(), google) @@ -110,8 +142,8 @@ const LoginLineChart = ({type, id, tenantId, uniqueLogins}) => { ui: { chartType: "LineChart", chartOptions: { - chartArea: {width: "80%", height: "100%"}, - hAxis: {baselineColor: "none"}, + chartArea: { width: "80%", height: "100%" }, + hAxis: { baselineColor: "none" }, }, }, }, diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 21eb21d..3319a8d 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -27,6 +27,12 @@ export const getLoginsPerCountry = async ({queryKey}) => { return response.data } +export const getLoginsGroupByDay = async ({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get("logins_groupby/day", params) + return response.data +} + // Get Idps, Sps export const getIdps = async ({queryKey}) => { const [_, params] = queryKey diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index d5d4bcc..4045022 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -3,5 +3,6 @@ export const tenantKey = "tenant" export const loginsPerSpKey = "logins_per_sp" export const loginsPerIdpKey = "logins_per_idp" export const loginsPerCountryKey = "logins_per_country" +export const loginsGroupByDayKey = "logins_groupby/day" export const spsKey = "sps" export const idpsKey = "idps" \ No newline at end of file From b260aa5c212dee880afe5097b96a3455ef648fe1 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Mon, 29 May 2023 16:37:09 +0300 Subject: [PATCH 170/331] Refactor idpMapToDataTable.js (#41) --- app/routers/logins.py | 8 +- app/utils/globalMethods.py | 1 + .../src/components/Idps/idpMapToDataTable.js | 136 ++++++++++++------ 3 files changed, 95 insertions(+), 50 deletions(-) diff --git a/app/routers/logins.py b/app/routers/logins.py index c55fcf2..684719d 100644 --- a/app/routers/logins.py +++ b/app/routers/logins.py @@ -33,7 +33,7 @@ async def read_logins_per_idp( sp_subquery_join = "" if sp: # Is the user authenticated? - await AuthNZCheck(request) + AuthNZCheck(request) # Fetch the data sp_subquery_join = """ @@ -86,7 +86,7 @@ async def read_logins_per_sp( idp_subquery_join = "" if idp: # Is the user authenticated? - await AuthNZCheck(request) + AuthNZCheck(request) # Fetch the data idp_subquery_join = """ @@ -256,7 +256,7 @@ async def read_logins_groupby( interval_subquery = "" if idp != None: # Is the user authenticated? - await AuthNZCheck(request) + AuthNZCheck(request) # Fetch the data interval_subquery = """ @@ -266,7 +266,7 @@ async def read_logins_groupby( """.format(idp) elif sp != None: # Is the user authenticated? - await AuthNZCheck(request) + AuthNZCheck(request) # Fetch the data interval_subquery = """ diff --git a/app/utils/globalMethods.py b/app/utils/globalMethods.py index 68597cf..15627cd 100644 --- a/app/utils/globalMethods.py +++ b/app/utils/globalMethods.py @@ -22,6 +22,7 @@ ) +# https://www.fastapitutorial.com/blog/class-based-dependency-injection/ class AuthNZCheck: def __init__(self, tag: str = ""): self.tag = tag diff --git a/javascript/src/components/Idps/idpMapToDataTable.js b/javascript/src/components/Idps/idpMapToDataTable.js index 60dc2e5..3a545fd 100644 --- a/javascript/src/components/Idps/idpMapToDataTable.js +++ b/javascript/src/components/Idps/idpMapToDataTable.js @@ -1,57 +1,101 @@ -import { useState, useContext, useEffect } from "react"; +import {useState, useEffect} from "react"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import Select from 'react-select'; -import { client } from '../../utils/api'; -import $, { map } from "jquery"; +import $ from "jquery"; import "jquery/dist/jquery.min.js"; import Datatable from "../datatable"; -import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; +import {useQuery, useQueryClient} from "react-query"; +import {loginsPerCountryKey} from "../../utils/queryKeys"; +import {getLoginsPerCountry} from "../../utils/queries"; -const IdpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, idpId}) => { - const [loginsPerCountry, setLoginsPerCountry] = useState(); - var loginsPerCountryArray = []; - useEffect(() => { - client.get("logins_per_country", - { - params: { - 'startDate':startDate, - 'endDate':endDate, - 'tenant_id': tenantId, - 'unique_logins': uniqueLogins, - 'idpId': idpId - } - }).then(response => { - //var community = {"created":element.created, "name":element.community_info.name} - var minDateFromData = "" - response["data"].forEach(element => { - //var range_date = new Date(element.range_date); - // if (minDateFromData == "") { - // minDateFromData = new Date(element.min_date) - // } - var perPeriod = { "Countries": element.country, "Number of Logins": element.sum} - loginsPerCountryArray.push(perPeriod) - - }); - // setMinDate(minDateFromData) - $("#table-idp").DataTable().destroy() - setLoginsPerCountry(loginsPerCountryArray) - }) - }, [uniqueLogins]) - - return ( - - -
              -

              Logins Per Country

              -
              - - -
              - ) +const IdpMapToDataTable = ({ + startDate, + endDate, + tenantId, + uniqueLogins, + idpId + }) => { + const [loginsPerCountryData, setLoginsPerCountryData] = useState([]); + const queryClient = useQueryClient(); + + + let params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'idpId': idpId + } + } + + const loginsPerCountry = useQuery( + [loginsPerCountryKey, params], + getLoginsPerCountry, + { + enabled: false, + refetchOnWindowFocus: false + } + ) + + useEffect(() => { + params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'idpId': idpId + } + } + + try { + const response = queryClient.refetchQueries([loginsPerCountryKey, params]) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } + + }, [uniqueLogins]) + + // Construct the data required for the datatable + useEffect(() => { + const loginsPerCountryArray = !loginsPerCountry.isLoading + && !loginsPerCountry.isFetching + && loginsPerCountry.isSuccess + && loginsPerCountry?.data?.map(element => ({ + "Countries": element.country, + "Number of Logins": element.sum + })) + + if (!!loginsPerCountry?.data && !!loginsPerCountryArray) { + $("#table-idp").DataTable().destroy() + setLoginsPerCountryData(loginsPerCountryArray) + } + }, [!loginsPerCountry.isLoading + && !loginsPerCountry.isFetching + && loginsPerCountry.isSuccess]) + + if (loginsPerCountry.isLoading + || loginsPerCountry.isFetching + || loginsPerCountryData.length === 0) { + return null + } + + return ( + + +
              +

              Logins Per Country

              +
              + + +
              + ) } export default IdpMapToDataTable; \ No newline at end of file From 409fc55cb0cdf25ea8005c76d73381a6d8c5bf45 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 30 May 2023 11:02:33 +0300 Subject: [PATCH 171/331] Refactor spMapToDataTable.js (#42) --- .../src/components/Sps/spMapToDataTable.js | 136 +++++++++++------- 1 file changed, 88 insertions(+), 48 deletions(-) diff --git a/javascript/src/components/Sps/spMapToDataTable.js b/javascript/src/components/Sps/spMapToDataTable.js index 74ca8bb..a5b5568 100644 --- a/javascript/src/components/Sps/spMapToDataTable.js +++ b/javascript/src/components/Sps/spMapToDataTable.js @@ -1,59 +1,99 @@ -import { useState, useContext, useEffect } from "react"; +import {useState, useEffect} from "react"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; -import Select from 'react-select'; -import { client } from '../../utils/api'; -import $, { map } from "jquery"; +import $ from "jquery"; import "jquery/dist/jquery.min.js"; import Datatable from "../datatable"; -import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; +import {useQuery, useQueryClient} from "react-query"; +import {loginsPerCountryKey} from "../../utils/queryKeys"; +import {getLoginsPerCountry} from "../../utils/queries"; -const SpMapToDataTable = ({startDate, endDate, tenantId, uniqueLogins, spId}) => { - const [loginsPerCountry, setLoginsPerCountry] = useState(); - var loginsPerCountryArray = []; - useEffect(() => { - client.get("logins_per_country", - { - params: { - 'startDate':startDate, - 'endDate':endDate, - 'tenant_id': tenantId, - 'unique_logins': uniqueLogins, - 'spId': spId - } - }).then(response => { - //var community = {"created":element.created, "name":element.community_info.name} - var minDateFromData = "" - response["data"].forEach(element => { - //var range_date = new Date(element.range_date); - // if (minDateFromData == "") { - // minDateFromData = new Date(element.min_date) - // } - var perPeriod = { "Countries": element.country, "Number of Logins": element.sum} - loginsPerCountryArray.push(perPeriod) - - }); - // setMinDate(minDateFromData) - $("#table-sp").DataTable().destroy() - setLoginsPerCountry(loginsPerCountryArray) - }) - }, [uniqueLogins]) - - return ( - - - -
              -

              Logins Per Country

              -
              - - - -
              - ) +const SpMapToDataTable = ({ + startDate, + endDate, + tenantId, + uniqueLogins, + spId + }) => { + const [loginsPerCountryData, setLoginsPerCountryData] = useState(); + const queryClient = useQueryClient(); + + let params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'spId': spId + } + } + + const loginsPerCountry = useQuery( + [loginsPerCountryKey, params], + getLoginsPerCountry, + { + enabled: false, + refetchOnWindowFocus: false + } + ) + + useEffect(() => { + params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + 'unique_logins': uniqueLogins, + 'spId': spId + } + } + + try { + const response = queryClient.refetchQueries([loginsPerCountryKey, params]) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } + + }, [uniqueLogins]) + + // Construct the data required for the datatable + useEffect(() => { + const loginsPerCountryArray = !loginsPerCountry.isLoading + && !loginsPerCountry.isFetching + && loginsPerCountry.isSuccess + && loginsPerCountry?.data?.map(element => ({ + "Countries": element.country, + "Number of Logins": element.sum + })) + + if (!!loginsPerCountry?.data && !!loginsPerCountryArray) { + $("#table-sp").DataTable().destroy() + setLoginsPerCountryData(loginsPerCountryArray) + } + }, [!loginsPerCountry.isLoading + && !loginsPerCountry.isFetching + && loginsPerCountry.isSuccess]) + + if (loginsPerCountry.isLoading + || loginsPerCountry.isFetching + || loginsPerCountryData.length === 0) { + return null + } + + return ( + + +
              +

              Logins Per Country

              +
              + + +
              + ) } export default SpMapToDataTable; \ No newline at end of file From 68659249ac87015c78e57083c857905760a2ca72 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 30 May 2023 11:03:51 +0300 Subject: [PATCH 172/331] refactor registeredUsersTiles --- .../components/Users/registeredUsersTiles.js | 175 +++++++++++------- javascript/src/utils/queries/index.js | 7 + javascript/src/utils/queryKeys/index.js | 1 + 3 files changed, 111 insertions(+), 72 deletions(-) diff --git a/javascript/src/components/Users/registeredUsersTiles.js b/javascript/src/components/Users/registeredUsersTiles.js index 37fef94..2740ed4 100644 --- a/javascript/src/components/Users/registeredUsersTiles.js +++ b/javascript/src/components/Users/registeredUsersTiles.js @@ -1,86 +1,117 @@ import { useState, useEffect } from "react"; -import { client } from '../../utils/api'; +import { useQuery, useQueryClient } from "react-query"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; +import { registeredUsersCountByKey } from "../../utils/queryKeys"; +import { getRegisteredUsersCountby } from "../../utils/queries"; + + const RegisteredUsersTiles = (parameters) => { - const [tiles, setTiles] = useState({}); - useEffect(() => { - Promise.all([ - client.get("registered_users_countby", - { params: { 'tenant_id': parameters['tenantId'] } }), - client.get("registered_users_countby", - { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'] } }), - client.get("registered_users_countby", - { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'] } }), - client.get("registered_users_countby", - { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'] } }) - ]).then(function (responses) { - // Get a JSON object from each of the responses - return Promise.all(responses.map(function (response) { - return response; - })); - }).then(function (data) { - // You would do something with both sets of data here - var tilesArray = {} - data.forEach(element => { - if (element["config"]["params"]["interval"]) { - var name = element["config"]["params"]["interval"] + "_" + element["config"]["params"]["count_interval"] - tilesArray[[name]] = element["data"][0]["count"] - } - else { - tilesArray["overall"] = element["data"][0]["count"] - } + const [tiles, setTiles] = useState({}); + + const generateQueryKey = (params) => { + return [registeredUsersCountByKey, { params }]; + }; + + const { refetch: getAllRegisteredUsersCount } = useQuery( + generateQueryKey({ tenant_id: parameters['tenantId'] }), + getRegisteredUsersCountby, + { enabled: false, refetchOnWindowFocus: false } + ); + const { refetch: getLastYearRegisteredUsersCount } = useQuery( + generateQueryKey({ interval: 'year', count_interval: '1', tenant_id: parameters['tenantId'] }), + getRegisteredUsersCountby, + { enabled: false, refetchOnWindowFocus: false } + ); + const { refetch: getLastMonthRegisteredUsersCount } = useQuery( + generateQueryKey({ interval: 'days', count_interval: '30', tenant_id: parameters['tenantId'] }), + getRegisteredUsersCountby, + { enabled: false, refetchOnWindowFocus: false } + ); + const { refetch: getLastWeekRegisteredUsersCount } = useQuery( + generateQueryKey({ interval: 'days', count_interval: '7', tenant_id: parameters['tenantId'] }), + getRegisteredUsersCountby, + { enabled: false, refetchOnWindowFocus: false } + ); + + useEffect(() => { + const handleRefetch = async () => { - }) - setTiles(tilesArray) + const results = await Promise.all([ + getAllRegisteredUsersCount() + .then((response) => + ({ response, params: { tenant_id: parameters['tenantId'] } })), + getLastYearRegisteredUsersCount() + .then((response) => + ({ response, params: { interval: 'year', count_interval: '1', tenant_id: parameters['tenantId'] } })), + getLastMonthRegisteredUsersCount() + .then((response) => + ({ response, params: { interval: 'days', count_interval: '30', tenant_id: parameters['tenantId'] } })), + getLastWeekRegisteredUsersCount() + .then((response) => + ({ response, params: { interval: 'days', count_interval: '7', tenant_id: parameters['tenantId'] } })), + ]) - }).catch(function (error) { - // if there's an error, log it - }); + var tilesArray = {} + results.forEach(({ response, params }, index) => { + const { data } = response; + data.forEach(element => { + if (params["interval"]) { + var name = params["interval"] + "_" + params["count_interval"] + tilesArray[[name]] = element["count"] + } + else { + tilesArray["overall"] = element["count"] + } + }) + }); - }, []) + setTiles(tilesArray) + } + handleRefetch(); + }, []) - return ( + return ( - - - -
              -
              -

              {tiles["overall"]}

              -

              Total Registered Users

              -
              -
              - - -
              -
              -

              {tiles["year_1"]}

              -

              Last Year Registered Users

              -
              -
              - - -
              -
              -

              {tiles["days_30"]}

              -

              Last 30 days Registered Users

              -
              -
              - - -
              -
              -

              {tiles["days_7"]}

              -

              Last 7 days Registered Users

              -
              -
              - - -
              - ) + + + +
              +
              +

              {tiles["overall"]}

              +

              Total Registered Users

              +
              +
              + + +
              +
              +

              {tiles["year_1"]}

              +

              Last Year Registered Users

              +
              +
              + + +
              +
              +

              {tiles["days_30"]}

              +

              Last 30 days Registered Users

              +
              +
              + + +
              +
              +

              {tiles["days_7"]}

              +

              Last 7 days Registered Users

              +
              +
              + + +
              + ) } export default RegisteredUsersTiles \ No newline at end of file diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 3319a8d..f7be33e 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -44,4 +44,11 @@ export const getSps = async ({queryKey}) => { const [_, params] = queryKey const response = await apiClient.get("sps", params) return response.data +} + +// Users +export const getRegisteredUsersCountby = async ({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get("registered_users_countby", params) + return response.data } \ No newline at end of file diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index 4045022..d4c1ee4 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -4,5 +4,6 @@ export const loginsPerSpKey = "logins_per_sp" export const loginsPerIdpKey = "logins_per_idp" export const loginsPerCountryKey = "logins_per_country" export const loginsGroupByDayKey = "logins_groupby/day" +export const registeredUsersCountByKey = "registered_users_countby" export const spsKey = "sps" export const idpsKey = "idps" \ No newline at end of file From f830a496e6c1887ae3e526dcc047e78630cdbcb0 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 30 May 2023 12:37:12 +0300 Subject: [PATCH 173/331] Refactor communitites DataTable (#43) --- app/utils/globalMethods.py | 2 +- javascript/src/Pages/Communities/index.js | 6 +- .../Communities/communitiesDataTable.js | 196 +++++++++--------- .../components/Dashboard/loginDataTable.js | 2 +- .../utils/helpers/{methods.js => enums.js} | 6 + javascript/src/utils/queries/index.js | 20 ++ javascript/src/utils/queryKeys/index.js | 5 +- 7 files changed, 128 insertions(+), 109 deletions(-) rename javascript/src/utils/helpers/{methods.js => enums.js} (74%) diff --git a/app/utils/globalMethods.py b/app/utils/globalMethods.py index 15627cd..2149484 100644 --- a/app/utils/globalMethods.py +++ b/app/utils/globalMethods.py @@ -68,7 +68,7 @@ def permissionsCalculation(user_info): } for ent, role in entitlements_config.items(): - if ent in user_entitlements: + if user_entitlements is not None and ent in user_entitlements: # The role might be a csv list. So we need to # explode and act accordingly for item_role in role.split(","): diff --git a/javascript/src/Pages/Communities/index.js b/javascript/src/Pages/Communities/index.js index a8cca7d..f2a27c9 100644 --- a/javascript/src/Pages/Communities/index.js +++ b/javascript/src/Pages/Communities/index.js @@ -43,9 +43,9 @@ const Communities = () => {

              Communities

              - - - + + +
              ) diff --git a/javascript/src/components/Communities/communitiesDataTable.js b/javascript/src/components/Communities/communitiesDataTable.js index 7788acc..56a2965 100644 --- a/javascript/src/components/Communities/communitiesDataTable.js +++ b/javascript/src/components/Communities/communitiesDataTable.js @@ -1,110 +1,102 @@ -import {useState, useContext, useEffect} from "react"; -import {client} from '../../utils/api'; -import {communitiesGroupBy} from "../../utils/queryKeys"; +import {useState, useEffect} from "react"; import "jquery/dist/jquery.min.js"; import $ from "jquery"; import Datatable from "../../components/datatable"; -import dateFormat from 'dateformat'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import DatePicker from "react-datepicker"; import Dropdown from 'react-dropdown'; -import {ToastContainer, toast} from 'react-toastify'; +import {toast} from 'react-toastify'; import {convertDateByGroup} from "../Common/utils"; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; +import {dropdownOptions} from "../../utils/helpers/enums"; +import {useQuery, useQueryClient} from "react-query"; +import {communitiesGroupByKey} from "../../utils/queryKeys"; +import {getCommunitiesGroupBy} from "../../utils/queries"; + +const CommunitiesDataTable = ({tenantId}) => { + const [communitiesPerPeriod, setCommunitiesPerPeriod] = useState([]); + const [minDate, setMinDate] = useState(null); + const [startDate, setStartDate] = useState(null); + const [endDate, setEndDate] = useState(null); + const [groupBy, setGroupBy] = useState("month") + + const queryClient = useQueryClient(); + + let params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId + } + } + + const communitiesGroupBy = useQuery( + [communitiesGroupByKey, {groupBy: groupBy, params: params}], + getCommunitiesGroupBy, + { + enabled: false + } + ) + + useEffect(() => { + params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId + } + } + + try { + const response = queryClient.refetchQueries([communitiesGroupByKey, {groupBy: groupBy, params: params}]) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } -const dropdownOptions = [ + }, [groupBy]) - {value: 'day', label: 'Daily Basis', className: 'myOptionClassName'}, - {value: 'week', label: 'Weekly Basis', className: 'myOptionClassName'}, - {value: 'month', label: 'Monthly Basis'}, - {value: 'year', label: 'Yearly Basis'}, -] -const CommunitiesDataTable = (parameters) => { - const [communities, setCommunities] = useState(); - var communitiesArray = []; - const [minDate, setMinDate] = useState(""); - const [startDate, setStartDate] = useState(); - const [endDate, setEndDate] = useState(); + // Construct the data required for the datatable useEffect(() => { - client.get("communities_groupby/month", - { - params: - { - 'tenant_id': parameters["tenantId"], - } - }).then(response => { - var minDateFromData = "" - response["data"].forEach(element => { - - var range_date = new Date(element.range_date); - if (minDateFromData == "") { - minDateFromData = new Date(element.min_date) - } - var community = { - "Date": dateFormat(range_date, "yyyy-mm"), - "Number of Communities": element.count, - "Names": element.names - } - communitiesArray.push(community) - - }); - - setMinDate(minDateFromData) - setCommunities(communitiesArray) - }) - - }, []) - - const handleChange = event => { - communitiesArray = [] + const communitiesGroupByPerPeriodArray = !communitiesGroupBy.isLoading + && !communitiesGroupBy.isFetching + && communitiesGroupBy.isSuccess + && communitiesGroupBy?.data?.map(element => ({ + "Date": convertDateByGroup(new Date(element?.range_date), groupBy), + "Number of Communities": element?.count, + "Names": element?.names + })) + + if (!!communitiesGroupBy?.data && !!communitiesGroupByPerPeriodArray) { + // We only keep the first date because the backend returns the dataset sorted and we only care about the + // min of the min dates. + setMinDate(!!communitiesGroupBy?.data?.[0]?.min_date ? new Date(communitiesGroupBy?.data?.[0]?.min_date) : null) + $("#table-community").DataTable().destroy() + setCommunitiesPerPeriod(communitiesGroupByPerPeriodArray) + } + }, [!communitiesGroupBy.isLoading + && !communitiesGroupBy.isFetching + && communitiesGroupBy.isSuccess]) + + const handleChange = (event) => { if (!startDate || !endDate) { - toast.error('You have to fill both startDate and endDate.', { - position: "top-center", - autoClose: 5000, - hideProgressBar: false, - closeOnClick: true, - pauseOnHover: true, - draggable: true, - progress: undefined, - theme: "dark", - }); + toast.warning("You have to fill both startDate and endDate") return } - client.get("communities_groupby/" + event.value, - { - params: - { - 'startDate': startDate, - 'endDate': endDate, - 'tenant_id': parameters["tenantId"] - } - }).then(response => { - - response["data"].forEach(element => { - var range_date = new Date(element.range_date); - - var community = { - "Date": convertDateByGroup(range_date, event.value), - "Number of Communities": element.count, - "Names": element.names - } - communitiesArray.push(community) - - }); - if (communitiesArray.length == 0) { - communitiesArray.push({"Data": "No data available."}) - - } - // This is essential: We must destroy the datatable in order to be refreshed with the new data - $("#table-community").DataTable().destroy() - setCommunities(communitiesArray) - }) + setGroupBy(event.value) }; + if (communitiesGroupBy.isLoading + || communitiesGroupBy.isFetching + || minDate == undefined + || communitiesPerPeriod.length === 0) { + return null + } + return
              @@ -113,24 +105,22 @@ const CommunitiesDataTable = (parameters) => { - From: setStartDate(date)}> - To: setEndDate(date)}> - - + From: setStartDate(date)}/> + To: setEndDate(date)}/> + - + diff --git a/javascript/src/components/Dashboard/loginDataTable.js b/javascript/src/components/Dashboard/loginDataTable.js index b3a7aff..1dc93a7 100644 --- a/javascript/src/components/Dashboard/loginDataTable.js +++ b/javascript/src/components/Dashboard/loginDataTable.js @@ -10,7 +10,7 @@ import Dropdown from 'react-dropdown'; import 'react-toastify/dist/ReactToastify.css'; import 'react-dropdown/style.css'; import "react-datepicker/dist/react-datepicker.css"; -import {dropdownOptions} from "../../../src/utils/helpers/methods" +import {dropdownOptions} from "../../../src/utils/helpers/enums" import {useQuery, useQueryClient} from "react-query"; import {loginsPerCountryKey} from "../../utils/queryKeys"; import {getLoginsPerCountry} from "../../utils/queries"; diff --git a/javascript/src/utils/helpers/methods.js b/javascript/src/utils/helpers/enums.js similarity index 74% rename from javascript/src/utils/helpers/methods.js rename to javascript/src/utils/helpers/enums.js index 4f61481..2881705 100644 --- a/javascript/src/utils/helpers/methods.js +++ b/javascript/src/utils/helpers/enums.js @@ -4,3 +4,9 @@ export const dropdownOptions = [ {value: 'month', label: 'Monthly Basis'}, {value: 'year', label: 'Yearly Basis'}, ] + +export const StatusEnumeration = { + 'A': 'Active', + 'GP': 'Grace Period', + 'O': 'Other' +} \ No newline at end of file diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index f7be33e..06a43db 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -51,4 +51,24 @@ export const getRegisteredUsersCountby = async ({queryKey}) => { const [_, params] = queryKey const response = await apiClient.get("registered_users_countby", params) return response.data +} +// Communities +export const getCommunities = async ({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get("communities", params) + return response.data +} + +export const getCountryStatsByVo = async ({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get(`country_stats_by_vo/${params.countryId}`, params) + return response.data +} + +export const getCommunitiesGroupBy = async ({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get( + `communities_groupby${(params.groupBy != undefined && params.groupBy != "") ? "/" + params.groupBy : ""}` + , params.params) + return response.data } \ No newline at end of file diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index d4c1ee4..404d1de 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -6,4 +6,7 @@ export const loginsPerCountryKey = "logins_per_country" export const loginsGroupByDayKey = "logins_groupby/day" export const registeredUsersCountByKey = "registered_users_countby" export const spsKey = "sps" -export const idpsKey = "idps" \ No newline at end of file +export const idpsKey = "idps" +export const communitiesKey = "communities" +export const countryStatsByVoKey = "country_stats_by_vo" +export const communitiesGroupByKey = "communities_groupby" \ No newline at end of file From 8899a2e1f6acdeab0669b4aa47ff31966e508804 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Tue, 30 May 2023 12:40:05 +0300 Subject: [PATCH 174/331] refactor loginTiles.js --- .../src/components/Dashboard/loginTiles.js | 264 ++++++++++++------ javascript/src/utils/queries/index.js | 6 + javascript/src/utils/queryKeys/index.js | 1 + 3 files changed, 183 insertions(+), 88 deletions(-) diff --git a/javascript/src/components/Dashboard/loginTiles.js b/javascript/src/components/Dashboard/loginTiles.js index 71067a1..696de54 100644 --- a/javascript/src/components/Dashboard/loginTiles.js +++ b/javascript/src/components/Dashboard/loginTiles.js @@ -1,105 +1,193 @@ import { useState, useContext, useEffect } from "react"; -import { client } from '../../utils/api'; -import Container from 'react-bootstrap/Container'; -import Select from 'react-select'; +import { useQuery } from "react-query"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import { convertDateByGroup, getWeekNumber } from "../Common/utils"; import 'bootstrap/dist/css/bootstrap.min.css'; +import { loginsCountByKey } from "../../utils/queryKeys"; +import { getLoginsCountBy } from "../../utils/queries"; const LoginTiles = (parameters) => { - const [tiles, setTiles] = useState({}); - useEffect(() => { - Promise.all([ - client.get("logins_countby", - { params: { 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], - 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, - 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null } - }), - client.get("logins_countby", - { params: { 'interval': 'year', 'count_interval': '1', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], - 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, - 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null } - }), - client.get("logins_countby", - { params: { 'interval': 'days', 'count_interval': '30', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], - 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, - 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null } - }), - client.get("logins_countby", - { params: { 'interval': 'days', 'count_interval': '7', 'tenant_id': parameters['tenantId'], 'unique_logins': parameters['uniqueLogins'], - 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, - 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null } - }) - ]).then(function (responses) { - // Get a JSON object from each of the responses - return Promise.all(responses.map(function (response) { - return response; - })); - }).then(function (data) { - // Log the data to the console - // You would do something with both sets of data here - var tilesArray = {} - data.forEach(element => { + const [tiles, setTiles] = useState({}); - if (element["config"]["params"]["interval"]) { - var name = element["config"]["params"]["interval"] + "_" + element["config"]["params"]["count_interval"] - tilesArray[[name]] = (element["data"][0]["count"] != null) ? element["data"][0]["count"] : 0 - } - else { - tilesArray["overall"] = (element["data"][0]["count"] != null) ? element["data"][0]["count"] : 0 - } + const generateQueryKey = (params) => { + return [loginsCountByKey, { params }]; + }; - }) - setTiles(tilesArray) + const { refetch: getAllLoginsCount } = useQuery( + generateQueryKey({ + 'tenant_id': parameters['tenantId'], + 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null + }), + getLoginsCountBy, + { enabled: false, refetchOnWindowFocus: false } + ); - }).catch(function (error) { - // if there's an error, log it - console.log(error); - }); + const { refetch: getLastYearLoginsCount } = useQuery( + generateQueryKey({ + 'interval': 'year', + 'count_interval': '1', + 'tenant_id': parameters['tenantId'], + 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null + }), + getLoginsCountBy, + { enabled: false, refetchOnWindowFocus: false } + ); + const { refetch: getLastMonthLoginsCount } = useQuery( + generateQueryKey({ + 'interval': 'days', + 'count_interval': '30', + 'tenant_id': parameters['tenantId'], + 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null + }), + getLoginsCountBy, + { enabled: false, refetchOnWindowFocus: false } + ); - }, [parameters["uniqueLogins"]]) + const { refetch: getLastWeekLoginsCount } = useQuery( + generateQueryKey({ + 'interval': 'days', + 'count_interval': '7', + 'tenant_id': parameters['tenantId'], + 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null + }), + getLoginsCountBy, + { enabled: false, refetchOnWindowFocus: false } + ); - return ( + useEffect(() => { + const handleRefetch = async () => { - - - -
              -
              -

              {tiles["overall"]}

              -

              Total Logins

              -
              -
              - - -
              -
              -

              {tiles["year_1"]}

              -

              Last Year Logins

              -
              -
              - - -
              -
              -

              {tiles["days_30"]}

              -

              Last 30 days Logins

              -
              -
              - - -
              -
              -

              {tiles["days_7"]}

              -

              Last 7 days Logins

              -
              -
              - - -
              - ) + const results = await Promise.all([ + getAllLoginsCount() + .then((response) => + ({ + response, params: + { + 'tenant_id': parameters['tenantId'], + 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null + } + }) + ), + getLastYearLoginsCount() + .then((response) => + ({ + response, params: + { + 'interval': 'year', + 'count_interval': '1', + 'tenant_id': parameters['tenantId'], + 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null + } + }) + ), + getLastMonthLoginsCount() + .then((response) => + ({ + response, params: + { + 'interval': 'days', + 'count_interval': '30', + 'tenant_id': parameters['tenantId'], + 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null + } + }) + ), + getLastWeekLoginsCount() + .then((response) => + ({ + response, params: + { + 'interval': 'days', + 'count_interval': '7', + 'tenant_id': parameters['tenantId'], + 'unique_logins': parameters['uniqueLogins'], + 'idpId': parameters['idpId'] !== undefined ? parameters['idpId'] : null, + 'spId': parameters['spId'] !== undefined ? parameters['spId'] : null + } + }) + ), + ]) + + // Log the data to the console + // You would do something with both sets of data here + var tilesArray = {} + results.forEach(({ response, params }, index) => { + const { data } = response; + + data.forEach(element => { + console.log(data) + if (params["interval"]) { + var name = params["interval"] + "_" + params["count_interval"] + tilesArray[[name]] = (element["count"] != null) ? element["count"] : 0 + } + else { + tilesArray["overall"] = (element["count"] != null) ? element["count"] : 0 + } + + }) + }); + setTiles(tilesArray) + + } + handleRefetch() + + }, [parameters["uniqueLogins"]]) + + return ( + + + + +
              +
              +

              {tiles["overall"]}

              +

              Total Logins

              +
              +
              + + +
              +
              +

              {tiles["year_1"]}

              +

              Last Year Logins

              +
              +
              + + +
              +
              +

              {tiles["days_30"]}

              +

              Last 30 days Logins

              +
              +
              + + +
              +
              +

              {tiles["days_7"]}

              +

              Last 7 days Logins

              +
              +
              + + +
              + ) } export default LoginTiles \ No newline at end of file diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 06a43db..8c11651 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -33,6 +33,12 @@ export const getLoginsGroupByDay = async ({queryKey}) => { return response.data } +export const getLoginsCountBy = async ({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get("logins_countby", params) + return response.data +} + // Get Idps, Sps export const getIdps = async ({queryKey}) => { const [_, params] = queryKey diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index 404d1de..f262230 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -2,6 +2,7 @@ export const tenantKey = "tenant" export const loginsPerSpKey = "logins_per_sp" export const loginsPerIdpKey = "logins_per_idp" +export const loginsCountByKey = "logins_countby" export const loginsPerCountryKey = "logins_per_country" export const loginsGroupByDayKey = "logins_groupby/day" export const registeredUsersCountByKey = "registered_users_countby" From b76889926f79f712b8afbff7367edba9db50ddee Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 31 May 2023 09:19:39 +0300 Subject: [PATCH 175/331] refactor registeredUsersMap.js --- .../components/Users/registeredUsersMap.js | 103 ++++++++---------- javascript/src/utils/queries/index.js | 7 ++ javascript/src/utils/queryKeys/index.js | 1 + 3 files changed, 55 insertions(+), 56 deletions(-) diff --git a/javascript/src/components/Users/registeredUsersMap.js b/javascript/src/components/Users/registeredUsersMap.js index 90cb8cd..0bca6fd 100644 --- a/javascript/src/components/Users/registeredUsersMap.js +++ b/javascript/src/components/Users/registeredUsersMap.js @@ -1,73 +1,64 @@ -import { useEffect } from "react"; -import { calculateLegends, setMapConfiguration, setLegend } from "../Common/utils"; -import { client } from '../../utils/api'; -import $ from "jquery"; +import { useCallback, useRef, useEffect } from "react"; +import { createMap } from "../Common/utils"; +import { useQuery, useQueryClient } from "react-query"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import 'jquery-mapael'; import 'jquery-mapael/js/maps/world_countries_mercator.js'; +import { getRegisteredUsersByCountry } from "../../utils/queries"; +import { registeredUsersByCountryKey } from "../../utils/queryKeys"; const RegisteredUsersMap = ({ startDate, endDate, tenantId }) => { + const areaLegendRef = useRef(null) + const queryClient = useQueryClient(); + let params = { + params: { + 'startDate': startDate, + 'endDate': endDate, + 'tenant_id': tenantId, + } + } - useEffect(() => { - client.get("registered_users_country", - { - params: { - 'startDate': startDate, - 'endDate': endDate, - 'tenant_id': tenantId - } - }).then(response => { - createMap("usersMap", response["data"]) - }) - }, [startDate, endDate, tenantId]) - - const createMap = (id, mapData, tooltipLabel = "Users", legendLabel = 'Users per country') => { - var areas = {}; - var maxSum = 0; - mapData.forEach(function (mapRow) { - - var contentTooltip = "" + mapRow.country + "
              " + tooltipLabel + " : " + mapRow.sum - - //contentTooltip += mapRow.additional_text !== undefined ? '
              ' + mapRow.additional_text : ''; - areas[mapRow.countrycode] = { - value: mapRow.sum, - tooltip: { content: contentTooltip } - } - if (mapRow.sum > maxSum) { - maxSum = mapRow.sum; - } + const registeredUsersByCountry = useQuery( + [registeredUsersByCountryKey, params], + getRegisteredUsersByCountry, + { + enabled: false + } + ) - }) - // Calculate Legends - var legends = calculateLegends(maxSum) - $(".areaLegend").show() - $("#" + id).mapael({ - map: setMapConfiguration(), - legend: setLegend(legendLabel, legends), - areas: areas - }) + useEffect(() => { + try { + var response = queryClient.refetchQueries([registeredUsersByCountryKey, params]) + } catch (error) { + console.log(error) + } + }, [startDate, endDate, tenantId]) + const registeredUsersMapDrawRef = useCallback(node => { + if (registeredUsersByCountry?.data !== undefined && node !== undefined) { + createMap(node, areaLegendRef, registeredUsersByCountry?.data, "Users", "Users per country") } + }, [!registeredUsersByCountry.isLoading && registeredUsersByCountry.isSuccess && registeredUsersByCountry?.data]) - return ( - - -
              -

              Users Per Country

              -
              - + return ( + + +
              +

              Users Per Country

              +
              + - -
              -
              -
              -
              - + +
              +
              +
              +
              + -
              - ) +
              + ) } export default RegisteredUsersMap; \ No newline at end of file diff --git a/javascript/src/utils/queries/index.js b/javascript/src/utils/queries/index.js index 8c11651..03f8f35 100644 --- a/javascript/src/utils/queries/index.js +++ b/javascript/src/utils/queries/index.js @@ -58,6 +58,13 @@ export const getRegisteredUsersCountby = async ({queryKey}) => { const response = await apiClient.get("registered_users_countby", params) return response.data } + +export const getRegisteredUsersByCountry = async ({queryKey}) => { + const [_, params] = queryKey + const response = await apiClient.get("registered_users_country", params) + return response.data +} + // Communities export const getCommunities = async ({queryKey}) => { const [_, params] = queryKey diff --git a/javascript/src/utils/queryKeys/index.js b/javascript/src/utils/queryKeys/index.js index f262230..f17e7a8 100644 --- a/javascript/src/utils/queryKeys/index.js +++ b/javascript/src/utils/queryKeys/index.js @@ -6,6 +6,7 @@ export const loginsCountByKey = "logins_countby" export const loginsPerCountryKey = "logins_per_country" export const loginsGroupByDayKey = "logins_groupby/day" export const registeredUsersCountByKey = "registered_users_countby" +export const registeredUsersByCountryKey = "registered_users_country" export const spsKey = "sps" export const idpsKey = "idps" export const communitiesKey = "communities" From 6ca6f36e9c3131e18cc1d026054613fe5acab743 Mon Sep 17 00:00:00 2001 From: Nick Mastoris Date: Wed, 31 May 2023 09:43:46 +0300 Subject: [PATCH 176/331] refactor listCommunities.js --- .../components/Communities/listCommunities.js | 30 +++++++++---------- .../components/Users/registeredUsersTiles.js | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/javascript/src/components/Communities/listCommunities.js b/javascript/src/components/Communities/listCommunities.js index 747d6c7..32c8052 100644 --- a/javascript/src/components/Communities/listCommunities.js +++ b/javascript/src/components/Communities/listCommunities.js @@ -1,22 +1,22 @@ -import { useState, useContext, useEffect, Component } from "react"; +import { useEffect } from "react"; import ReactTooltip from "react-tooltip"; -const ListCommunities = ({communitiesList}) => { - useEffect(() => { - ReactTooltip.rebuild(); - },[communitiesList]) - return
                +const ListCommunities = ({ communitiesList }) => { + useEffect(() => { + ReactTooltip.rebuild(); + }, [communitiesList]) - { + return
                  + { + communitiesList.map((cou, index) => ( +
                • + {cou["name"]} +
                • + )) + } + +
                - communitiesList.map((cou, index) => ( -
              • {cou["name"]}
              • - - )) - } - -
              - } export default ListCommunities diff --git a/javascript/src/components/Users/registeredUsersTiles.js b/javascript/src/components/Users/registeredUsersTiles.js index 2740ed4..1a5d8cb 100644 --- a/javascript/src/components/Users/registeredUsersTiles.js +++ b/javascript/src/components/Users/registeredUsersTiles.js @@ -1,5 +1,5 @@ import { useState, useEffect } from "react"; -import { useQuery, useQueryClient } from "react-query"; +import { useQuery } from "react-query"; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import { registeredUsersCountByKey } from "../../utils/queryKeys"; From 4e666e4859a8f038a912e956c5cf305968aeec2e Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Wed, 31 May 2023 14:22:16 +0300 Subject: [PATCH 177/331] Refactoring communities chart (#44) * Move enums to separate file * complete refactoring * Remove empty spaces * Change useEffect call ordering --- javascript/src/components/Common/utils.js | 37 +++ .../Communities/communitiesChart.js | 286 ++++++++---------- .../Communities/communitiesDataTable.js | 3 +- .../components/Communities/listCommunities.js | 55 +++- javascript/src/utils/helpers/enums.js | 30 ++ 5 files changed, 235 insertions(+), 176 deletions(-) diff --git a/javascript/src/components/Common/utils.js b/javascript/src/components/Common/utils.js index c4d1dec..4bc34ba 100644 --- a/javascript/src/components/Common/utils.js +++ b/javascript/src/components/Common/utils.js @@ -1,4 +1,5 @@ import $ from "jquery"; +import {options} from "../../utils/helpers/enums"; export function convertDateByGroup(jsDate, groupBy) { var month = (jsDate.getMonth() + 1).toString() @@ -182,4 +183,40 @@ export const createMap = (node, legend: setLegend(legendLabel, legends), areas: areas }) +} + +export const axisChartOptions = (title, hAxisFormat, hAxisTicks) => { + return ( + { + title: title, + backgroundColor: {fill: 'transparent'}, + vAxis: { + format: '0' + }, + hAxis: { + format: hAxisFormat, + maxTextLines: 2, + textStyle: {fontSize: 15}, + ticks: hAxisTicks, + }, + tooltip: {isHtml: true}, + width: '100%', + height: '350', + bar: {groupWidth: "92%"}, + legend: {position: "none"}, + } + ) +} + +export function sortByNamePropertyCallback(a, b) { + const nameA = a.name.toUpperCase(); // ignore upper and lowercase + const nameB = b.name.toUpperCase(); // ignore upper and lowercase + if (nameA < nameB) { + return -1; + } + if (nameA > nameB) { + return 1; + } + // names must be equal + return 0; } \ No newline at end of file diff --git a/javascript/src/components/Communities/communitiesChart.js b/javascript/src/components/Communities/communitiesChart.js index e9c5e88..6ea43fc 100644 --- a/javascript/src/components/Communities/communitiesChart.js +++ b/javascript/src/components/Communities/communitiesChart.js @@ -1,183 +1,145 @@ import {useState, useEffect} from "react"; import {Chart} from "react-google-charts"; -import {client} from '../../utils/api'; -import {convertDateByGroup, getWeekNumber} from "../Common/utils"; +import { + convertDateByGroup, + getWeekNumber, + axisChartOptions +} from "../Common/utils"; import Select from 'react-select'; import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import ListCommunities from "./listCommunities"; import 'bootstrap/dist/css/bootstrap.min.css'; +import { + options, + options_group_by +} from "../../utils/helpers/enums"; +import {useQuery, useQueryClient} from "react-query"; +import {communitiesGroupByKey} from "../../utils/queryKeys"; +import {getCommunitiesGroupBy} from "../../utils/queries"; -export const options = { - year: { - title: "Number of Communities created per year", - hAxis: { - format: 'Y', - }, - count_interval: 12 - }, - month: { - title: "Number of Communities created per month", - hAxis: { - format: 'YYYY-MM', - }, - count_interval: 24 - }, - week: { - title: "Number of Communities created per week", - hAxis: { - format: '', - }, - count_interval: 24 - } -}; - -const options_group_by = [ - {value: 'year', label: 'yearly'}, - {value: 'month', label: 'monthly'}, - {value: 'week', label: 'weekly'}, -]; - -const CommunitiesChart = (parameters) => { +const CommunitiesChart = ({tenantId}) => { const [selected, setSelected] = useState(options_group_by[0].value); const [communities, setCommunities] = useState(); - const [communitiesList, setcommunitiesList] = useState([]); - var communitiesArray = [["Date", "Communities"]]; const [global_options, setGlobalOptions] = useState(); + const queryClient = useQueryClient(); + + + let params = { + params: { + 'interval': selected, + 'count_interval': options[selected]["count_interval"], + 'tenant_id': tenantId, + } + } + + const communitiesGroupBy = useQuery( + [communitiesGroupByKey, {groupBy: selected, params: params}], + getCommunitiesGroupBy, + { + enabled: false + } + ) useEffect(() => { - var communitiesListArray = []; - var hticksArray = []; - var fValues = [['Date', 'Count', {'type': 'string', 'role': 'tooltip', 'p': {'html': true}}]] - // Get data for the last 4 years - client.get("communities_groupby/" + selected, - { - params: - { - 'interval': selected, - 'count_interval': options[selected]["count_interval"], - 'tenant_id': parameters["tenantId"], - } - }).then(response => { - response["data"].forEach(element => { - //var community = {"created":element.created, "name":element.community_info.name} - var range_date = new Date(element.range_date); - var community = [range_date, element.count] - communitiesArray.push(community) - - // Construct the list with COUs - var createdDate = element.created_date.split(", ") - var description = element.description.split("|| ") - element.names.split("|| ").forEach(function (name, index) { - communitiesListArray.push({ - name: name, - created: createdDate[index], - description: description[index] + '
              Created Date: ' + createdDate[index] - }) - }) + params = { + params: { + 'interval': selected, + 'count_interval': options[selected]["count_interval"], + 'tenant_id': tenantId, + } + } + + try { + const response = queryClient.refetchQueries([communitiesGroupByKey, {groupBy: selected, params: params}]) + } catch (error) { + // todo: Here we can handle any authentication or authorization errors + console.log(error) + } + + }, [selected, tenantId]) - if (selected === "week") { - hticksArray.push({v: range_date, f: getWeekNumber(range_date)}) - } else { - hticksArray.push({v: range_date, f: range_date}) - } - - // Construct element & tooltip - var temp = []; - temp.push(range_date); - temp.push(parseInt(element['count'])); - temp.push('
              ' - + convertDateByGroup(range_date, selected) - + '
              Communities' - + ": " + parseInt(element['count']) + '
              '); - fValues.push(temp); - }); - - // sort by value - communitiesListArray = communitiesListArray.sort(function (a, b) { - var nameA = a.name.toUpperCase(); // ignore upper and lowercase - var nameB = b.name.toUpperCase(); // ignore upper and lowercase - if (nameA < nameB) { - return -1; - } - if (nameA > nameB) { - return 1; - } - // names must be equal - return 0; - }); - setcommunitiesList(communitiesListArray) - setCommunities(fValues) - - - setGlobalOptions({ - title: options[selected]["title"], - backgroundColor: {fill: 'transparent'}, - vAxis: { - //title: vAxisTitle[tab], - format: '0' - }, - hAxis: { - format: options[selected]["hAxis"]["format"], - maxTextLines: 2, - //title: registeredUsersBy[type], // globar variable found at index.ctp - textStyle: {fontSize: 15}, - ticks: hticksArray, - //showTextEvery: 5 - }, - tooltip: {isHtml: true}, - width: '100%', - height: '350', - bar: {groupWidth: "92%"}, - legend: {position: "none"}, - }) - - }) - - }, [selected, parameters]) - - - const handleChange = event => { - setSelected(event.value); - }; - - - return - -
              -

              Number of Communities created -

              -
              - - - - - - - - - - Select Period: - - - - - - - - - - - - - - -
              + // Construct the data required for the datatable + useEffect(() => { + if (!communitiesGroupBy.isLoading + && !communitiesGroupBy.isFetching + && communitiesGroupBy.isSuccess + && !!communitiesGroupBy.data) { + + const hticksArray = communitiesGroupBy?.data?.map(element => ({ + v: new Date(element?.range_date), + f: selected === "week" ? getWeekNumber(new Date(element?.range_date)) : new Date(element?.range_date) + }) + ) + + let fValues = [ + ['Date', + 'Count', + { + 'type': 'string', + 'role': 'tooltip', + 'p': {'html': true} + } + ] + ] + + const charData = communitiesGroupBy?.data?.map(element => ([ + new Date(element?.range_date), + parseInt(element['count']), + `
              ${convertDateByGroup(new Date(element?.range_date), selected)}
              Communities: ${parseInt(element['count'])}
              ` + ]) + ) + + + setCommunities(fValues.concat(charData)) + setGlobalOptions(axisChartOptions(options[selected]["title"], options[selected]["hAxis"]["format"], + hticksArray)) + } + }, [!communitiesGroupBy.isLoading + && !communitiesGroupBy.isFetching + && communitiesGroupBy.isSuccess]) + + if (communitiesGroupBy.isLoading + || communitiesGroupBy.isFetching + || communities?.data?.length === 0) { + return null + } + return ( + + +
              +

              Number of Communities created

              +
              + + + + + + + + Select Period: + + - {selectedCommunity["name"] && {selectedCommunity["name"]} - {selectedCommunity["description"]} - - + - - - - - + return +
              +

              Number of Registered Users

              +
              + Select Period: +